# routa **Repository Path**: yonja/routa ## Basic Information - **Project Name**: routa - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-09 - **Last Updated**: 2026-03-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
Routa - Multi-Agent Orchestration # Routa **Multi-Agent Coordination Platform for AI Development** [![TypeScript](https://img.shields.io/badge/TypeScript-5.7-blue.svg)](https://www.typescriptlang.org/) [![Next.js](https://img.shields.io/badge/Next.js-15.1-black.svg)](https://nextjs.org/) [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE) [Features](#features) β€’ [Quick Start](#quick-start) β€’ [Architecture](#architecture) β€’ [Contributing](#contributing)
--- > **πŸ“¦ Distribution Notice** > This project primarily provides a **Tauri desktop application** (binary distribution). > The web version is available **only for demo purposes** and is not the main deployment target. ## Overview **Routa** orchestrates AI agents to collaborate on complex development tasks through specialized roles and real-time coordination. It parses natural language into structured intent (Spec with Tasks), then shares this unified intent across all downstream agents, ensuring context consistency throughout the workflow. **Multi-Protocol Architecture:** - **MCP (Model Context Protocol)** β€” Coordination tools for agent collaboration (task delegation, messaging, notes) - **ACP (Agent Client Protocol)** β€” Spawns and manages agent processes (Claude Code, OpenCode, Codex, Gemini) - **A2A (Agent-to-Agent Protocol)** β€” Exposes external federation interface for cross-platform agent communication Instead of a single AI handling everything, Routa enables multiple agents to work togetherβ€”one plans, another implements, and a third verifiesβ€”creating a more robust and scalable development workflow. ### What It Does - **Breaks down complex work** into manageable tasks across specialized agents - **Coordinates execution** through task delegation, messaging, and event streaming - **Verifies quality** with dedicated review agents before completion - **Connects multiple AI platforms** (Claude Code, OpenCode, Codex, Gemini) through unified protocols - **Provides real-time visibility** into agent activities, task progress, and collaboration ### Key Capabilities | Icon | Role | Description | |------|---------------------------|-----------------------------------------------------------------------------------------| | πŸ”΅ | **Routa (Coordinator)** | Plans work, parses intent into structured Spec, creates tasks, delegates to specialists | | 🟠 | **CRAFTER (Implementor)** | Executes implementation tasks, writes code, makes minimal focused changes | | 🟒 | **GATE (Verifier)** | Reviews work, validates against acceptance criteria, approves or requests fixes | | 🎯 | **DEVELOPER (Solo)** | Plans and implements independently without delegation (single-agent mode) | | πŸ› οΈ | **Custom Specialists** | User-defined specialist roles with custom system prompts, model tiers, and behaviors | - **πŸ”„ Task Orchestration**: Create tasks, delegate to agents, track dependencies, parallel execution - **πŸ’¬ Inter-Agent Communication**: Message passing, conversation history, completion reports - **πŸ“‘ Multi-Protocol Support**: MCP, ACP, A2A for connecting diverse AI clients - **🎯 Skills System**: OpenCode-compatible skill discovery and dynamic loading - **πŸ”Œ ACP Registry**: Discover and install pre-configured agents from the community registry (supports npx, uvx, and binary distributions) - **πŸ”§ Custom MCP Servers**: Register and manage user-defined MCP servers (stdio/http/sse) alongside the built-in coordination server - **πŸ§‘β€πŸ’» Custom Specialists**: Define custom agent roles via Web UI, REST API, or Markdown files with YAML frontmatter - **πŸ™ GitHub Virtual Workspace**: Import GitHub repos as virtual workspaces for browsing and code review without local clones - **πŸ“Š Real-Time UI**: Live agent status, task progress, streaming chat interface πŸ‘‰ For detailed protocol specs and API reference, see [AGENTS.md](AGENTS.md) ## πŸš€ Quick Start ### Desktop Application (Recommended) ```bash # Install dependencies npm install --legacy-peer-deps # Run Tauri desktop app npm run tauri dev ``` ### Web Demo (For Testing Only) ```bash # Install dependencies npm install --legacy-peer-deps # Start development server npm run dev ``` Visit `http://localhost:3000` to access the web interface. ### Docker Deployment ```bash # Build and start with SQLite (no external database required) docker compose up --build ``` To use PostgreSQL instead, create a `.env` file in the project root: ```dotenv # .env ROUTA_DB_DRIVER=postgres DATABASE_URL=postgresql://routa:routa_secret@postgres:5432/routa POSTGRES_PASSWORD=routa_secret ``` Then start with the `postgres` profile (starts a bundled Postgres container): ```bash docker compose --profile postgres up --build ``` The service is available at `http://localhost:3000`. Health check: `http://localhost:3000/api/health` ## πŸ”§ Custom MCP Servers Register user-defined MCP servers (`stdio`/`http`/`sse`) alongside the built-in coordination server. Managed via Web UI (Settings panel) or REST API. When an ACP agent spawns, enabled custom servers are automatically merged into its MCP configuration. Supported providers: Claude, OpenCode, Codex, Gemini, Kimi, Augment, Copilot. ## πŸ§‘β€πŸ’» Custom Specialists Define custom specialist roles beyond the built-in four, with their own system prompts, model tiers, and behaviors. Managed via Web UI (Specialist Manager), REST API, or Markdown files with YAML frontmatter placed in `~/.routa/specialists/`. Loading priority: Database > User files (`~/.routa/specialists/`) > Bundled (`resources/specialists/`) > Hardcoded fallback. ## πŸ™ GitHub Virtual Workspace Import GitHub repos as virtual workspaces for browsing and code review β€” no local `git clone` required. Supports file tree browsing, content reading, and search. Works on serverless (Vercel) via zipball download with TTL-based cache cleanup. ## ⌨️ CLI (Rust) The desktop distribution includes a `routa` CLI built on the same `routa-core` logic as the Rust server: ```bash 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 ``` ## πŸ— Architecture ```mermaid 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"] agents["Agent Panel"] skills["Skill Panel"] end subgraph server["βš™οΈ Routa Server"] mcp["MCP Server
/api/mcp"] acp["ACP Agent
/api/acp"] a2a["A2A Bridge
/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 agents -->|"REST"| rest skills -->|"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,agents,skills browserStyle class mcp,acp,a2a,rest serverStyle class tools,orchestrator,system,skill_reg coreStyle ``` ## πŸ“„ License - Built with [Model Context Protocol](https://modelcontextprotocol.io/) by Anthropic - Uses [Agent Client Protocol](https://github.com/agentclientprotocol/sdk) for agent communication - Uses [A2A Protocol](https://a2a-js.github.io/sdk/) for agent federation - Inspired by the [Intent](https://www.augmentcode.com/product/intent) - multi-agent coordination patterns in modern AI systems This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. ---
**[⬆ back to top](#routa-js)** Made with ❀️ by the Routa community