Content
87%Reviews the quality of instructions and guidance provided to agents. Good implementation is clear, handles edge cases, and produces reliable results.
The body is a tight, well-organized rule reference with concrete, actionable contract rules and no fluff. Its only real gap is the lack of an explicit validation feedback loop for the destructive database operations it governs.
Suggestions
Add an explicit validation feedback loop for the destructive DB operations: after `migrate:fresh` + `seed`, if SQLSTATE constraint violations or factory/seeder mismatches appear, state the fix→re-validate→proceed steps so workflow clarity is not capped at 2.
Optionally render the contract chain as an ordered checklist (migration change → update factory → update seeder → run migrate:fresh + seed → verify) with a clear checkpoint before tests run.
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | The body is lean MUST/MUST NOT/SHOULD rule lists with no padding or explanation of basic concepts Claude already knows (it never explains what a factory or migration is), so every token earns its place at the level-3 anchor. | 3 / 3 |
Actionability | As an instruction-only contracts skill it gives precise, specific, complete rules (e.g. every NOT NULL column must be covered by a factory, seeder, or explicit DB default) plus one concrete command (`migrate:fresh` + `seed`); per the rubric's instruction-only note, the absence of code is not penalized when guidance is this actionable. | 3 / 3 |
Workflow Clarity | The schema→factory→seeder chain is implied and a validation step is mentioned (migrate:fresh + seed before tests), but there is no explicit validate→fix→re-validate feedback loop for these destructive/batch DB operations, which the rubric caps at 2. | 2 / 3 |
Progressive Disclosure | The skill is under 50 lines with no need for external references and is cleanly organized into well-labeled sections (Schema Contract, Factory Rules, Seeder Rules, Drift Triggers, Identity Rule), meeting the level-3 anchor for simple well-organized skills. | 3 / 3 |
Total | 11 / 12 Passed |