claude-lane-stack

(★ 112)

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

File Explorer

  • .gitignore
  • CHANGELOG.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • install.sh
  • LICENSE
  • llms.txt
  • README.md
  • README.ru.md
  • SECURITY.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

agy

View Details ▼

An agentic development platform by Google.

agy {{path/to/file_or_directory}}

Open a specific file or directory:

agy {{[-d|--diff]}} {{path/to/file1}} {{path/to/file2}}

Compare two files with each other:

agy chat "{{prompt}}"

Pass in a prompt to run in a chat session in the current working directory:

🔍

claude

View Details ▼

An agent-based coding tool that understands your code base and helps you code faster through natural language commands.

claude prompt

Execute with prompt:

claude update

Update `claude`:

claude mcp list

Get the list of specified MCP servers:

🔍

codex

View Details ▼

Natural language code assistant for the terminal, powered by OpenAI.
Reads and edits files in your current directory to fulfill requests.

codex

Start an interactive Codex session in the current directory:

codex "{{prompt}}"

Run a single Codex command using a prompt:

codex --sandbox workspace-write "{{prompt}}"

Run a prompt allowing Codex to edit files in the workspace:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

qwen

View Details ▼

Launch an interactive prompt with Qwen3-Coder.
See also: `gemini`.

qwen

Start a REPL session to chat interactively:

{{echo "Summarize the history of Rome"}} | qwen {{[-p|--prompt]}}

Send the output of another command to Qwen and exit immediately:

qwen {{[-m|--model]}} {{model_name}}

Override the default model (default: qwen3-coder-max):

🔍

flock

View Details ▼

Manage file locks from shell scripts.
It can be used to ensure that only one instance of a command is running.

flock {{path/to/lock.lock}} {{command}}

Run a command with a file lock as soon as the lock is available:

flock {{[-n|--nonblock]}} {{path/to/lock.lock}} {{command}}

Run a command with a file lock, or exit if the lock is currently being held (with exit code 1):

flock {{[-n|--nonblock]}} {{[-E|--conflict-exit-code]}} {{123}} {{path/to/lock.lock}} {{command}}

Run a command with a file lock, or exit with a specific error code if the lock is currently being held:

// repository documentation