dceoy/speckit-converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
npx skills add https://github.com/dceoy/speckit-agent-skills --skill speckit-converge
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
Check for extension hooks (before convergence):
.specify/extensions.yml exists in the project root.hooks.before_converge keyenabled is explicitly false. Treat hooks without an enabled field as enabled by default.condition expressions:condition field, or it is null/empty, treat the hook as executablecondition, skip the hook and leave condition evaluation to the HookExecutor implementation.) with hyphens (-). For example, speckit.git.commit → $speckit-git-commit.optional flag:optional: true): ## Extension Hooks
**Optional Pre-Hook**: {extension}
Command: `/{command}`
Description: {description}
Prompt: {prompt}
To execute: `/{command}`
optional: false): ## Extension Hooks
**Automatic Pre-Hook**: {extension}
Executing: `/{command}`
EXECUTE_COMMAND: {command}
Wait for the result of the hook command before proceeding to the Goal.
After emitting the block above you MUST actually invoke the hook and wait for it to finish before continuing. Run it the same way you would run the command yourself in this agent/session (the invocation may differ from the literal {command} id shown above, e.g. a skills-mode agent runs it as /skill:speckit-... or $speckit-...). Emitting the block alone does not run the hook.
.specify/extensions.yml does not exist, skip silentlyClose the gap between what a feature's specification, plan, and tasks call for and what the
codebase currently implements. Read spec.md, plan.md, and tasks.md as the **sole
source of intent** (with the constitution as governing constraints), assess the current
state of the code, determine which requirements, acceptance criteria, plan decisions, and
existing tasks are unmet, incomplete, or only partially satisfied, and **append each piece
of remaining work as a new, traceable task** at the bottom of tasks.md so that
$speckit-implement can complete it. This command MUST run only after
$speckit-implement has run on the current tasks.md, and after $speckit-tasks has produced a complete tasks.md.
This is not a diff tool and does not track changes. It assesses the present state
of the code relative to the feature's artifacts — no git, no branch comparison, no history.
APPEND-ONLY, NEVER REWRITE: The command's only write is appending a new
## Phase N: Convergence section to tasks.md. It MUST NOT:
spec.md or plan.md in any way;Convergence phase);
job of $speckit-implement.
When the codebase already satisfies everything, the command MUST leave tasks.md
byte-for-byte unchanged (no empty Convergence header) and report a clean result.
Constitution Authority: The project constitution (.specify/memory/constitution.md) is
non-negotiable. Code that violates a MUST principle is the highest-severity finding and
produces a corresponding remediation task. If the constitution is an unfilled template,
skip constitution checks gracefully rather than failing.
Run .specify/scripts/bash/check-prerequisites.sh --json --require-tasks --include-tasks once from repo root and parse JSON for FEATURE_DIR and AVAILABLE_DOCS. Derive absolute paths:
.specify/memory/constitution.md (if present)If spec.md, plan.md, or tasks.md is missing, STOP with a clear, actionable message naming the
prerequisite command to run ($speckit-specify for a missing spec, $speckit-plan for a missing plan,
$speckit-tasks for missing tasks). Do not produce partial output.
For single quotes in args like "I'm Groot", use escape syntax: e.g 'I'\''m Groot' (or double-quote if possible: "I'm Groot").
Load only the minimal necessary context from each artifact:
From spec.md:
post-launch outcome metrics and business KPIs
From plan.md:
From tasks.md:
From constitution (if not an unfilled template):
Create an internal model (do not echo raw artifacts):
scenario (e.g. US1/AC2), plus the plan decisions and constitution principles that
impose buildable obligations.
plan.md and tasks.md, plus a keywordsearch for the concepts each requirement describes, derive the set of source files and
components in scope for assessment. Bound the assessment to these — do not infer
scope beyond what the artifacts define.
For each item in the intent inventory, inspect the current code in scope and produce a
Finding only where there is a gap. Classify every finding by gap type:
missing: the required work is absent from the code entirely.partial: the work exists but does not yet fully satisfy the requirement /acceptance criterion / plan decision.
contradicts: the code does something that conflicts with stated intent or aconstitution MUST principle.
unrequested: the code contains work not called for by the spec, plan, or tasks(surfaced for awareness — converge does not delete code, it only appends a task to
review/justify or remove it).
Each Finding records: a stable id, the source-ref it traces to, the gap-type, a
severity, and a short human-readable description with the evidence (the file/area observed).
Edge cases:
missing remaining workrather than failing.
missing/contradicts gapthat blocks baseline functionality of a P1 user story.
missing or partial gap on a core functional requirement or acceptancecriterion.
partial gap on a secondary requirement, or an unrequested addition withunclear justification.
unrequested additions.Before appending anything, output a compact, severity-graded summary (no file writes yet):
| ID | Gap Type | Severity | Source | Evidence | Remaining Work |
| --- | -------- | -------- | ------ | --------------------------------------------------------------------------------- | --------------------------- |
| F1 | missing | HIGH | FR-008 | Example: no append-only guard detected in path/to/module.py when writing tasks.md | Add append-only enforcement |
Summary metrics:
If there are one or more actionable findings (tasks_appended outcome):
Append to the end of tasks.md, per the append contract:
M be the maximum. Determine the next phase number N(highest existing phase + 1).
## Phase N: Convergence.zero-padded IDs T{M+1:03d}, T{M+2:03d}, …:
- [ ] T042 <imperative description> per <source-ref> (<gap-type>)
<source-ref> traces the task to its origin: e.g. FR-003, SC-002,
US1/AC2, plan: storage decision, Constitution II.
<gap-type> is one of missing, partial, contradicts, unrequested.
Constitution-violation tasks MUST be emitted first and described as
CRITICAL.
separately-numbered one below it — do not touch the old one.
If there are no actionable findings (converged outcome):
tasks.md at all — no empty phase header.tasks_appended: state how many tasks were appended under which phase, and recommendrunning $speckit-implement to complete them; note that a follow-up converge
run will find fewer or no remaining items.
converged: recommend proceeding to review / opening a PR. No further implement passis needed for this feature's specified scope.
After producing the result, check if .specify/extensions.yml exists in the project root.
hooks.after_converge keyenabled is explicitly false. Treat hooks without an enabled field as enabled by default.condition expressions:condition field, or it is null/empty, treat the hook as executablecondition, skip the hook and leave condition evaluation to the HookExecutor implementationconverged or tasks_appended) in-session before listingany hooks, so users can decide whether to run optional follow-up commands.
.) with hyphens (-). For example, speckit.git.commit → $speckit-git-commit.optional flag:optional: true): ## Extension Hooks
**Optional Hook**: {extension}
Command: `/{command}`
Description: {description}
Prompt: {prompt}
To execute: `/{command}`
optional: false): ## Extension Hooks
**Automatic Hook**: {extension}
Executing: `/{command}`
EXECUTE_COMMAND: {command}
After emitting the block above you MUST actually invoke the hook and wait for it to finish before continuing. Run it the same way you would run the command yourself in this agent/session (the invocation may differ from the literal {command} id shown above, e.g. a skills-mode agent runs it as /skill:speckit-... or $speckit-...). Emitting the block alone does not run the hook.
.specify/extensions.yml does not exist, skip silentlyTake dceoy/speckit-converge from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.