claude-lane-stack

by VKirillVerified

Multi-agent AI coding factory for one person — Claude Code PM + Codex/Qwen/Grok/Kimi/AGY writers, durable conveyor, auto-merge to main

112
Stars
0
Forks
Python
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/VKirill/claude-lane-stack

Getting Started

Guides for using skills like claude-lane-stack.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Claude Lane Stack

A small AI coding factory for one person

One human. One AI project manager. Real CLI coding agents on a durable conveyor.

Talk to Claude Code — it runs Codex / Qwen / Grok / Kimi / AGY, checks work, merges to main, reviews at night.

🏭 Factory, not five chats 🛡️ Owned paths 🌙 Night review 📦 Auto-merge to main

One PM holds context Writers stay in their lane Independent Codex Sol rail You never merge by hand

✨ Why this exists

Working with AI coding tools usually means: five windows, copy-paste, midnight merges, and zero review discipline.

Claude Lane Stack turns that into a conveyor — plain files + git, no mandatory cloud DB.

😩 Typical AI coding ✨ Lane Stack

Re-explain context every chat One PM holds the plan

Models overwrite each other owns_paths on every task

Nobody reviews the AI Typed night shift (review → fix → re-review)

You merge branches PM merges main after checks

“What were we doing?” resume-project → Now / Blocked / Next

Jobs die at ~2 min Bash Detached processes (survive chat close)

[!TIP] New here? Start with the Beginner guide — zero jargon, factory metaphors.

🔌 CLI agents we plug into

This is not “one model does everything.”

The stack is a control plane that runs real CLI coding agents as durable processes.

CLI Required? Role

Claude Code Yes PM (dev-orchestrator), watchers, chat with you

OpenAI Codex CLI Optional Day writer · night Sol review · onboard · docs · emergency

Qwen Code Optional Daytime durable writer

Grok (xAI CLI) Optional Daytime durable writer

Kimi CLI Optional Daytime durable writer (often full-profile default)

AGY (Gemini-oriented) Optional Daytime durable writer

You ──chat──►  Claude Code · dev-orchestrator          ← always
                        │
              run-supervisor + run-controller
          ┌─────┬─────┬─────┬─────┐
          ▼     ▼     ▼     ▼     ▼
       Codex  Qwen  Grok  Kimi   AGY
          │     │     │     │     │
          └─────┴─────┴─────┴─────┘
                        │
              owns → L1 verify → acceptance → main
  • Mix and match — install what you pay for; agents-doctor / adoc builds the profile

  • One protocol — owns, verify, acceptance.json, progressive accept

  • Switch writer — change main_write in adoc (e.g. codexqwen)

  • Codex for night quality when available

Profile Writers Review

claude-only Claude only light

claude-codex Codex process Codex Sol night

claude-qwen / grok / kimi / agy that CLI as configured

full multi-writer ready Codex night

🧠 How it works (60 seconds)

You (chat)  →  PM (dev-orchestrator)
                  │  plan-critique · task YAML in .agents/runs/
                  ▼
            run-supervisor   ← Claude watches one run
                  │
                  ▼
            run-controller   ← durable OS process
                  │
                  ▼
         writer CLI process  ← codex / qwen / grok / …
                  │
                  ▼
         owns → L1 tests → acceptance.json
                  │
                  ▼
            PM merges → main → (night) Codex review

You don’t hand-launch “Qwen the coder” for normal work.

You talk to the PM. The PM starts the conveyor. The writer is a background process, not a random brand-named subagent.

☀️ Day vs 🌙 night

Day Night

Goal Ship fast Independent quality

Product code Writer from adoc Repair after findings

Watch run-supervisor night-shift

LLM review every commit? No Yes — Codex Sol

Done acceptance.json + main Finding fixed + re-review

🎭 Who is who

Role Kind Does

You Human Say what you want

dev-orchestrator Claude agent (PM) Plan · dispatch · merge · chat

run-supervisor Claude (watch) One run until accepted/blocked

run-controller OS process DAG · retry · owns/verify/accept

Writer process CLI (Codex/Qwen/…) Implements the task card

lane-supervisor Claude (1 action) Typed lane-ctl recovery

emergency-writer Claude → Codex After terminal block only

night-reviewer / night-shift Codex Sol Night review + findings

project-onboarder Codex Project passport

docs-maintainer Codex Docs refresh

Built-ins Claude may also use: Explore, Plan, general-purpose (research / side tasks — not the daytime product conveyor).

Aliases: codex-implementeremergency-writer, etc. → agents/claude/README.md

📋 Task card = contract

Every unit of work lives under .agents/runs/<slug>/tasks/*.yaml:

Field Meaning

owns_paths Files this task may touch

verification[] Focused L1 checks

lane: Matches adoc main_write

Receipts report → owns → verify → acceptance.json

[!IMPORTANT] No acceptance.jsonnot done. Chat green ≠ shipped.

🚀 Quick start

① Install once

git clone https://github.com/VKirill/claude-lane-stack.git
cd claude-lane-stack && git checkout v1.14.16   # or: main
./install.sh
export PATH="$HOME/.agents/bin:$PATH"

Needs: Claude Code · Git · Python 3 (+ PyYAML/jsonschema) · Node · rsync · flock

Optional: Codex · Qwen · Grok · Kimi · AGY · Linux: bubblewrap

② Prepare your project once

cd /path/to/your-project
agents-doctor --apply .     # or: adoc

③ Start the PM

# if you use the host launcher:
cc                          # menu → 1 = dev-orchestrator

# or raw:
claude --agent dev-orchestrator --name lane-pm-myproject

In chat When

/project-onboard First time on a repo

/resume-project After a break

“Add dark mode to settings” Normal feature work

⚙️ adoc (simple)

Knob Meaning

Writer main_write codex / qwen / grok / kimi / agy

Model / effort e.g. Codex luna + max

Fast mode Codex service_tier: fast

Workspace in_place · worktree · auto

Plan critique off · structural · LLM before dispatch

🧰 Commands cheat sheet

Command Purpose

agents-doctor / adoc Detect CLIs · write profile

resume-project . Now / Blocked / Next

run-init · run-validate · run-board Runs (usually via PM)

run-controller start|watch|status Durable lifecycle

lane-ctl … Typed control plane

night-shift · night-shift-all Night review/repair

plan-critique --run-dir … Plan quality gate

❓ FAQ

No. Claude Code alone works (claude-only). Each extra CLI is a pluggable writer (or Codex review rail).

A built-in Claude Code subagent for multi-step side tasks (docs). PM may use it for research. Product features still go through the conveyor.

Claude Code host limit. Write

Frequently Asked Questions

What is claude-lane-stack?

claude-lane-stack is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by VKirill. Multi-agent AI coding factory for one person — Claude Code PM + Codex/Qwen/Grok/Kimi/AGY writers, durable conveyor, auto-merge to main. It has 112 GitHub stars.

Is claude-lane-stack safe to use?

Yes. claude-lane-stack passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install claude-lane-stack?

Clone the repository with "git clone https://github.com/VKirill/claude-lane-stack" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is claude-lane-stack written in?

claude-lane-stack is primarily written in Python. It is open-source under VKirill on GitHub, so you can review or fork the full source.

Are there alternatives to claude-lane-stack?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh claude-lane-stack against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details