speckit-converge

Assess codebase against spec, plan, and tasks, then append remaining work to tasks.md.

Updated May 28, 2026
One-click install
npx skills add https://github.com/whw23/PingoGate --skill speckit-converge-whw23
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: speckit-converge
Source: https://github.com/whw23/PingoGate/tree/main/.claude/skills/speckit-converge
Command: npx skills add https://github.com/whw23/PingoGate --skill speckit-converge-whw23

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? After running an implementation pass, teams often cannot tell whether the code actually satisfies everything the spec, plan, and tasks demanded. This Skill closes that gap by auditing the current codebase against the feature's spec.md, plan.md, and tasks.md, then appending any unbuilt or incomplete work as new traceable tasks so the implement step can finish the job. ## Core Features & Use Cases - Gap Assessment: Builds an intent inventory from functional requirements, success criteria, acceptance scenarios, plan decisions, and constitution principles, then classifies each finding as missing, partial, contradicts, or unrequested. - Severity Grading: Ranks findings CRITICAL through LOW, with constitution MUST violations treated as the highest severity. - Append-Only Task Generation: Appends a new numbered Convergence phase to tasks.md with zero-padded task IDs, never rewriting or renumbering existing tasks. - Extension Hooks: Supports optional and mandatory before_converge and after_converge hooks declared in .specify/extensions.yml. - Use Case: After /speckit-implement finishes, run this Skill to verify FR-008 is actually enforced in code; if not, a new task like "T042 Add append-only enforcement per FR-008 (missing)" is appended for the next implement pass. ## Quick Start Ask the agent to run the speckit-converge skill to check the current codebase against the feature spec and append any remaining work to tasks.md.

Frequently Asked Questions about speckit-converge

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I verify my code matches the spec after implementation?▼

Run the converge command after /speckit-implement completes. It reads spec.md, plan.md, and tasks.md as the source of intent, inspects the code in scope, and appends any remaining work as new tasks to tasks.md.

How to find missing requirements in a spec-kit project?▼

The converge workflow builds an intent inventory from functional requirements, success criteria, and acceptance scenarios, then classifies each gap as missing, partial, contradicts, or unrequested with severity levels from CRITICAL to LOW.

Does speckit-converge modify existing tasks or code?▼

No. It is strictly append-only: it adds a new Convergence phase section to the end of tasks.md and never rewrites, renumbers, or deletes existing tasks, nor does it modify spec.md, plan.md, or any application code.

What happens if the codebase already satisfies the spec?▼

The command leaves tasks.md byte-for-byte unchanged and reports a converged result with summary counts of requirements, plan decisions, and constitution principles checked. It then recommends proceeding to review or opening a PR.

When should I run converge in the spec-kit workflow?▼

Run it only after /speckit-tasks has produced a complete tasks.md and /speckit-implement has executed on it. It requires the .specify directory structure and stops with a clear message if spec.md, plan.md, or tasks.md is missing.