speckit-converge

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

Updated Aug 15, 2026
One-click install
npx skills add https://github.com/AhmedRagabRG/academy --skill speckit-converge-ahmedragabrg
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: speckit-converge
Source: https://github.com/AhmedRagabRG/academy/tree/main/frontend/.agents/skills/speckit-converge
Command: npx skills add https://github.com/AhmedRagabRG/academy --skill speckit-converge-ahmedragabrg

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 promised. 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: Compares functional requirements, acceptance criteria, plan decisions, and constitution principles against the actual code, classifying findings as missing, partial, contradicts, or unrequested. - Append-Only Task Generation: Adds a new numbered Convergence phase to tasks.md with severity-ordered, source-traceable tasks, never rewriting or renumbering existing tasks. - Constitution Enforcement: Treats violations of MUST principles in .specify/memory/constitution.md as critical findings requiring remediation tasks. - Use Case: After running /speckit-implement on a feature, run this Skill to discover that FR-008's validation logic was never built; it appends a task like "T042 Add input validation per FR-008 (missing)" so the next implement pass completes it. ## Quick Start Run the speckit-converge skill to check my current feature implementation against its spec, plan, and tasks 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 check if my implementation matches the spec in spec-kit?▼

Run the speckit-converge command after /speckit-implement. It reads spec.md, plan.md, and tasks.md as the source of intent, inspects the current code, and reports findings classified as missing, partial, contradicts, or unrequested.

How does speckit-converge handle remaining unbuilt work?▼

It appends a new "Phase N: Convergence" section to the end of tasks.md with one checklist item per finding, ordered by severity. Each task gets a new zero-padded ID and traces back to its source requirement, such as FR-003 or US1/AC2.

Does speckit-converge modify existing tasks or code?▼

No. It is strictly append-only: it never rewrites, renumbers, or deletes existing tasks, never touches spec.md or plan.md, and never modifies application code. Completing appended tasks is the job of /speckit-implement.

What happens when the codebase already satisfies the spec?▼

The command leaves tasks.md byte-for-byte unchanged and reports a converged result with summary counts of what was checked. It then recommends proceeding to review or opening a pull request.

What are the prerequisites for running speckit-converge?▼

The project needs a spec-kit structure with a .specify directory, and the feature must have spec.md, plan.md, and a complete tasks.md. It must run after /speckit-tasks and after /speckit-implement has executed on the current tasks.