Multi-workspace orchestrator for Claude Code and OpenAI Codex agents.
Kōbō runs multiple coding agents in parallel, each isolated in its own git worktree, branch, and dev server. Its installable Vue/Quasar dashboard streams output, tasks, git state, and quota usage across every workspace.
Note
Active development on develop. Forward-only migrations and timestamped pre-migration backups keep upgrades safe.
-
Isolated worktrees: each workspace is a dedicated git worktree on its own branch, so parallel sessions never collide.
-
Two agent engines: Claude Code (via
@anthropic-ai/claude-agent-sdk) and OpenAI Codex (viacodex app-server), chosen per workspace. -
Live chat: streaming text, inline Edit/Write diffs, per-turn cards, a compaction-in-progress indicator, infinite scrollback, and the latest Claude or Codex reasoning in a panel immediately above the message input.
/autocompletes skills and commands,@fuzzy-autocompletes worktree file paths, andCtrl+Fsearches readable messages in the current workspace: selecting a result loads its session and scrolls to it. The global search page deep-links to the same location. Messages queued while an agent is busy stay scoped to their workspace and session. Send now delivers a queued message to an active Claude Code stream or steers the active Codex turn; it remains queued until the engine confirms acceptance. UseEnterto send,Ctrl+Enterto force delivery while an agent is busy, andShift+EnterorCtrl+Jfor a new line. -
Full MCP toolset (
kobo-tasks): a per-workspace MCP server the agent uses for far more than tasks — task/acceptance-criteria CRUD, starting/stopping the dev server and reading its logs, a unifiedget_ticket(Notion or Sentry), searching past conversations across every workspace, per-session token/cost usage, and a.ai/thoughtsdecision log. Native Claude Code Task tools complement it for lightweight sub-agent coordination. SeeAGENTS.mdfor the full tool list. -
Git panel: a Monaco-based diff viewer with inline file editing (edit the right-hand panel directly, save with
Ctrl/Cmd+S, conflict-guarded via sha precondition), inline conflict resolution, andSync/Push/Open PR/Change PR base/Change source branch. Edit/Write cards in chat open their exact changed file in the diff viewer. Multi-forge: GitHub (gh), GitLab (glab), or no forge, auto-detected from the remote and overridable per project. -
Dev server panel: start, stop, and tail logs for a workspace's dev server (Docker or npm) straight from the Tools panel — no need to leave the UI.
-
Attention indicators: workspace cards surface CI failures, review-requested changes, and a conflict-aware ready-to-merge badge, plus a one-click Fix CI button that spawns a fix workspace automatically. Seven PR/MR and CI transitions each have their own audio toggle, sound, and volume; simultaneous transitions play sequentially.
-
Interactive Q&A: an agent can pause mid-session to ask a clarifying question through the UI; the workspace surfaces under "Needs Attention" until you answer. Choosing Other opens an inline free-form field, and option previews are available on hover. Codex native interactive questions require its
planpermission mode. -
Auto-loop: an opt-in mode that walks the task list, spawning a fresh session per task and stopping once there's nothing left to do, progress stalls, an error occurs, or the agent needs input from you. Optionally run the initial brainstorming session on a stronger model and every task after that on a cheaper one, without leaving the engine you picked.
-
Quota-aware: 5-hour / 7-day Claude usage and Codex rate-limit buckets sit in the footer, and sessions auto-resume after a rate-limit reset.
-
Scheduled wakeups: the agent schedules a one-shot wake-up via the
schedule_wakeupMCP tool. Kōbō persists it across restarts, shows a live countdown, and re-invokes the agent with the stored prompt at the chosen time. -
Cron schedules: recurring per-workspace triggers the agent registers through MCP tools (
cron_create/cron_delete/cron_list). Each tick resumes the workspace session (skipped if already active), and schedules are re-armed at boot with skip-missed semantics. -
Lifecycle scripts: shell scripts run automatically at key moments — setup (worktree created), cleanup (session ended), archive (workspace archived). Configure them globally or per project, with their output streamed into the chat.
-
Disk-space purge: free a merged workspace's disk space without losing its chat history — see below.
-
Observability: a compact session timeline in the right panel shows session duration and status; download a redacted workspace diagnostic JSON for troubleshooting.
-
Optional integrations: independently enable or disable Notion (import missions) and Sentry (fix from issue URL) in Settings, with a Test connection action for each; local voice transcription uses whisper.cpp.
-
Installable PWA: production builds work as a Progressive Web App. Install Kōbō from your browser on desktop or mobile for an app-like window; it signals offline state and offers an explicit reload when an update is ready. Live agent activity still requires a connection to the local Kōbō server.
Requires Node.js ≥ 20 and a logged-in Claude Code or Codex CLI.
npx @loicngr/kobo@latestDefault port is 3000. If you already run something on that port (or another Kōbō instance), pick your own. SERVER_PORT is read first, PORT is the fallback:
SERVER_PORT=9997 PORT=9998 npx @loicngr/kobo@latestOpen http://localhost:3000 (or whichever port you picked). Data is persisted under ~/.config/kobo/ (override via KOBO_HOME).
Kōbō's production build is a PWA. When opening a production instance, use your browser's Install app / Add to Home Screen action to install it. It shows an offline notice and lets you explicitly reload when an update is ready, so an active session is never interrupted automatically. The development client (npm run dev:client) intentionally runs as a normal Vite application, so it does not expose an install prompt.
Want to run from source or contribute? See CONTRIBUTING.md.
An official Dockerfile and three ready-to-use Compose files ship in this repository: a quick local
test stack, a Traefik-fronted local rehearsal (kobo.localhost, no domain needed), and a full VPS
reference (Traefik + Let's Encrypt, SSH access, optional Docker-socket passthrough for the
dev-server panel). See CONFIGURATION.md for the complete
setup — every compose file, every env var, every volume mount, and the KOBO_NETWORK_ACCESS_ENABLED
/ KOBO_NETWORK_ACCESS_BEHIND_PROXY env vars that bootstrap network access at container boot with
no manual step.
The most common knobs:
| Env var | Default | Purpose |
|---|---|---|
PORT |
3000 |
HTTP / WebSocket server port (overridden by SERVER_PORT if set) |
SERVER_PORT |
none | Preferred override for the server port; takes precedence over PORT |
KOBO_HOME |
~/.config/kobo |
Data directory (SQLite, settings, voice models) |
NOTION_API_TOKEN |
none | Notion integration token |
ANTHROPIC_API_KEY |
none | Claude Code engine credential (alternative to claude /login) |
OPENAI_API_KEY |
none | Codex engine credential (alternative to codex login) |
Global and per-project settings (worktree path, dev server commands, E2E framework, prompt templates, git conventions, branch prefixes, lifecycle scripts, task prompt) are edited in Settings at runtime. Notion and Sentry are enabled independently in their respective tabs; disabling one keeps its configuration and existing workspace links, but removes its import and automation UI. In Settings → General → Activity feed, you can hide agent reasoning panels. Per-project values inherit from the global ones when left empty.
The full reference (every env var, every setting key, MCP server registration, Notion / Sentry / Voice setup) is in CONFIGURATION.md.
- Claude Code. Authenticate once with
claude /login. Kōbō calls the embedded SDK directly, so noclaudebinary is required at runtime. - OpenAI Codex. Run
codex loginor exportOPENAI_API_KEY. Kōbō spawns a long-livedcodex app-serversubprocess per workspace and bridges its JSON-RPC stream to the same UI.
You pick the engine at workspace creation. Both share the same task tracking, permission modes, sub-agent panel, and quota footer. The mapping of Kōbō's four permission modes (plan / bypass / strict / interactive) to each engine's native sandbox + approval semantics is in CONFIGURATION.md.
A merged workspace is automatically archived, but its worktree folder usually carries a lot of weight (node_modules, vendor, build artefacts…). Kōbō frees that space without losing anything queryable:
- Manual: workspace context menu → Free disk space (delete worktree). The worktree is removed; the chat history and PR metadata stay in the database.
- Automatic: Settings → Worktrees → Auto-purge worktree on PR merged. When the pr-watcher sees the OPEN → MERGED transition, it archives and purges.
- Restore: recreate the folder yourself (
gh pr checkout <pr>orgit worktree add <path> <branch>). The pr-watcher detects the directory reappearing within 30 seconds and re-activates the workspace automatically. No UI action needed. - Permission errors: if removal hits
EACCES/EPERM(common with Docker containers writing asroot), Kōbō first tries to auto-recover bychown-ing the worktree from a throwaway Docker container. If that isn't possible, it shows a toast with a copy-pasteable manual recovery command. Full troubleshooting (ACL setup, DockerUSERdirective, manualchown) is inCONFIGURATION.md.
Kōbō ships first-class support for three external systems. All are opt-in and reuse credentials you may already have configured for Claude Code.
- Notion: import missions, tasks, and acceptance criteria from a Notion page. Enable it in Settings → Notion when you want its creation/import flow, then use Test connection to validate its MCP credentials.
- Sentry: paste an issue URL to spawn a fix workspace with the stacktrace, tags, and a TDD workflow. Enable it independently in Settings → Sentry; Test connection validates its MCP credentials and authenticated identity.
- Voice transcription: local push-to-talk via
whisper.cpp.
See CONFIGURATION.md for the setup of each.
By default, Kōbō binds to 127.0.0.1 only (localhost). To control Kōbō from
another device on the same Wi-Fi or LAN:
- Open Settings → Global → Network access and enable it.
- Restart Kōbō when prompted, since the server must re-bind to apply the change.
- Scan the QR code shown in the Settings panel from your phone, or copy a LAN URL and paste the token in the login dialog on the remote device.
Trusted networks only. Kōbō uses plain HTTP, so the token travels in cleartext. Do not expose the port to the internet. For remote access over the internet, put a terminating HTTPS proxy or a VPN (e.g. Tailscale) in front of Kōbō.
Production only. This protection applies when running a built Kōbō (
npm start/npx @loicngr/kobo). In development (npm run dev:all) the Vite dev server is always exposed on the LAN and bypasses the token. SeeCONFIGURATION.md.
See CONFIGURATION.md for token management,
QR code details, and all security caveats.
Kōbō's auto-generated prompts (review, auto-loop grooming, QA, brainstorming) can target four different skill ecosystems, selectable in Settings → Skills:
- superpowers (default): a plugin for Claude Code with the brainstorm → spec → plan → execute discipline, TDD, debugging, code review.
- gstack: CLI slash commands for navigation, QA, design review, ship pipeline, second-opinion via Codex.
- superpowers + gstack: both, with each used for what it does best.
- custom: write your own prompts.
Optionally pair with gbrain, a per-project knowledge graph + semantic search exposed as an MCP server. It is inherited automatically from your ~/.claude.json config.
Full install instructions and the prompt-suite differences are in CONFIGURATION.md.
Hono backend, Vue 3 + Quasar PWA, SQLite (WAL) for persistence, WebSocket for live updates. Each workspace spawns its own agent engine and a dedicated MCP server (kobo-tasks) that the agent uses to query and mutate workspace state.
src/
├── server/ # Hono backend (routes, services, db, agent orchestrator)
│ ├── services/agent/engines/ # claude-code/ + codex/ engines
│ └── ...
├── client/ # Vue 3 + Quasar PWA
├── mcp-server/ # kobo-tasks MCP server, spawned per workspace
├── shared/ # types shared backend ↔ frontend
└── __tests__/ # Vitest suite, backend + client, thousands of tests
AGENTS.md covers the data model, WebSocket protocol, engine contracts, MCP tool surface, migration discipline, i18n rules, and contribution guidelines.
PRs welcome. See CONTRIBUTING.md for the from-source setup, scripts, and release process, and AGENTS.md for code conventions and the database-migration discipline.
GPL-3.0-or-later. See LICENSE.