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.
The easiest way to get started with OpenHands is on OpenHands Cloud, which comes with $20 in free credits for new users.
The easiest way to run OpenHands locally is using the CLI launcher with uv. This provides better isolation from your current project's virtual environment and is required for OpenHands' default MCP servers.
Install uv (if you haven't already):
See the uv installation guide for the latest installation instructions for your platform.
Launch OpenHands:
# Launch the GUI server
uvx --python 3.12 --from openhands-ai openhands serve
# Or launch the CLI
uvx --python 3.12 --from openhands-ai openhands
You'll find OpenHands running at http://localhost:3000 (for GUI mode)!
Click to expand Docker command
You can also run OpenHands directly with Docker:
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.52-nikolaik
docker run -it --rm --pull=always \
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.52-nikolaik \
-e LOG_ALL_EVENTS=true \
-v /var/run/docker.sock:/var/run/docker.sock \
-v ~/.openhands:/.openhands \
-p 3000:3000 \
--add-host host.docker.internal:host-gateway \
--name openhands-app \
docker.all-hands.dev/all-hands-ai/openhands:0.52
Note: If you used OpenHands before version 0.44, you may want to run
mv ~/.openhands-state ~/.openhands
to migrate your conversation history to the new location.
Warning
On a public network? See our Hardened Docker Installation Guide to secure your deployment by restricting network binding and implementing additional security measures.
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.
See the Running OpenHands guide for system requirements and more information.
Warning
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, check out the source-available, commercially-licensed OpenHands Cloud Helm Chart
You can connect OpenHands to your local filesystem, interact with it via a friendly CLI, run OpenHands in a scriptable headless mode, or run it on tagged issues with a github action.
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.
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.
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.
See the monthly OpenHands roadmap here (updated at the maintainer's meeting at the end of each month).
Distributed under the MIT License. See LICENSE
for more information.
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.
@inproceedings{
wang2025openhands,
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},
booktitle={The Thirteenth International Conference on Learning Representations},
year={2025},
url={https://openreview.net/forum?id=OJd3ayDDoF}
}