code-review
Installation
SKILL.md
Code Review Philosophy
TL;DR
Systematic code review across 4 layers with severity classification. Only report findings with ≥80% confidence. Include file:line references for all issues.
When to Use This Skill
- Before reporting implementation completion
- When explicitly asked to review code
- When using the
/reviewcommand - As an independent audit after code changes
The 4 Review Layers
Layer 1: Correctness
- Logic errors and edge cases
- Error handling completeness
- Type safety and null checks
- Algorithm correctness
- Off-by-one errors
Related skills
More from kdcokenny/opencode-workspace
code-philosophy
Internal logic and data flow philosophy (The 5 Laws of Elegant Defense). Understand deeply to ensure code guides data naturally and prevents errors.
18frontend-philosophy
Visual & UI philosophy (The 5 Pillars of Intentional UI). Understand deeply to avoid "AI slop" and create distinctive, memorable interfaces.
16plan-review
Criteria for reviewing implementation plans against quality standards
10plan-protocol
Guidelines for creating and managing implementation plans with citations
10