Skip to content

v7.2.0 - Verification Loop Patterns

Choose a tag to compare

@bobvibes bobvibes released this 27 Jan 08:33
· 185 commits to main since this release

What's New

Verification Loop Patterns

This release adds robust verification and fix loop patterns across Clavix skills, inspired by proven agentic workflow patterns.

Iron Laws

  • No completion without verification evidence - If you haven't run the verification command, you cannot claim it passes
  • Issues found = issues fixed + re-verified - Cannot proceed until fixed AND re-verified

Verification Gate Pattern

IDENTIFY → RUN → READ → VERIFY before any completion claims

Mandatory Fix Loops

Cannot proceed until issues are fixed AND re-verified. 3-strike rule: if 3+ fix attempts fail, stop and ask for help.

New using-clavix Meta-Skill

A new orchestration skill establishing:

  • Skill invocation requirements (check for skills BEFORE any action)
  • Complete workflow map showing skill chains
  • Required skill chains (prd → plan → implement → verify)
  • Red flags table for catching rationalization patterns
  • Skill priority order (exploration → planning → implementation → verification)

Subagent Templates

New templates for delegating implementation work:

  • implementer-prompt.md - Dispatch implementer subagent
  • spec-reviewer-prompt.md - Dispatch spec compliance reviewer
  • quality-reviewer-prompt.md - Dispatch code quality reviewer

Two-stage review pattern: spec compliance first, then code quality.

Required Sub-Skill References

Explicit skill chain enforcement:

  • clavix-prd → REQUIRED: clavix-plan
  • clavix-plan → REQUIRED: clavix-implement
  • clavix-implement → REQUIRED: clavix-verify (after all tasks)

Full Changelog: v7.1.1...v7.2.0