| name | requirements |
| description | Use when a spec has research or goal context and needs requirements. |
| argument-hint | [spec-name] |
| allowed-tools | Read Write Edit Bash Agent AskUserQuestion |
| disable-model-invocation | true |
Requirements Phase
Generate requirements for the active spec. Running this command implicitly approves research. You are a coordinator, not a product manager -- delegate ALL work to the product-manager subagent.
Coordinator Checklist
Complete these coordination steps in order; do not create user-facing implementation tasks from this checklist:
- Gather context -- resolve spec, read research and goal
- Interview -- brainstorming dialogue (skip if
--quick)
- Execute requirements -- dispatch product-manager via direct Agent; Agent Teams optional
- Artifact review -- spec-reviewer validation loop (only if
--quick)
- Walkthrough & approval -- display summary, get user approval
- Finalize -- update state, commit, stop
Step 1: Gather Context
- Run
curdx-flow snapshot --spec "$ARGUMENTS" when $ARGUMENTS begins with a spec name; otherwise run curdx-flow snapshot.
- If
snapshot.active is false, error: "No active spec. Run /curdx-flow:new first."
- Use
snapshot.spec.fsPath as $SPEC_PATH.
- Clear approval flag:
curdx-flow state merge "$SPEC_PATH/.curdx-state.json" '{"awaitingApproval":false}'
- Read context:
research.md (if exists), .progress.md, snapshot.state, snapshot.topology, original goal.
- Read
references/workflow-contract.md and references/agent-output-contract.md.
Step 2: Interview (skip if --quick)
Check if --quick appears in $ARGUMENTS. If present, skip to Step 3.
Read Context from .progress.md
Parse Intent Classification and prior interview responses to skip already-answered questions.
Intent-Based Question Counts:
- TRIVIAL: 1-2 | REFACTOR: 3-5 | GREENFIELD: 5-10 | MID_SIZED: 3-7
Brainstorming Dialogue
Apply adaptive dialogue from ${CLAUDE_PLUGIN_ROOT}/skills/interview-framework/SKILL.md. Ask context-driven questions one at a time.
Requirements Exploration Territory (hints, not a script):
- Primary users -- who will use this feature? Developers, end users, specific roles?
- Priority tradeoffs -- speed of delivery vs code quality vs feature completeness
- Success criteria -- what does success look like? Metrics, behaviors, user outcomes
- Scope boundaries -- what is explicitly out of scope for this iteration?
- Compliance or regulatory needs -- security, privacy, or regulatory considerations?
Requirements Approach Proposals
After dialogue, propose 2-3 scoping approaches. Examples (illustrative only):
- (A) Full feature set -- comprehensive user stories covering all use cases
- (B) MVP scope -- core user stories only, defer edge cases to v2
- (C) Phased delivery -- essential stories now, planned expansion later
Store Interview & Approach
Append to .progress.md under "Interview Responses":
### Requirements Interview (from requirements.md)
- [Topic 1]: [response]
- Chosen approach: [name] -- [brief description]
Pass combined context to delegation prompt as "Interview Context".
Step 3: Execute Requirements (Agent-Based, Teams Optional)
**Default path: use the normal `Agent` tool with `product-manager`. Do not require Agent Teams.**
Agent Teams are experimental and disabled by default in Claude Code. Use the team lifecycle only when CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 is set and the TeamCreate / TaskCreate / TaskList / SendMessage tools are visible in the current session. If any team tool is unavailable or fails, immediately continue with the direct Agent(agent_type: product-manager) path. Treat this as the normal path, not a degraded path.
Direct path:
- Optionally create a visible native task with
TaskCreate(subject: "Generate requirements for $spec", activeForm: "Generating requirements"). If unavailable or failing, continue without it.
- Dispatch
Agent(agent_type: product-manager) with research context, goal, and interview context. Instruct it to create user stories with acceptance criteria, functional requirements (FR-), non-functional requirements (NFR-), glossary, out-of-scope, dependencies. Output to ./specs/$spec/requirements.md.
- Wait for the Agent result, then read
./specs/$spec/requirements.md.
Optional Agent Teams path:
TeamDelete() once to release any stale team; errors are harmless.
TeamCreate(team_name: "requirements-$spec")
TaskCreate(subject: "Generate requirements for $spec", activeForm: "Generating requirements")
Agent(agent_type: product-manager, team_name: "requirements-$spec", name: "pm-1") with the same prompt as the direct path.
- Wait via automatic teammate messages or a single
TaskList check.
SendMessage(type: "shutdown_request", recipient: "pm-1")
- Read
./specs/$spec/requirements.md, then TeamDelete().
Step 4: Artifact Review (only in --quick mode)
**Review loop must complete before walkthrough. Max 3 iterations.**
If NOT --quick, skip to Step 5.
Invoke spec-reviewer via Agent tool. Follow the standard review loop:
- REVIEW_PASS: log to .progress.md, proceed
- REVIEW_FAIL (iteration < 3): log, re-invoke product-manager with feedback, loop
- REVIEW_FAIL (iteration >= 3): graceful degradation, log warning, proceed
- No signal: treat as REVIEW_PASS (permissive)
Review delegation: Include full requirements.md content, iteration count, prior findings. Upstream: research.md.
Revision delegation: Re-invoke product-manager with reviewer feedback. Focus on specific issues.
Error handling: Reviewer no signal = REVIEW_PASS. Agent failure = retry once, then use original.
Step 5: Walkthrough & Approval
**WALKTHROUGH IS REQUIRED - DO NOT SKIP.**
Read ./specs/$spec/requirements.md and display:
Requirements complete for '$spec'.
Output: $PWD/specs/$spec/requirements.md
## What I Created
**Goal**: [1 sentence summary]
**User Stories** ([count] total):
- US-1: [title]
- US-2: [title]
- US-3: [title]
[list all, keep titles brief]
**Requirements**: [X] functional, [Y] non-functional
User Approval (skip if --quick)
If --quick, skip to Step 6.
Ask ONE question: "How do you want to proceed?" with these options via AskUserQuestion:
- Approve (Recommended) -- Accept artifact as-is, advance to next phase
- Run review -- Spawn spec-reviewer to validate against rubrics, show findings, then loop back to this choice
- Request changes -- Provide specific feedback to revise the artifact
If "Approve": proceed to Step 6.
If "Run review": Invoke spec-reviewer via Agent tool with full requirements.md content (upstream: research.md). Display findings table. If REVIEW_PASS, note it. If REVIEW_FAIL, show feedback. Then loop back to this same 3-choice question (user decides next action).
If "Request changes" or "Other":
- Ask what to change
- Re-invoke product-manager with direct
Agent(agent_type: product-manager) and feedback; use the optional team lifecycle only if Agent Teams are enabled and available
- Re-display walkthrough, ask again with same 3 choices. Loop until approved.
Step 6: Finalize
Update State
- Merge into
.curdx-state.json (preserve all existing fields):
curdx-flow state merge \
"$SPEC_PATH/.curdx-state.json" '{"phase":"requirements","awaitingApproval":true}'
- Update
.progress.md: mark research as implicitly approved, set current phase
Commit Spec (if enabled)
Read commitSpec from .curdx-state.json. If true:
git add ./specs/$spec/requirements.md
git commit -m "spec($spec): add requirements"
git push -u origin $(git branch --show-current)
If commit or push fails, display warning but continue.
Stop
**STOP HERE. DO NOT PROCEED TO DESIGN.**
(Does not apply in --quick mode.)
- Display:
-> Next: Run /curdx-flow:design
- End your response immediately
- Wait for user to explicitly run
/curdx-flow:design