From Dev Workflows
Run a read-only cross-artifact consistency check across spec.md, plan.md, and tasks.md for the current feature, before implementation. Defers to your project's spec tooling (e.g. GitHub Spec-Kit's /speckit-analyze) if installed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev-workflows:analyze Optional: analysis focusOptional: analysis focusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Cross-check that the current feature's `spec.md`, `plan.md`, and `tasks.md` actually agree **before** any code is written: requirements with no covering task, tasks with no source requirement, terminology drift, contradictions, and over-build. This is the cheapest place to catch artifact drift — one read-only pass instead of wasted implementation.
Cross-check that the current feature's spec.md, plan.md, and tasks.md actually agree before any code is written: requirements with no covering task, tasks with no source requirement, terminology drift, contradictions, and over-build. This is the cheapest place to catch artifact drift — one read-only pass instead of wasted implementation.
/featureand/improverun this as a built-in gate (/feature§4b,/improve§3b for T3). Use/analyzestandalone when you want the check on an existing spec/plan/tasks set outside those pipelines.
READ-ONLY — this never edits files. It produces a findings report; you act on it.
Defers to the project's spec layer (docs/stack.md → Spec / planning layer):
EXECUTE_SKILL: speckit-analyze $ARGUMENTS. It loads spec/plan/tasks (and /memory/constitution.md if present), builds a requirements↔tasks coverage map, and emits a severity-ranked findings table (CRITICAL/HIGH/MEDIUM/LOW) plus coverage %.spec.md, plan.md, tasks.md (and any checklists/) and report, without editing: (1) coverage gaps — requirements with no task, tasks with no requirement; (2) inconsistency — terminology drift, entities in plan absent from spec; (3) ambiguity — vague unmeasurable requirements, unresolved TODO markers; (4) over-build — plan/tasks beyond what the spec asked. Rank CRITICAL/HIGH/MEDIUM/LOW./feature (which produces them) instead.Acting on findings: CRITICAL/HIGH (coverage gap, contradiction) → fix the offending artifact before implementing. MEDIUM/LOW → may proceed; flag for reviewers. Constitution/frozen-pattern violations are always CRITICAL.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub miroo93/dev-workflows --plugin dev-workflows