speckit.product-forge.verify-full

speckit.product-forge.verify-full is a command for Claude Code from VaiYav/speckit-product-forge. It costs 122 tokens per session (7,549 once invoked), scanned A, original, MIT.

A read-only final check that compares a built feature with its research, requirements, plans, tasks, design, and code. Traceability means being able to follow each requirement through the work that implements and tests it.

In plain words
What is it for?
Use it as a quality gate after implementation to inspect the full Product Forge chain. It can also create a dry-run report without changing the feature’s status.
Why use it?
A feature can appear finished while parts of its specification, user journeys, interface, server behavior, or documentation are missing or inconsistent. This check exposes those gaps before completion.

Command for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT variable.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the speckit-product-forge plugin — 31 commands shipped together

Good fit Use it as a quality gate after implementation to inspect the full Product Forge chain. It can also create a dry-run report without changing the feature’s status.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add VaiYav/speckit-product-forge
Claude Code
/plugin install speckit-product-forge

Made for: Claude Code.

Or install speckit-product-forge, the plugin that ships this one along with the rest of its 31 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for speckit.product-forge.verify-full

README.md
[![agentmods](https://agentmods.dev/badge/commands/vaiyav/speckit-product-forge/verify-full/github.svg)](https://agentmods.dev/commands/vaiyav/speckit-product-forge/verify-full)
Your own site
<a href="https://agentmods.dev/commands/vaiyav/speckit-product-forge/verify-full"><img src="https://agentmods.dev/badge/commands/vaiyav/speckit-product-forge/verify-full/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for speckit.product-forge.verify-full

Your own site · 80×15
<a href="https://agentmods.dev/commands/vaiyav/speckit-product-forge/verify-full"><img src="https://agentmods.dev/badge/commands/vaiyav/speckit-product-forge/verify-full.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 122 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 7,549 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00122 $0.07549
Opus 5 $0.00061 $0.03775
Sonnet 5 $0.00024 $0.01510
Haiku 4.5 $0.00012 $0.00755

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

Security

Grade A, and why

speckit.product-forge.verify-full 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 9d 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/verify-full.md · 705 lines

How it starts

The opening of the file, as written. The whole thing — 705 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Product Forge — Phase 7: Full Verification

You are the Full Traceability Verifier for Product Forge Phase 7. Your goal: validate that what was built matches what was specified, planned, and researched — across the entire Product Forge chain. This is the final quality gate before the feature is considered done.

STRICTLY READ-ONLY. Do not modify any source files. Output a structured report only.

User Input

$ARGUMENTS

If $ARGUMENTS contains --dry-run, honor docs/runtime.md §7: write verify-report.md and any gate-review.md additions under {FEATURE_DIR}/.forge-dry-run/verify/, record no status change, emit a DRY-RUN-REPORT.md, and make no external side-effect.


Step 0: Deterministic pre-gate (W5-A1)

Before the LLM layers run, execute the deterministic structural validator (it is fast, reproducible, and CI-friendly — it catches the "callout-deep" linkage gaps that prose review misses):

PLUGIN_ROOT="${CLAUDE_PLUGIN_ROOT:-$(specify extension path product-forge 2>/dev/null || echo .)}"
node "$PLUGIN_ROOT/scripts/validate-traceability.js" --feature-dir {FEATURE_DIR} --json

$PLUGIN_ROOT is resolved per docs/runtime.md §1A. If the script is unreachable (not installed / older host), emit a WARNING and proceed directly to the LLM verify layers below — the structural pre-gate is an accelerator, not a hard dependency.

It traverses traceability.yml (+ journeys.yml / spec.md / tasks.md) and asserts the structural half of the chain: every must_have row reaches a task/code/test (phase-aware), no orphan task, every Must-Have journey + P0/P1 edge has a test, every NFR has a measurable signal, plus a weak-word lint. It is the deterministic counterpart to Layers 1–4/7/9/10 below — run it first and treat any errors it reports as blocking. The LLM layers then add the semantic half (is an AC genuinely measurable, is the code actually correct) that a script cannot judge. If the script is absent or the feature has no traceability.yml yet, skip silently and proceed to the LLM layers.

Read the full file on GitHub · 705 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. 9d ago First seen · 705 lines · 122 tokens per session scan A 26c08101a5f8

Subscribe to this mod's changes

speckit.product-forge.verify-full is a command published in the GitHub repository VaiYav/speckit-product-forge (23 stars, last pushed 15d ago), licensed MIT. It adds 122 tokens to every session and 7,549 once invoked, about $0.0006 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.