implement-feature

A command that implements every planned task for a feature from start to finish. A feature is a distinct product change, such as adding user accounts or exporting data.

In plain words
What is it for?
Use it to run all tasks listed in a feature's TASKS.json file and review the result against the product requirements, technical design, and acceptance criteria.
Why use it?
It removes the repetitive work of starting each task separately and checking the whole feature against its requirements afterward.

Command

Install

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.

agentmods
npx agentmods add commands/jsegov/shipspec-claude-code-plugin/implement-feature
Clone the repo
git clone --depth 1 https://github.com/jsegov/shipspec-claude-code-plugin
Per session 10 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 5,589 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce 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

Measured 2d ago against content hash 9c4c08357b30, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

commands/implement-feature.md · 647 lines

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 $ARGUMENTS first 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 $ARGUMENTS to 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..."

Read the full file on GitHub · 647 lines

Changes

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.

  1. 2d ago First seen · 647 lines · 10 tokens per session scan A 9c4c08357b30

Subscribe to this mod's changes

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.