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 commands/jsegov/shipspec-claude-code-plugin/implement-featuregit clone --depth 1 https://github.com/jsegov/shipspec-claude-code-pluginWhat 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.00010 | $0.05589 |
| Opus 5 | $0.00005 | $0.02795 |
| Sonnet 5 | $0.00002 | $0.01118 |
| Haiku 4.5 | $0.00001 | $0.00559 |
Grade A, and why
implement-feature 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 — 647 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Implement Feature: $ARGUMENTS
Automatically implement ALL tasks in a feature's TASKS.json file end-to-end. After all tasks are complete, run a comprehensive review against PRD, SDD, and all acceptance criteria.
Step 0: Validate Argument
If $ARGUMENTS is empty or missing:
"Error: Feature name is required.
Usage:
/implement-feature <feature-name>The feature name should match the name used with
/feature-planning.To see available features:
ls .shipspec/planning/ ```"
Stop here - do not proceed without an argument.
Step 1: Locate Feature Directory
Check that the feature directory exists:
ls -d .shipspec/planning/$ARGUMENTS 2>/dev/null || echo "NOT_FOUND"
If NOT_FOUND:
"No directory found for '$ARGUMENTS' at
.shipspec/planning/$ARGUMENTS.Please run
/feature-planning $ARGUMENTSfirst to create the planning artifacts."
Check for required planning artifacts:
echo "=== Checking planning artifacts ==="
ls .shipspec/planning/$ARGUMENTS/TASKS.json 2>/dev/null || echo "TASKS.json NOT FOUND"
ls .shipspec/planning/$ARGUMENTS/PRD.md 2>/dev/null || echo "PRD.md NOT FOUND"
ls .shipspec/planning/$ARGUMENTS/SDD.md 2>/dev/null || echo "SDD.md NOT FOUND"
If any artifact missing:
"Missing required planning artifacts for '$ARGUMENTS':
- [List missing files]
Run
/feature-planning $ARGUMENTSto generate them."
Step 2: Load, Parse, and Validate Tasks
Delegate to the task-manager agent with:
- Feature name: $ARGUMENTS
- Operation:
parse
If error (TASKS.json not found or empty): Show the error message from task-manager and stop.
If successful: Use the task map and statistics from the response.
Next, validate the task structure by delegating to task-manager with:
- Feature name: $ARGUMENTS
- Operation:
validate
If INVALID: Show all issues from the validation result (circular dependencies, multiple in-progress, invalid references) and stop.
If VALID: Tell the user:
"## Feature: $ARGUMENTS
Found X tasks total. Y completed, Z remaining.
Starting automatic implementation..."
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 · 647 lines · 10 tokens per session scan A 9c4c08357b30
implement-feature is a command published in the GitHub repository jsegov/shipspec-claude-code-plugin (20 stars, last pushed 7mo ago), licensed MIT. It adds 10 tokens to every session and 5,589 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 commands, from other repositories
kiro-steering-custom
Command "kiro-steering-custom" from gotalab/cc-sdd, covering kiro custom steering creation, workflow, available templates, steering principles and tool guidance.
bench-capture
Score the 2 bench variant folders for one size (build/acceptance/regression/conventions/capture + rubric + cross-solution review), record, report, and reset.
autospec.plan
Generate YAML implementation plan from feature specification.
kiro-validate-design
Command "kiro-validate-design" from gotalab/cc-sdd, covering technical design validation, core task, execution steps, important constraints and tool guidance.
deploy
Build, test, deploy with staged rollout.
superpowers-execute
Execute the current GSD phase plan with Superpowers instead of gsd-execute-phase.