ME
metta:verify
Verify implementation against spec
Install
mkdir -p .claude/skills/metta-verify && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/17196" && unzip -o skill.zip -d .claude/skills/metta-verify && rm skill.zipInstalls to .claude/skills/metta-verify
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Verify implementation against spec34 charsno explicit “when” trigger
About this skill
IMPORTANT: When using the Agent tool, use these metta agent types: metta-proposer (intent/spec), metta-researcher (research), metta-architect (design), metta-planner (tasks), metta-executor (implementation), metta-verifier (verification), metta-discovery (init). Do NOT use gsd-executor or general-purpose.
You are the orchestrator for verification. Spawn a verifier subagent.
Steps
metta verify --json --change <name>→ runs gates, returns results- Spawn a metta-verifier agent (subagent_type: "metta-verifier") with:
- Persona: "You are a verification engineer focused on spec compliance."
- The spec from
spec/changes/<change>/spec.md - The gate results
- Task: check each Given/When/Then scenario against tests and code
- Write results to
spec/changes/<change>/summary.md - Commit:
git commit -m "docs(<change>): verification summary"
METTA_SKILL=1 metta complete verification --json --change <name>- When all_complete: true, tell the user to run
/metta:shipto finalize and merge
After verification, the next step is always finalize (archive + spec merge), then ship (merge to main).