/validate-impl
Validate implementation against requirements, design, and tasks
$ npx -y skills add gotalab/cc-sdd --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/validate-impl
Context preview
What this command does when you run it.
Validate implementation against requirements, design, and tasks
Command definition
validate-impl.mddescription: Validate implementation against requirements, design, and tasks
allowed-tools: Read, Task
argument-hint: [feature-name] [task-numbers]
Implementation Validation
Parse Arguments
- Feature name: `$1` (optional)
- Task numbers: `$2` (optional)
Auto-Detection Logic
**Perform detection before invoking Subagent**:
**If no arguments** (`$1` empty):
- Parse conversation history for `/kiro:spec-impl <feature> [tasks]` patterns
- OR scan `{{KIRO_DIR}}/specs/*/tasks.md` for `[x]` checkboxes
- Pass detected features and tasks to Subagent
**If feature only** (`$1` present, `$2` empty):
- Read `{{KIRO_DIR}}/specs/$1/tasks.md` and find all `[x]` checkboxes
- Pass feature and detected tasks to Subagent
**If both provided** (`$1` and `$2` present):
- Pass directly to Subagent without detection
Invoke Subagent
Delegate validation to validate-impl-agent:
Use the Task tool to invoke the Subagent with file path patterns:
Task(
subagent_type="validate-impl-agent",
description="Validate implementation",
prompt="""
Feature: {$1 or auto-detected}
Target tasks: {$2 or auto-detected}
Mode: {auto-detect, feature-all, or explicit}
File patterns to read:
- {{KIRO_DIR}}/specs/{feature}/*.{json,md}
- {{KIRO_DIR}}/steering/*.md
Validation scope: {based on detection results}
"""
)Display Result
Show Subagent summary to user, then provide next step guidance:
Next Steps Guidance
**If GO Decision**:
- Implementation validated and ready
- Proceed to deployment or next feature
**If NO-GO Decision**:
- Address critical issues listed
- Re-run `/kiro:spec-impl <feature> [tasks]` for fixes
- Re-validate with `/kiro:validate-impl [feature] [tasks]`
**Note**: Validation is recommended after implementation to ensure spec alignment and quality.
Read more
description: Validate implementation against requirements, design, and tasks allowed-tools: Read, Task argument-hint: [feature-name] [task-numbers]
Implementation Validation
Parse Arguments
- Feature name: `$1` (optional)
- Task numbers: `$2` (optional)
Auto-Detection Logic
**Perform detection before invoking Subagent**:
**If no arguments** (`$1` empty):
- Parse conversation history for `/kiro:spec-impl <feature> [tasks]` patterns
- OR scan `{{KIRO_DIR}}/specs/*/tasks.md` for `[x]` checkboxes
- Pass detected features and tasks to Subagent
**If feature only** (`$1` present, `$2` empty):
- Read `{{KIRO_DIR}}/specs/$1/tasks.md` and find all `[x]` checkboxes
- Pass feature and detected tasks to Subagent
**If both provided** (`$1` and `$2` present):
- Pass directly to Subagent without detection
Invoke Subagent
Delegate validation to validate-impl-agent:
Use the Task tool to invoke the Subagent with file path patterns:
Task(
subagent_type="validate-impl-agent",
description="Validate implementation",
prompt="""
Feature: {$1 or auto-detected}
Target tasks: {$2 or auto-detected}
Mode: {auto-detect, feature-all, or explicit}
File patterns to read:
- {{KIRO_DIR}}/specs/{feature}/*.{json,md}
- {{KIRO_DIR}}/steering/*.md
Validation scope: {based on detection results}
"""
)Display Result
Show Subagent summary to user, then provide next step guidance:
Next Steps Guidance
**If GO Decision**:
- Implementation validated and ready
- Proceed to deployment or next feature
**If NO-GO Decision**:
- Address critical issues listed
- Re-run `/kiro:spec-impl <feature> [tasks]` for fixes
- Re-validate with `/kiro:validate-impl [feature] [tasks]`
**Note**: Validation is recommended after implementation to ensure spec alignment and quality.
Repo: gotalab/cc-sdd
Other commands on cc-sdd.
- /spec-design
Create comprehensive technical design for a specification
Open command - /spec-impl
Execute spec tasks using TDD methodology
Open command - /spec-init
Initialize a new specification with detailed project description
Open command - /spec-quick
Quick spec generation with interactive or automatic mode
Open command - /spec-requirements
Generate comprehensive requirements for a specification
Open command - /spec-status
Show specification status and progress
Open command

