openhands_z360
Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
✓Academic publication links
Links to: arxiv.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.5%) to scientific vocabulary
Repository
Basic Info
- Host: GitHub
- Owner: Musafarz360
- License: mit
- Language: Python
- Default Branch: main
- Size: 170 MB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 7
- Releases: 0
Metadata Files
README.md
OpenHands: Code Less, Make More
Welcome to OpenHands (formerly OpenDevin), a platform for software development agents powered by AI.
OpenHands agents can do anything a human developer can: modify code, run commands, browse the web, call APIs, and yes—even copy code snippets from StackOverflow.
Learn more at docs.all-hands.dev, or sign up for OpenHands Cloud to get started.
[!IMPORTANT] Using OpenHands for work? We'd love to chat! Fill out this short form to join our Design Partner program, where you'll get early access to commercial features and the opportunity to provide input on our product roadmap.

☁️ OpenHands Cloud
The easiest way to get started with OpenHands is on OpenHands Cloud, which comes with $50 in free credits for new users.
💻 Running OpenHands Locally
OpenHands can also run on your local system using Docker. See the Running OpenHands guide for system requirements and more information.
[!WARNING] On a public network? See our Hardened Docker Installation Guide to secure your deployment by restricting network binding and implementing additional security measures.
```bash docker pull docker.all-hands.dev/all-hands-ai/runtime:0.42-nikolaik
docker run -it --rm --pull=always \ -e SANDBOXRUNTIMECONTAINERIMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.42-nikolaik \ -e LOGALL_EVENTS=true \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ~/.openhands-state:/.openhands-state \ -p 3000:3000 \ --add-host host.docker.internal:host-gateway \ --name openhands-app \ docker.all-hands.dev/all-hands-ai/openhands:0.42 ```
You'll find OpenHands running at http://localhost:3000!
When you open the application, you'll be asked to choose an LLM provider and add an API key.
Anthropic's Claude Sonnet 4 (anthropic/claude-sonnet-4-20250514)
works best, but you have many options.
💡 Other ways to run OpenHands
[!CAUTION] OpenHands is meant to be run by a single user on their local workstation. It is not appropriate for multi-tenant deployments where multiple users share the same instance. There is no built-in authentication, isolation, or scalability.
If you're interested in running OpenHands in a multi-tenant environment, please get in touch with us for advanced deployment options.
You can also connect OpenHands to your local filesystem, run OpenHands in a scriptable headless mode, interact with it via a friendly CLI, or run it on tagged issues with a github action.
🌐 Running on a Remote Server
OpenHands can serve its web UI and the embedded VS Code editor from the same domain. When deploying behind a reverse proxy:
- Pick a fixed port for VS Code (e.g.
41234) and setSANDBOX_VSCODE_PORT=41234when starting the container. - Expose the same port with
-p 41234:41234. - Add
vscode_port = 41234under[sandbox]in yourconfig.toml. - Proxy
/vscode/tohttp://localhost:41234/in your web server configuration. See the Troubleshooting Guide for an example Nginx block. A minimal Nginx location block looks like:
nginx
location /vscode/ {
proxy_pass http://localhost:41234/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
5. Mount your project directory with -e SANDBOX_VOLUMES=/path/to/projects:/workspace:rw so the editor can access your code.
This configuration avoids cross-origin cookie errors so the editor loads correctly under /vscode/.
See Deploying on a Remote Server for a full example.
Visit Running OpenHands for more information and setup instructions.
If you want to modify the OpenHands source code, check out Development.md.
Having issues? The Troubleshooting Guide can help.
📖 Documentation
To learn more about the project, and for tips on using OpenHands, check out our documentation.
There you'll find resources on how to use different LLM providers, troubleshooting resources, and advanced configuration options.
🤝 How to Join the Community
OpenHands is a community-driven project, and we welcome contributions from everyone. We do most of our communication through Slack, so this is the best place to start, but we also are happy to have you contact us on Discord or Github:
- Join our Slack workspace - Here we talk about research, architecture, and future development.
- Join our Discord server - This is a community-run server for general discussion, questions, and feedback.
- Read or post Github Issues - Check out the issues we're working on, or add your own ideas.
See more about the community in COMMUNITY.md or find details on contributing in CONTRIBUTING.md.
📈 Progress
See the monthly OpenHands roadmap here (updated at the maintainer's meeting at the end of each month).
📜 License
Distributed under the MIT License. See LICENSE for more information.
🙏 Acknowledgements
OpenHands is built by a large number of contributors, and every contribution is greatly appreciated! We also build upon other open source projects, and we are deeply thankful for their work.
For a list of open source projects and licenses used in OpenHands, please see our CREDITS.md file.
📚 Cite
@misc{openhands,
title={{OpenHands: An Open Platform for AI Software Developers as Generalist Agents}},
author={Xingyao Wang and Boxuan Li and Yufan Song and Frank F. Xu and Xiangru Tang and Mingchen Zhuge and Jiayi Pan and Yueqi Song and Bowen Li and Jaskirat Singh and Hoang H. Tran and Fuqiang Li and Ren Ma and Mingzhang Zheng and Bill Qian and Yanjun Shao and Niklas Muennighoff and Yizhe Zhang and Binyuan Hui and Junyang Lin and Robert Brennan and Hao Peng and Heng Ji and Graham Neubig},
year={2024},
eprint={2407.16741},
archivePrefix={arXiv},
primaryClass={cs.SE},
url={https://arxiv.org/abs/2407.16741},
}
Owner
- Login: Musafarz360
- Kind: user
- Repositories: 1
- Profile: https://github.com/Musafarz360
Citation (CITATION.cff)
cff-version: 1.2.0
message: "If you use this software, please cite it using the following metadata."
title: "OpenHands: An Open Platform for AI Software Developers as Generalist Agents"
authors:
- family-names: Wang
given-names: Xingyao
- family-names: Li
given-names: Boxuan
- family-names: Song
given-names: Yufan
- family-names: Xu
given-names: Frank F.
- family-names: Tang
given-names: Xiangru
- family-names: Zhuge
given-names: Mingchen
- family-names: Pan
given-names: Jiayi
- family-names: Song
given-names: Yueqi
- family-names: Li
given-names: Bowen
- family-names: Singh
given-names: Jaskirat
- family-names: Tran
given-names: Hoang H.
- family-names: Li
given-names: Fuqiang
- family-names: Ma
given-names: Ren
- family-names: Zheng
given-names: Mingzhang
- family-names: Qian
given-names: Bill
- family-names: Shao
given-names: Yanjun
- family-names: Muennighoff
given-names: Niklas
- family-names: Zhang
given-names: Yizhe
- family-names: Hui
given-names: Binyuan
- family-names: Lin
given-names: Junyang
- family-names: Brennan
given-names: Robert
- family-names: Peng
given-names: Hao
- family-names: Ji
given-names: Heng
- family-names: Neubig
given-names: Graham
year: 2024
doi: "10.48550/arXiv.2407.16741"
url: "https://arxiv.org/abs/2407.16741"
GitHub Events
Total
- Delete event: 15
- Issue comment event: 26
- Push event: 4
- Pull request event: 35
- Create event: 22
Last Year
- Delete event: 15
- Issue comment event: 26
- Push event: 4
- Pull request event: 35
- Create event: 22
Dependencies
- Mattraks/delete-workflow-runs v2 composite
- actions/checkout v4 composite
- useblacksmith/setup-node v5 composite
- actions/checkout v4 composite
- actions/download-artifact v4 composite
- actions/upload-artifact v4 composite
- docker/login-action v3 composite
- docker/setup-buildx-action v3 composite
- docker/setup-qemu-action v3.6.0 composite
- useblacksmith/build-push-action v1 composite
- useblacksmith/cache v5 composite
- useblacksmith/setup-python v6 composite
- KeisukeYamashita/create-comment v1 composite
- actions/checkout v4 composite
- actions/upload-artifact v4 composite
- useblacksmith/setup-node v5 composite
- useblacksmith/setup-python v6 composite
- actions/checkout v4 composite
- useblacksmith/setup-node v5 composite
- useblacksmith/setup-python v6 composite
- actions/checkout v4 composite
- useblacksmith/setup-node v5 composite
- useblacksmith/setup-python v6 composite
- actions/cache v4 composite
- actions/checkout v4 composite
- actions/github-script v7 composite
- actions/setup-python v5 composite
- actions/upload-artifact v4 composite
- actions/checkout v4 composite
- actions/setup-python v5 composite
- docker/setup-buildx-action v3 composite
- useblacksmith/setup-node v5 composite
- useblacksmith/setup-python v6 composite
- actions/checkout v4 composite
- snok/install-poetry v1.4.1 composite
- useblacksmith/setup-python v6 composite
- KeisukeYamashita/create-comment v1 composite
- actions/checkout v4 composite
- actions/stale v9 composite
- base latest build
- node 22.16.0-bookworm-slim build
- python 3.12.10-slim build
- dind latest build
- openhands latest build
- ubuntu 22.04 build
- ubuntu 22.04 build
- openhands latest
- python 3.12-bookworm build
- python 3.12-bookworm build
- python 3.12-bookworm build
- python 3.11-bookworm build
- python 3.12-bookworm build
- 1214 dependencies
- @babel/parser ^7.27.1 development
- @babel/traverse ^7.27.1 development
- @babel/types ^7.27.0 development
- @mswjs/socket.io-binding ^0.1.1 development
- @playwright/test ^1.52.0 development
- @react-router/dev ^7.6.1 development
- @tailwindcss/typography ^0.5.16 development
- @tanstack/eslint-plugin-query ^5.78.0 development
- @testing-library/dom ^10.4.0 development
- @testing-library/jest-dom ^6.6.1 development
- @testing-library/react ^16.3.0 development
- @testing-library/user-event ^14.6.1 development
- @types/node ^22.15.21 development
- @types/react ^19.1.5 development
- @types/react-dom ^19.1.5 development
- @types/react-highlight ^0.12.8 development
- @types/react-syntax-highlighter ^15.5.13 development
- @types/ws ^8.18.1 development
- @typescript-eslint/eslint-plugin ^7.18.0 development
- @typescript-eslint/parser ^7.18.0 development
- @vitest/coverage-v8 ^3.1.4 development
- autoprefixer ^10.4.21 development
- cross-env ^7.0.3 development
- eslint ^8.57.0 development
- eslint-config-airbnb ^19.0.4 development
- eslint-config-airbnb-typescript ^18.0.0 development
- eslint-config-prettier ^10.1.5 development
- eslint-plugin-import ^2.29.1 development
- eslint-plugin-jsx-a11y ^6.10.2 development
- eslint-plugin-prettier ^5.4.1 development
- eslint-plugin-react ^7.37.5 development
- eslint-plugin-react-hooks ^4.6.2 development
- eslint-plugin-unused-imports ^4.1.4 development
- husky ^9.1.7 development
- jsdom ^26.1.0 development
- lint-staged ^16.0.0 development
- msw ^2.6.6 development
- prettier ^3.5.3 development
- stripe ^18.1.1 development
- tailwindcss ^4.1.8 development
- typescript ^5.8.3 development
- vite-plugin-svgr ^4.2.0 development
- vite-tsconfig-paths ^5.1.4 development
- vitest ^3.0.2 development
- @heroui/react ^2.8.0-beta.7
- @microlink/react-json-view ^1.26.2
- @monaco-editor/react ^4.7.0-rc.0
- @react-router/node ^7.6.1
- @react-router/serve ^7.6.1
- @react-types/shared ^3.29.1
- @reduxjs/toolkit ^2.8.2
- @stripe/react-stripe-js ^3.7.0
- @stripe/stripe-js ^7.3.0
- @tailwindcss/postcss ^4.1.8
- @tailwindcss/vite ^4.1.8
- @tanstack/react-query ^5.77.2
- @vitejs/plugin-react ^4.4.0
- @xterm/addon-fit ^0.10.0
- @xterm/xterm ^5.4.0
- axios ^1.9.0
- clsx ^2.1.1
- eslint-config-airbnb-typescript ^18.0.0
- framer-motion ^12.16.0
- i18next ^25.2.1
- i18next-browser-languagedetector ^8.1.0
- i18next-http-backend ^3.0.2
- isbot ^5.1.28
- jose ^6.0.11
- lucide-react ^0.511.0
- monaco-editor ^0.52.2
- posthog-js ^1.245.2
- react ^19.1.0
- react-dom ^19.1.0
- react-highlight ^0.15.0
- react-hot-toast ^2.5.1
- react-i18next ^15.5.1
- react-icons ^5.5.0
- react-markdown ^10.1.0
- react-redux ^9.2.0
- react-router ^7.6.1
- react-syntax-highlighter ^15.6.1
- react-textarea-autosize ^8.5.9
- remark-gfm ^4.0.1
- sirv-cli ^3.0.1
- socket.io-client ^4.8.1
- tailwind-merge ^3.3.0
- vite ^6.3.5
- web-vitals ^5.0.1
- ws ^8.18.2
- ipython *
- matplotlib *
- networkx *
- nltk *
- opencv-python *
- pandas ==1.4.4
- python-dateutil *
- pytz *
- pyyaml *
- scipy ==1.10.1
- seaborn *
- statsmodels *
- sympy *
- visdom *
- 435 dependencies