Content
71%Weight 40%Scale 1-5Reviews the quality of instructions and guidance provided to agents. Good implementation is clear, handles edge cases, and produces reliable results.
An exceptionally actionable, well-sequenced review skill grounded in concrete project-specific rules and commands. Its main weaknesses are conciseness (substantial rule duplication between Standards and Review Steps) and progressive disclosure (a large monolithic file with no reference-file split).
Suggestions
De-duplicate rules between the 'Code Standards' and 'Review Steps' sections — have each Review Step link to the canonical standard ('see Bank/Tenant Isolation above') instead of restating the rule in full.
Split the long, stable standards (e.g. HTTP Middleware, Concurrency, Outbound HTTP, Bank/Tenant Isolation) into reference files under references/ and point to them from SKILL.md, reducing the inline body to the review workflow plus pointers.
Tighten the most discursive paragraphs (e.g. the BaseHTTPMiddleware and Outbound HTTP rationale blocks) to the rule + the one concrete failure mode + the issue reference, trimming explanatory prose.
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | Mostly efficient — no basic-concept padding and all content is non-obvious project-specific knowledge — but the ~545-line body restates many rules twice (e.g. bank scoping in 'Bank/Tenant Isolation' and again in step 7c; pagination in 'API Layer' and step 7d; BaseHTTPMiddleware in 'HTTP Middleware' and step 11e), so it could be tightened. | 3 / 5 |
Actionability | Copy-paste-ready grep commands (`git diff main...HEAD -- '*.py' | grep -nE ...`), concrete file paths, explicit flag-or-pass criteria per step, and complete BAD/GOOD code examples fully cover the common review cases, matching the score-5 anchor. | 5 / 5 |
Workflow Clarity | A clear numbered 1–13 sequence with per-step checkpoints (run lint, check tests, classify findings) and a severity-tiered report terminus, but it is a report-only workflow with no validate→fix→retry feedback loop, so it sits just below the score-5 anchor. | 4 / 5 |
Progressive Disclosure | Well-organized section headers, but the skill is a single monolithic ~545-line file with no bundle/reference files and no one-level-deep references, so content that would benefit from being split into reference docs is inlined. | 3 / 5 |
Total | 15 / 20 Passed |