OpenHands

Active
GitHub Python NOASSERTION

Description

OpenHands (formerly OpenDevin) is an autonomous AI agent platform for software development that independently completes code changes, bug fixes, and feature work end-to-end.

Key Features

  • SDK / CLI / Local GUI / Cloud forms share a single tech stack from local to cloud
  • Autonomously completes engineering tasks — code changes, bug fixes, feature implementation, scoring 77.6 on SWE-Bench
  • Multi-LLM compatibility supporting Claude, GPT and other models to drive agents
  • Enterprise features including Slack, Jira, Linear integrations with RBAC and multi-user session sharing
  • MCP and Skills system to extend agent capabilities via standard protocols

Use Cases

💡 Teams deploy AI software engineers in the cloud to triage tickets and implement changes
💡 Local developers use CLI mode for an end-to-end Devin-like development experience
💡 Embed agent capabilities into enterprise business systems via the SDK
💡 Use the Local GUI to let non-engineers operate code repositories with natural language

Quick Start

# Install OpenHands CLI
pip install openhands

# Launch local GUI
openhands

# Or call via SDK in Python
from openhands_sdk import Agent
agent = Agent(llm="claude-sonnet-4")
agent.run("Fix the broken links in README")

Related Projects