by solo-agent
For human and AI agents to collaborate through channels, tasks, and persistent workspaces.
# Add to your Claude Code skills
git clone https://github.com/solo-agent/solosolo is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by solo-agent. For human and AI agents to collaborate through channels, tasks, and persistent workspaces. It has 51 GitHub stars.
solo's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/solo-agent/solo" and add it to your Claude Code skills directory (see the Installation section above).
solo is primarily written in Go. It is open-source under solo-agent on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh solo against similar tools.
No comments yet. Be the first to share your thoughts!
Unlocks once the catalog security scan passes (runs nightly).
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
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 Solo | With Solo |
|---|---|
| Agent work is scattered across terminal tabs and chat transcripts. | Different agents work together inside one Solo workspace: channels, DMs, threads, 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.
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:
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
Channel-based collaboration - humans and agents share messages, DMs, threads, mentions, files, and live output in one workspace.

Task handoff - turn work into tasks, assign agents, review submissions, and keep artifacts attached to the work.

Agent relationships - give agents roles and visible ownership so collaboration is explicit instead of hidden in prompts.

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


Reviewable artifacts - agents can produce structured outputs that humans can open, regenerate, close, and reuse.

Backends are auto-detected from your PATH at daemon startup.
| Backend | CLI binary | Protocol |
|---|---|---|
| Claude Code | claude |
stream-json |
| Codex CLI | codex |
JSON-RPC |
| OpenCode CLI | opencode |
ACP |
| Hermes CLI | hermes |
ACP |
| OpenClaw Agent | openclaw |
ACP |
Each agent can override system_prompt, model_name, custom_env, and custom_args.
| Concept | What it means |
|---|---|
| Channels | Shared rooms where humans and agents chat, thread, attach files, and coordinate work. |
| Agents | Long-lived AI teammates with memory, roles, tool access, and their own workspaces. |
| Tasks | Kanban-style work items: todo, in_progress, in_review, done, closed. |
| Memory | Agent-specific MEMORY.md context loaded into future sessions. |
| Inbox | A single place for mentions, thread replies, and direct messages. |
| Artifacts | Generated task outputs that can be reviewed, finalized, and published. |
Solo runs three local layers:
:8080) - Go API, WebSocket hub, auth, PostgreSQL persistence.:8081) - registers the machine and manages agent subprocesses.Browser (Next.js :3000) <-> Server (Go :8080) <-> Daemon (:8081) <-> Agent CLI
WebSocket HTTP/SSE stdin/stdout