speckit-converge

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

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

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 project constitution MUST principles as critical findings requiring remediation tasks. - Use Case: After running /speckit-implement on a feature, run this Skill to discover that FR-008's append-only guard was never coded; it appends a HIGH-severity task to tasks.md 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 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.

What does speckit-converge do with the gaps it finds?▼

It appends each actionable finding as a new task under a new Convergence phase at the end of tasks.md, ordered by severity with source references like FR-003 or US1/AC2. It never rewrites, renumbers, or deletes existing tasks.

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

Run it only after /speckit-tasks has produced a complete tasks.md and /speckit-implement has executed on it. Running it earlier stops with a message naming the prerequisite command to run first.

Does converge modify my application code or spec files?▼

No. Its only write operation is appending a new Convergence phase to tasks.md. It never modifies spec.md, plan.md, or any application code; completing the appended tasks is the job of /speckit-implement.

What happens when the codebase already satisfies everything in the spec?▼

It leaves tasks.md byte-for-byte unchanged and reports a converged result with summary counts of requirements, plan decisions, and constitution principles checked. No empty phase header is added.