The local-first control plane for multi-agent AI development.
LaneConductor is a sovereign developer environment that orchestrates AI agents (Claude, Gemini, and more) across multiple repositories, giving you real-time visibility through a unified Kanban dashboard — with zero cloud dependency and zero cost.
- Sovereign & Local-First: Runs 100% on your hardware. No cloud, no auth, no hidden costs.
- The Conductor Pattern: A structured Plan → Implement → Review → Quality Gate → Done pipeline. Compatible with the Gemini CLI conductor format.
- Filesystem Message Bus: Uses simple Markdown files in
conductor/tracks/as the source of truth, enabling agents and humans to coordinate seamlessly. - Live Kanban Dashboard: A Vite + React dashboard that syncs in real-time with your filesystem via a local Postgres database.
- Quality Gates: Automated verification (tests, linting, builds) that must pass before any work is considered "Done".
- Multi-Agent Support: Natively optimized for Claude Code and Gemini, with support for primary and fallback LLM configurations.
# 1. Install the lc CLI globally
git clone https://github.com/meller/laneconductor.git && cd laneconductor && make install
# 2. Initialize in your project
cd ~/your-project && lc setup
# 3. Start the worker and dashboard
lc start && lc uiThe Kanban dashboard will be available at localhost:8090.
No CLI, no local DB, no UI required. Works on Windows, macOS, and Linux.
- Install Skill: Copy the
laneconductorfolder from.claude/skills/into your Claude Desktop skill directory. - Initialize: Open your project codebase and run the following within Claude:
/laneconductor setup
- Conduct: Manage your project entirely through the AI skill. Try these commands:
/laneconductor newTrack "Feature Name" "Short Description"/laneconductor plan NNN/laneconductor implement NNNCheckconductor/tracks.mdat any time for a project-wide summary.
Use the Claude Code skill to automatically scan your codebase and generate project documentation:
# Within Claude Code
/laneconductor setup scaffoldFor a deep dive into operating modes, CLI reference, and workflow configuration, visit the LaneConductor Knowledge Base.
bin/: The universallccommand-line tool.conductor/: Core orchestrator logic and heartbeat worker.ui/: Vite + React Kanban dashboard and Express API.cloud/: Firebase functions for remote/team mode..claude/skills/: The specialized AI skill definition for Claude.
This project is licensed under the MIT License - see the LICENSE file for details.

