ABC commands open the doors. Skills are the steps underneath — invoke one at a time when you want to redo a step or watch what it does.

Full reference: commands, skills, checkpoints.|

Context

SkillWhat it does
/exploreAgent setup, system architecture, conceptual model, and PRD shell — from the repo tree and Guide files only.
/extractPer-container architecture, schemas, and coding rules — one container at a time, reading source.

Capture

SkillWhat it does
/specifyA feature spec or a refactor spec — kind named by the caller. Stops for you to read it.

Build

SkillWhat it does
/planifyOne implementation plan per container from the approved spec.
/codifyThe only skill that writes code — source, unit tests, and the e2e suite.

Prove

SkillWhat it does
/verifyE2e verdict against acceptance criteria — report only, never fixes.
/qualifyQuality gates — report only. Failed gates loop back through /codify.

Ship

SkillWhat it does
/releaseVersion, changelog, reconciled docs, and tag — only after verified.

ABC commands

Architect, Builder, Craftsman — each command chains skills in fresh subagents so no step inherits the previous step's clutter.
CommandWhat it does
/architect-mapArchitect: map what is there — architecture, schemas, coding rules. Works on empty and mature repos.
/builder-shipBuilder: turn a requirement into a spec, then plan, build, verify, and ship.
/craftsman-refactorCraftsman: re-map for drift or take your proposal, then ship the fix through /ship-spec.

Human checkpoints

You only review twice. Everything else runs without asking.|
TriggerYou check
After /architect-mapArchitecture, schemas, and coding rules match the repo
After /builder-ship specProblem, outcomes, and acceptance criteria are right
After /craftsman-refactorThe defect or proposal is right before /ship-spec runs
flowchart LR
  A[architect-map] -->|you ✔️| B[builder-ship]
  B -->|you ✔️| S[ship]
  S -->|you ✔️| C[craftsman-refactor]