I built a live Kanban control plane for Gemini CLI conductor — shared context, real-time board, cross-agent handoff #22041
meller
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Post Draft — Gemini CLI Discussion
Category: Show and tell
Title: I built a live Kanban control plane for Gemini CLI conductor — shared context, real-time board, cross-agent handoff
Post Body
I was running Gemini CLI with the conductor format for task tracking, and Claude Code with superpowers skills for implementation — also inspired by OpenClaw's approach. All great tools, but completely siloed. No shared context between the agents, no visibility into what each was doing, and if one LLM exhausted mid-task there was no clean handoff to the other.
I wanted one thing: a unified view where both agents share the same context, and I can see what's happening without reading terminal output.
LaneConductor is that layer — a live Kanban board (localhost:8090) that updates in real-time as your agents work, backed by a shared Markdown context that both Claude and Gemini read and write.
It works natively with the Gemini CLI conductor format — if you're already using
conductor/tracks/folders, LaneConductor picks them up automatically. No migration, no config changes.This is built on context-driven development: all state lives in Markdown files (
plan.md,spec.md,index.md) rather than in any LLM's context window. That means if Claude exhausts mid-task, Gemini opens the same files and continues from exactly the same point — no lost work, no restarting from scratch. The files are the shared context and the checkpoint.Four ways to use it:
npx laneconductororlccommands to create tracks, check status, move lanes/laneconductor plan,/laneconductor implement,/laneconductor reviewdirectly inside Claude CodeWhat it does:
conductor/tracks/files every 2s3-command install:
→ GitHub: https://github.com/meller/laneconductor
Happy to answer questions — running this daily across 3 repos with Claude and Gemini simultaneously.
Beta Was this translation helpful? Give feedback.
All reactions