rule-of-five-tests
Installation
SKILL.md
Rule of Five — Tests
Each pass has ONE job. Re-read the entire artifact through that lens. See references/pass-order-rationale.md for order rationale.
Quick Start
Create native tasks for 5 passes with sequential dependencies:
TaskCreate: "Pass 1: Draft"
description: "Shape and structure. Test organization mirrors source. All test cases exist."
activeForm: "Drafting"
TaskCreate: "Pass 2: Coverage"
description: "Significant code paths tested? Happy, error, boundary? Every public function covered?"
activeForm: "Checking coverage"
addBlockedBy: [draft-task-id]