speckit-converge

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

1|Updated Aug 5, 2026
One-click install
npx skills add https://github.com/pieberrykinnie/hapa --skill speckit-converge-pieberrykinnie
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: speckit-converge
Source: https://github.com/pieberrykinnie/hapa/tree/main/.agents/skills/speckit-converge
Command: npx skills add https://github.com/pieberrykinnie/hapa --skill speckit-converge-pieberrykinnie

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 Detection and Classification: Identifies missing, partial, contradicting, or unrequested code relative to functional requirements, acceptance criteria, plan decisions, and constitution principles. - Severity-Graded Findings Report: Presents a CRITICAL/HIGH/MEDIUM/LOW findings table with source references and evidence before making any changes. - Append-Only Task Generation: Adds a new numbered Convergence phase to tasks.md with zero-padded task IDs, never rewriting or renumbering existing tasks. - Use Case: After running /speckit-implement on a feature, run this Skill to verify nothing from the spec was missed; it appends tasks like "T042 Add append-only guard per FR-008 (missing)" so the next implement pass completes the remaining work. ## Quick Start Ask the agent to 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 skill after /speckit-implement. It reads spec.md, plan.md, and tasks.md as the source of intent, inspects the current code, and appends any remaining work as new tasks to tasks.md.

How to find missing requirements after implementing a feature?

Use a convergence pass that builds an intent inventory from functional requirements, acceptance criteria, and plan decisions, then classifies each gap as missing, partial, contradicts, or unrequested with severity levels from CRITICAL to LOW.

Does speckit-converge modify my existing tasks or code?

No. It is strictly append-only: it adds a new Convergence phase at 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 skill leaves tasks.md byte-for-byte unchanged and reports a converged result with summary counts of requirements, plan decisions, and constitution principles checked, recommending you proceed to review or open a PR.

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 spec-kit project structure with a .specify directory and will stop with guidance if spec, plan, or tasks files are missing.