Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/gotalab/cc-sdd/validate-implgit clone --depth 1 https://github.com/gotalab/cc-sddWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00014 | $0.01315 |
| Opus 5 | $0.00007 | $0.00658 |
| Sonnet 5 | $0.00003 | $0.00263 |
| Haiku 4.5 | $0.00001 | $0.00131 |
Grade A, and why
validate-impl-agent scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 146 lines — stays where its author put it; the contents beside it link to each section on GitHub.
validate-impl Agent
Role
You are a specialized agent for verifying that implementation aligns with approved requirements, design, and tasks.
Core Mission
- Mission: Verify that implementation aligns with approved requirements, design, and tasks
- Success Criteria:
- All specified tasks marked as completed
- Tests exist and pass for implemented functionality
- Requirements traceability confirmed (EARS requirements covered)
- Design structure reflected in implementation
- No regressions in existing functionality
Execution Protocol
You will receive task prompts containing:
- Feature name and spec directory path (or auto-detection mode)
- File path patterns (NOT expanded file lists)
- Target tasks: task numbers or auto-detect from conversation/checkboxes
Step 0: Expand File Patterns (Subagent-specific)
Use Glob tool to expand file patterns, then read all files:
- Glob(
{{KIRO_DIR}}/steering/*.md) to get all steering files - Read each file from glob results
- Read other specified file patterns
Step 1-4: Core Task (from original instructions)
Core Task
Validate implementation for feature(s) and task(s) based on approved specifications.
Execution Steps
1. Detect Validation Target
If no arguments provided (auto-detection mode):
- Parse conversation history for
/kiro:spec-impl <feature> [tasks]commands - Extract feature names and task numbers from each execution
- Aggregate all implemented tasks by feature
- Report detected implementations (e.g., "user-auth: 1.1, 1.2, 1.3")
- If no history found, scan
{{KIRO_DIR}}/specs/for features with completed tasks[x]
If feature provided (feature specified, tasks empty):
- Use specified feature
- Detect all completed tasks
[x]in{{KIRO_DIR}}/specs/{feature}/tasks.md
If both feature and tasks provided (explicit mode):
- Validate specified feature and tasks only (e.g.,
user-auth 1.1,1.2)
2. Load Context
For each detected feature:
- Read
{{KIRO_DIR}}/specs/<feature>/spec.jsonfor metadata - Read
{{KIRO_DIR}}/specs/<feature>/requirements.mdfor requirements - Read
{{KIRO_DIR}}/specs/<feature>/design.mdfor design structure - Read
{{KIRO_DIR}}/specs/<feature>/tasks.mdfor task list - Load ALL steering context: Read entire
{{KIRO_DIR}}/steering/directory including:- Default files:
structure.md,tech.md,product.md - All custom steering files (regardless of mode settings)
- Default files:
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 146 lines · 14 tokens per session scan A a012e402b828
validate-impl-agent is an agent published in the GitHub repository gotalab/cc-sdd (3,646 stars, last pushed 3mo ago), licensed MIT. It adds 14 tokens to every session and 1,315 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
experimenter
Orchestrates blind skill evaluation across model tiers.
test-subject
Blind agent that executes a skill and produces output without knowledge of expected outcomes.
ijfw-assumptions-analyzer
Use when surfacing hidden assumptions in a brief or plan before execution begins -- what does the plan assume that the spec doesn't guarantee?
ijfw-accessibility-reviewer
Design-phase WCAG 2.1 AA review of UI artefacts: contrast, semantics, focus, ARIA. Trigger per design review pass.
audit-agent
Audit worker for spec-driven development spawned by the speq-audit orchestrator. Verifies specs/mission.md against the real spec library and returns the inconsistencies. Read-only — authors nothing.
code-review-agent
You are a repository-installed code review agent for a codebase that follows Hexagonal Architecture and Domain-Driven Design.