Your AI Agent Team, Managed by Kanban
How It Works β’ The Agent Team β’ Bring Your Own Agents β’ Quick Start β’ Architecture
π¦ Distribution Notice This project primarily provides a Tauri desktop application (binary distribution). The web version is available for demo purposes only.
Project links:
- Releases: https://github.com/phodal/routa/releases
- Docs: https://phodal.github.io/routa/
- Demo Video: https://www.bilibili.com/video/BV16CwyzUED5/
- Demo Video (YouTube): https://www.youtube.com/watch?v=spjmr_1AQLM
- Contributing: CONTRIBUTING.md
- Security: SECURITY.md
Most AI coding tools give you one agent doing everything. Routa gives you a team.
You describe what you want in plain language. Routa's Kanban board becomes the coordination layer β breaking your intent into cards, assigning specialized agents to each column, and flowing work from Backlog β Todo β Dev β Review β Done. Each stage has a dedicated agent that knows its job and passes work forward when it's ready.
Think of it as a software team that never sleeps, where the Kanban board is both the project manager and the communication bus.
You: "Build a user auth system with login, registration, and password reset"
β
βββββββββββββββββββββββββββββββββ
β π Kanban Board (the brain) β
βββββββββββββββββββββββββββββββββ
β
Backlog Todo Dev Review Done
ββββββββββ ββββββββββ ββββββββββ ββββββββββ ββββββββββ
βRefiner β β βOrchestrβ β βCrafter β β β Guard β β βReporterβ
β Agent β β Agent β β Agent β β Agent β β Agent β
ββββββββββ ββββββββββ ββββββββββ ββββββββββ ββββββββββ
- You speak, Kanban listens β Describe your goal in natural language. Routa decomposes it into cards on the board.
- Each column has a specialist β Agents are bound to columns. When a card lands in their column, they pick it up automatically.
- Work flows forward β Each agent completes its stage and moves the card to the next column. No manual handoff needed.
- Review before done β The Review Guard agent checks implementation quality and can bounce cards back to Dev if needed.
- Full visibility β Watch agents work in real-time. Every card shows who's working on it, what changed, and why.
Routa ships with a set of built-in specialists, each designed for a specific stage of the development workflow:
| Agent | Column | What It Does |
|---|---|---|
| Backlog Refiner | Backlog | Turns rough ideas into implementation-ready stories with clear scope and acceptance criteria |
| Todo Orchestrator | Todo | Removes ambiguity, adds execution notes, confirms the card is ready for coding |
| Dev Crafter | Dev | Implements the feature, runs tests, records evidence of what changed |
| Review Guard | Review | Inspects implementation against acceptance criteria, approves or bounces back to Dev |
| Done Reporter | Done | Writes a completion summary β what shipped and what was verified |
| Blocked Resolver | Blocked | Triages stuck cards, clarifies blockers, routes them back into the active flow |
Above the board sits the Coordinator (Routa) β it plans work, writes specs, delegates to specialists, and orchestrates multi-wave execution. It never writes code itself.
You can also define Custom Specialists with their own system prompts, model tiers, and behaviors β via the Web UI, REST API, or Markdown files in ~/.routa/specialists/.
Routa doesn't lock you into one AI provider. Pick the backend agent that fits each task:
Routa spawns and manages agent processes through ACP. Supported out of the box:
| Provider | Type | Status |
|---|---|---|
| Claude Code | CLI | β Supported |
| OpenCode | CLI / Docker | β Supported |
| Codex | CLI | β Supported |
| Gemini CLI | CLI | β Supported |
| Kimi | CLI | β Supported |
| Augment | CLI | β Supported |
| Copilot | CLI | β Supported |
Discover and install community-contributed agents from the ACP Registry β supports npx, uvx, and binary distributions. Browse the registry from Settings β Install Agents, or use the API.
| Protocol | Purpose |
|---|---|
| MCP (Model Context Protocol) | Coordination tools β task delegation, messaging, notes |
| ACP (Agent Client Protocol) | Spawns and manages agent processes |
| A2A (Agent-to-Agent Protocol) | Federation interface for cross-platform agent communication |
| AG-UI | Agent-generated UI protocol for rich dashboard rendering |
- π§ Custom MCP Servers β Register user-defined MCP servers (stdio/http/sse) alongside the built-in coordination server. When an ACP agent spawns, enabled custom servers are automatically merged into its MCP configuration.
- π GitHub Virtual Workspace β Import GitHub repos as virtual workspaces for browsing and code review β no local
git clonerequired. Works on serverless (Vercel) via zipball download. - π‘ Scheduled Triggers β Cron-based agent triggers for recurring tasks.
- π GitHub Webhooks β Trigger agent workflows from GitHub events (push, PR, issues).
- π§ Memory β Workspace-scoped memory entries that persist context across sessions.
- π Traces β Browse agent execution traces, view stats, debug agent behavior.
- π― Skills System β OpenCode-compatible skill discovery and dynamic loading from a community catalog.
npm install --legacy-peer-deps
npm --prefix apps/desktop install
npm run tauri:devnpm install --legacy-peer-deps
npm run devVisit http://localhost:3000 to access the web interface.
# SQLite (default, no external database required)
docker compose up --build
# PostgreSQL
docker compose --profile postgres up --buildThe desktop distribution includes a routa CLI:
routa -p "Implement feature X" # Full coordinator flow
routa agent list|create|status # Agent management
routa task list|create|get # Task management
routa chat # Interactive chat- Bug reports and feature requests: https://github.com/phodal/routa/issues
- Security reports: SECURITY.md
- Contribution guide: CONTRIBUTING.md
flowchart TB
subgraph clients["π₯οΈ AI Clients"]
claude["Claude Code"]
opencode["OpenCode/Codex"]
gemini["Gemini CLI"]
a2a_ext["External Agents"]
end
subgraph browser["π Web Interface"]
chat["Chat Panel"]
kanban["Kanban Board"]
agents["Agent Panel"]
end
subgraph server["βοΈ Routa Server"]
mcp["MCP Server<br/>/api/mcp"]
acp["ACP Agent<br/>/api/acp"]
a2a["A2A Bridge<br/>/api/a2a"]
rest["REST APIs"]
subgraph core["Core Engine"]
tools["Coordination Tools"]
orchestrator["Orchestrator"]
system["Stores & EventBus"]
skill_reg["Skill Registry"]
end
end
claude -.->|"SSE + JSON-RPC"| mcp
opencode -.->|"stdio + JSON-RPC"| acp
gemini -.->|"stdio + JSON-RPC"| acp
a2a_ext -.->|"HTTP + JSON-RPC"| a2a
chat -->|"WebSocket"| acp
kanban -->|"REST + SSE"| rest
agents -->|"REST"| rest
mcp --> tools
acp --> tools
acp --> skill_reg
a2a --> tools
rest --> system
tools --> orchestrator
orchestrator --> system
skill_reg --> system
classDef clientStyle fill:#e1f5ff,stroke:#0288d1,stroke-width:2px
classDef browserStyle fill:#fff3e0,stroke:#f57c00,stroke-width:2px
classDef serverStyle fill:#f3e5f5,stroke:#7b1fa2,stroke-width:2px
classDef coreStyle fill:#e8f5e9,stroke:#388e3c,stroke-width:2px
class claude,opencode,gemini,a2a_ext clientStyle
class chat,kanban,agents browserStyle
class mcp,acp,a2a,rest serverStyle
class tools,orchestrator,system,skill_reg coreStyle
Routa is a practical case study of the three principles from Harness Engineering: build systems that are readable for AI, constrained by engineering guardrails, and improved through fast automated feedback.
- System Readability β AGENTS.md defines coding standards, testing strategy, and Git discipline. Specialist definitions in
resources/specialists/reveal role boundaries and quality gates. Machine-friendly interfaces (MCP, ACP, A2A, REST, CLI) mean agent workflows don't depend on manual UI steps. - Defense Mechanisms β
.husky/pre-commitruns lint,.husky/pre-pushdelegates toscripts/smart-check.sh. Fitness functions (docs/fitness/README.md) define hard gates:npm run test:run,cargo test --workspace,npm run api:check,npm run lint. - Automated Feedback Loops β Issue enrichment, review handoff automation, and backlog hygiene workflows (
.github/workflows/) close the loop between agent output and the next iteration.
This project is licensed under the MIT License β see the LICENSE file for details.
Built with Model Context Protocol by Anthropic Β· Agent Client Protocol Β· A2A Protocol Β· Inspired by Intent
Made with β€οΈ by the Routa community
