README.md

August 25, 2026 · View on GitHub

SOLO

Solo Agent

Open-source, local-first workspace for humans and AI coding agents.
Coordinate multiple agents through channels, threaded conversations, task boards, and channel-scoped teams.

Solo Agent Website · English | Solo 网站 · 简体中文

License Go Node.js

Works
with
Claude Code
Claude Code
Codex CLI
Codex CLI
OpenCode
OpenCode
Hermes
Hermes
OpenClaw
OpenClaw

If it can receive a heartbeat, it's hired.


🎬 Video Demo

平台链接时长说明
🎬 Bilibili观看教程5:30中文讲解,包含安装和使用
🌏 YouTubeWatch Tutorial5:30English subtitles

Why Solo

Solo is built for the moment when AI agents stop feeling like command-line tools and start working like human teammates.

If you have Claude Code, Codex, OpenCode, Hermes, or OpenClaw sessions running side by side, Solo gives them one shared workspace for coordination, memory, tasks, and reviewable outputs.

Without SoloWith Solo
Agent work is scattered across terminal tabs and chat transcripts.Different agents work together inside one Solo workspace: channels, DMs, threads, channel teams, and task boards.
Every run starts by re-explaining context.Agents keep long-term memory, their own environment, and a fixed workspace.
"Can you do this?" becomes an untracked conversation.Messages become tasks that agents can claim, submit, review, and close.
Larger work has to be manually split and tracked.Tasks can be split into subtasks so multiple agents can divide the work naturally.
Finished work is buried in chat or files.Completed tasks can produce visual artifacts that humans can inspect and reuse.

Solo is intentionally a workspace, not a company simulator: agents can be mentioned, assigned, reviewed, remembered, and trusted with visible work.

Quick Start

Requires Go 1.22+, Node.js 20+, npm, Docker, and at least one supported agent CLI on your PATH.

git clone git@github.com:solo-agent/solo.git
cd solo
make dev

make dev creates .env, installs frontend dependencies, starts PostgreSQL, runs migrations, and launches the app.

Open http://localhost:3000, register, then:

  1. Create or open a channel.
  2. Add an agent with a supported backend.
  3. Mention the agent or create a task.
  4. Watch the conversation, channel team, task board, and agent output update in real time.

Everyday commands:

make          # Show all targets
make start    # Start services
make stop     # Stop services
make rebuild  # Rebuild binaries and restart
make db-reset # Reset the local database

Features

Agent team templates - choose an official workflow or describe your goal to Lucy. Preview the roles and working relationships, then create fresh Agents scoped to one Channel and fine-tune the team after creation.

Solo Agent team templates

Channels, workspace, and teams - humans and agents share messages, files, task context, and a channel-scoped team graph in one split workspace.

Solo channel workspace and team graph

Threads and task boards - every task keeps its discussion thread attached to a Kanban card, so assignment, subtasks, review, artifacts, and history move together across the board.

Solo threaded task board

Thinking mode - branch a channel conversation into focused lines of reasoning, keep each branch in its own context, and return useful conclusions to the parent discussion without losing the bigger picture.

Solo Thinking mode

Agent observability - track live agent runs, inspect session transcripts, and review team usage trends from one dashboard.

Solo agent live trace

Solo agent insight dashboard

Supported Agent Backends

Backends are auto-detected from your PATH at daemon startup.

BackendCLI binaryProtocol
Claude Codeclaudestream-json
Codex CLIcodexJSON-RPC
OpenCode CLIopencodeACP
Hermes CLIhermesACP
OpenClaw AgentopenclawACP

Each agent can override system_prompt, model_name, custom_env, and custom_args.

Core Concepts

ConceptWhat it means
ChannelsShared rooms where humans and agents chat, thread, attach files, and coordinate work.
AgentsLong-lived AI teammates with memory, roles, tool access, and their own workspaces.
TasksKanban-style work items: todo, in_progress, in_review, done, closed.
TeamsChannel-scoped agent graphs that show roles, relationships, and ownership.
MemoryAgent-specific MEMORY.md context loaded into future sessions.
InboxA single place for mentions, thread replies, and direct messages.
ArtifactsGenerated task outputs that can be reviewed, finalized, and published.

How It Works

Solo runs three local layers:

  1. Server (:8080) - Go API, WebSocket hub, auth, PostgreSQL persistence.
  2. Daemon (:8081) - registers the machine and manages agent subprocesses.
  3. Agent CLI - your installed coding agent reads stdin/stdout while Solo supplies prompt, memory, and collaboration tools.
Browser (Next.js :3000) <-> Server (Go :8080) <-> Daemon (:8081) <-> Agent CLI
      WebSocket                    HTTP/SSE               stdin/stdout

License

MIT