Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub mateon01/aidlc-for-claude --plugin aidlc-for-claudeHow this command is triggered — by the user, by Claude, or both
Slash command
/aidlc-for-claude:aidlc-code-generationThe summary Claude sees in its command listing — used to decide when to auto-load this command
# AI-DLC: Code Generation (CONSTRUCTION Stage 5)
Generate code from approved design artifacts. Two-part: Planning then Execution.
## Execution
1. Load common rules from the `/aidlc` orchestrator command
2. This stage ALWAYS executes for each unit
### Part 1: Planning
3. Delegate to the `aidlc-code-planner` agent via Task tool (model: opus)
4. Pass context: aidlc-state.md, all design artifacts for the unit, RE artifacts (if brownfield)
5. Agent creates code plan in `aidlc-docs/construction/plans/{unit-name}-code-generation-plan.md`
6. Present approval gate for the plan
### Part 2: Execu.../buildExecutes implementation from a design file, generating and ordering tasks on-the-fly, then producing a build report with optional cross-model code review.
/coderImplements code strictly per an approved plan, running verification checks and generating a handoff summary for code review.
/buildExecutes implementation plan from docs/plans/ using TDD (RED-GREEN-REFACTOR), parallel agents for independent tasks, and 2-stage code reviews. Produces code, tests, atomic git commits, and review reports.
/buildImplements approved plan using TDD (RED-GREEN-REFACTOR per step), runs inline reviews, and produces test verification evidence.
/multi-executeOrchestrates a multi-model development pipeline: generates prototype patches via Codex/Gemini, refactors and implements using Claude, then performs audit and delivery.
Share bugs, ideas, or general feedback.
Generate code from approved design artifacts. Two-part: Planning then Execution.
/aidlc orchestrator commandaidlc-code-planner agent via Task tool (model: opus)aidlc-docs/construction/plans/{unit-name}-code-generation-plan.mdaidlc-code-generator agent via Task tool (model: sonnet)# Part 1
Task(subagent_type="aidlc-for-claude:aidlc-code-planner", model="opus",
prompt="Create code generation plan for unit [unit-name]. [context]")
# Part 2
Task(subagent_type="aidlc-for-claude:aidlc-code-generator", model="sonnet",
prompt="Execute the approved code plan for unit [unit-name]. [context]")