OpenHands: AI-Driven Development with Agent Canvas
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
OpenHands Agent Canvas is a self-hosted developer control center designed for coding agents and automations. It allows users to run various AI agents, including OpenHands, Claude Code, and Codex, across local, remote, and cloud backends. This powerful platform helps automate everyday development tasks, turning coding agents into an always-on engineering team.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
OpenHands Agent Canvas is a powerful, self-hosted developer control center for coding agents and automations. It transforms your coding agents into an always-on engineering team, enabling you to start conversations and automate tasks like generating reports or decomposing GitHub issues. The platform supports running OpenHands, Claude Code, Codex, Gemini, or any ACP-compatible agent across various backends, from local machines to cloud infrastructure.
Installation
OpenHands Agent Canvas can be installed and run on various machines, including laptops, dedicated computers, or cloud servers. Running it on a server in the cloud is recommended for continuous operation and easier integration with third-party services.
Option 1: Without a Sandbox
This method runs the agent-server directly on your machine, granting it full filesystem access.
Prerequisites: Node.js 22.12.x or later, uv
npm install -g @openhands/agent-canvas
agent-canvas
The agent-canvas command starts the full local stack. You can also run frontend or backend separately:
agent-canvas --frontend-only # static frontend + ingress only
agent-canvas --backend-only # agent server + automation backend + ingress only
Option 2: With a Docker Sandbox
This option provides a sandboxed environment using Docker.
Prerequisites:
- Docker: Docker Desktop on macOS/Windows, or Docker Engine/Docker Desktop on Linux.
- A host directory for
PROJECTS_PATHcontaining project folders the agent needs to access. Create it before starting the container.
macOS / Linux:
export PROJECTS_PATH="$HOME/projects" # directory containing your project folders
mkdir -p "$HOME/projects" "$HOME/.openhands"
docker run -it --rm \
-p 8000:8000 \
-v "$HOME/.openhands:/home/openhands/.openhands" \
-v "${PROJECTS_PATH}:/projects" \
ghcr.io/openhands/agent-canvas:1.12.0
The agent will be able to access any project under PROJECTS_PATH.
Access the UI at http://localhost:8000 for npm/source launchers, or http://localhost:8000/canvas for the Docker image. Additional backends can be added from the UI.
Examples of Use
OpenHands Agent Canvas excels at automating development workflows and integrating with existing tools. You can create automations and workflows that interact with services like Slack, GitHub, and Linear. For instance, agents can be configured to generate reports and publish them to Slack, or automatically decompose GitHub issues into smaller, manageable tasks. This enables a seamless integration of AI agents into your daily development operations, enhancing productivity and consistency.
Why Use OpenHands Agent Canvas?
OpenHands Agent Canvas offers several compelling reasons for developers and teams:
- Self-Hosted Flexibility: Run agents locally, in Docker, on VMs, or within your company infrastructure, maintaining full control over your data and environment.
- Backend Versatility: Seamlessly switch between local, remote, and cloud agents without losing context, adapting to your specific needs.
- Powerful Automations: Create sophisticated automations and workflows that integrate with popular services like Slack, GitHub, and Notion, running on schedules or in response to webhook events.
- LLM and Agent Agnostic: Use with any Large Language Model (LLM) and any agent compatible with the Agent-Client Protocol (ACP), including OpenHands, Claude Code, and Codex.
- Developer Control: Provides a centralized control center for managing and orchestrating your AI coding agents, enhancing efficiency and consistency in development tasks.
Links
For more information, documentation, and community engagement, please refer to the official links:
Related repositories
Similar repositories that may be relevant next.

LobeHub: Your Chief Agent Operator for AI Team Orchestration
August 8, 2026
LobeHub acts as a Chief Agent Operator, streamlining the management of your AI team. It enables hiring, scheduling, and reporting on agents for 24/7 operations, allowing users to maintain control without constant online presence. This platform transforms individual AI tools into a cohesive, productive team.

QwenPaw: Your Personal AI Assistant for Local and Cloud Deployment
August 7, 2026
QwenPaw is a powerful personal AI assistant designed for easy installation and deployment, either on your local machine or in the cloud. It supports multiple chat applications and offers highly extensible capabilities, making it a versatile tool for various AI-driven tasks. With its robust memory system and security features, QwenPaw aims to be an intuitive and private partner in your digital life.

ReMe: An Advanced Memory Management Kit for AI Agents
August 7, 2026
ReMe is an innovative, local-first memory layer designed for AI agents, transforming conversations and resources into file-based long-term memory. It continuously indexes, links, and consolidates this information, enabling advanced recall and supporting the development of self-evolving agents. This kit helps agents remember and refine their experiences effectively.

Hermes WebUI: A Powerful Web Interface for Your Autonomous AI Agent
June 1, 2026
Hermes WebUI provides a lightweight, dark-themed web application for interacting with Hermes Agent, offering full parity with the CLI experience. This self-hosted interface allows users to manage sessions, browse workspaces, and control their AI agent from any web browser or phone, enhancing accessibility and user experience. It integrates seamlessly with existing Hermes Agent setups, requiring no additional configuration.
Source repository
Open the original repository on GitHub.