speckit-converge

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

9|2|Updated Aug 27, 2025
One-click install
npx skills add https://github.com/opsmill/infrahub-solution-ai-dc --skill speckit-converge-opsmill
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: speckit-converge
Source: https://github.com/opsmill/infrahub-solution-ai-dc/tree/main/.agents/skills/speckit-converge
Command: npx skills add https://github.com/opsmill/infrahub-solution-ai-dc --skill speckit-converge-opsmill

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 called for. This Skill closes that gap by auditing the current codebase against the feature's specification artifacts and appending any unbuilt or incomplete work as new traceable tasks to tasks.md. ## Core Features & Use Cases - Gap Assessment: Reads spec.md, plan.md, and tasks.md as the source of intent, inspects the code in scope, and classifies findings as missing, partial, contradicts, or unrequested. - Severity Grading: Ranks findings CRITICAL through LOW, with constitution MUST violations treated as highest severity. - Append-Only Task Generation: Appends a new numbered Convergence phase to tasks.md without modifying existing tasks, spec, plan, or any application code. - Use Case: After running /speckit-implement on a feature, run converge to discover that FR-008's validation logic was never built; the Skill appends a new task for it so the next implement pass completes it. ## Quick Start Ask the agent to run the speckit-converge skill to check the current feature's implementation against its 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 check if my implementation matches the spec in spec-kit?▼

Run the speckit-converge command after /speckit-implement has completed. It reads spec.md, plan.md, and tasks.md, inspects the code in scope, and reports findings graded by gap type and severity before appending remaining work to tasks.md.

When should I run speckit-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 project structure and stops with a clear message if spec.md, plan.md, or tasks.md is missing.

Does speckit-converge modify my existing tasks or code?▼

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

What happens if the codebase already satisfies the spec?▼

The Skill 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.

How does speckit-converge handle constitution violations?▼

Code violating a MUST principle in .specify/memory/constitution.md is treated as the highest-severity finding and produces a CRITICAL remediation task listed first. If the constitution is an unfilled template, those checks are skipped gracefully.