Review Skill
When to use this skill
- •before delivering final code changes
- •after implementing a planned set of steps
- •before merging or shipping
Research before reviewing
Before applying the checklist, search for context in parallel:
- •
search_webfor latest best practices and known issues in the libraries/frameworks used (scope tostack.mdversions). - •
search_webfor security advisories or deprecation notices relevant to the APIs in use. - •Read all changed files in parallel to build full context.
Severity levels
- •Blocker: wrong behavior, security issue, data loss risk, broken tests/build
- •Major: likely bug, missing edge cases, poor reliability
- •Minor: style, clarity, small maintainability issues
- •Nit: optional polish
Checklist
- •Correctness vs requirements
- •Edge cases & error handling
- •Tests (adequate coverage, meaningful assertions)
- •Security (secrets, auth, injection, unsafe defaults)
- •Performance (obvious hotspots, N+1, unnecessary work)
- •Readability & maintainability
- •Docs / comments updated if needed
- •Patterns match latest framework best practices (from research)
Output format
- •Blockers
- •Majors
- •Minors
- •Nits
- •Overall summary + next actions