You conduct. Agents perform.
A skill for orchestrating coding sub-agents (Claude Code, Codex, Cursor, Gemini Code, and more) to maximize throughput on implementation tasks. Keep your orchestrating session lean β it plans, decides, and validates. Sub-agents do the execution.
- π€ Agent-agnostic β works with Claude Code, Codex, Cursor, Gemini Code, or any CLI-based coding agent
- π Ready-to-use dispatch template β copy, fill in, send
- π Parallel coordination patterns β data sharding, division of labor, hybrid pipelines
- β»οΈ Checkpoint / resume β built-in pattern for batch tasks > 100 items
- β Acceptance checklist β never trust "done" without verifying
npx @lobehub/market-cli skills install agent-conductor --agent open-claw
# or for Claude Code:
npx @lobehub/market-cli skills install agent-conductor --agent claude-code# OpenClaw
git clone https://github.com/AICodeLion/agent-conductor ~/.openclaw/workspace/skills/agent-conductor
# Claude Code
git clone https://github.com/AICodeLion/agent-conductor .claude/skills/agent-conductor
# Codex
git clone https://github.com/AICodeLion/agent-conductor .agents/skills/agent-conductor- Pick your agent β set your invoke command (e.g.
claude,codex,cursor-agent) - Fill the dispatch template from
SKILL.md - Choose execution mechanism based on estimated duration (< 5 min / 5β30 min / > 30 min)
- Run the acceptance checklist after completion
Dispatch when the task involves:
- Writing or modifying files (even one line)
- Running scripts or processing data
- Execution time > 10 seconds
- Batch operations over multiple items
See references/patterns.md for:
- Data sharding across parallel agents
- Division of labor between agents
- Serial pipelines with dependencies
- Hybrid patterns (serial + parallel)
- Checkpoint/resume for long batch tasks
- Domain examples: data science, web dev, document processing
| Agent | Invoke Command |
|---|---|
| Claude Code | claude '<task>' |
| OpenAI Codex | codex '<task>' |
| Cursor Agent | cursor-agent '<task>' |
| Gemini Code | gemini-code '<task>' |
| Custom | your-agent-cmd '<task>' |
MIT