Make AI Your Pair Programming Partner — Structured Task Workflow Template
Codex Composer is a lightweight workflow template that helps your Codex collaborate in a structured and traceable way.
No more endless back-and-forth chats. Instead, you get:
- Task-driven — Every requirement becomes a trackable task card
- State-driven — Clear workflow states (planned → in-progress → verifying → done)
- Evidence preserved — Automatic logging of decisions, verification results, and debug sessions
- Complex project support — Plan Mode lets AI coordinate multi-task projects
# Install into an existing project
curl -fsSL https://raw.githubusercontent.com/mo2g/codex-composer/main/install.sh | bash -s -- --repo . --template existingAfter installation, your project gets:
my-project/
├── AGENTS.md # AI assistant entry point (references workflow guide)
├── CODEX-COMPOSER.md # Complete usage guide
└── .agents/skills/ # AI skill library
├── planner/ # Task planning
├── implementer/ # Code implementation
├── change-check/ # Change verification
├── debug-investigation/ # Debug investigation
└── task-orchestrator/ # Multi-task coordination
Tell your AI:
"Use the planner skill to create a task card for implementing user login"
The AI will:
- Create a task card (requirements + acceptance criteria)
- Implement the code step by step
- Verify and record results
"This feature needs 3 PRs to complete. Launch Plan Mode."
The AI will:
- Create an Epic card and break down tasks
- Coordinate execution order of subtasks
- Track dependencies
| Feature | Description |
|---|---|
| Non-intrusive | Only adds .agents/ and docs, zero dependencies, doesn't affect existing code |
| Upgradable | One-command skill library upgrade, preserves your project config |
| Dual Mode | Single-task quick mode + multi-task Plan Mode |
| Debug-friendly | Dedicated debug investigation flow for root cause tracking |
| Resume work | resume-work skill lets AI pick up unfinished tasks |
# Preview upgrade
curl -fsSL https://raw.githubusercontent.com/mo2g/codex-composer/main/install.sh | bash -s -- --repo . --template existing --upgrade --dry-run
# Apply upgrade
curl -fsSL https://raw.githubusercontent.com/mo2g/codex-composer/main/install.sh | bash -s -- --repo . --template existing --upgrade- Quick Start — Read
CODEX-COMPOSER.mdafter installation - Workflow Spec —
docs/codex-task-card-workflow.md - Debug Mode —
docs/codex-debug-workflow.md - Upgrade Guide —
docs/codex-upgrade-guide.md
# Clone and test
git clone https://github.com/mo2g/codex-composer.git
cd codex-composer
npm install
npm testMIT License — Free to use, contributions welcome!