code-review-patterns
Installation
SKILL.md
Code Review Patterns
Overview
Code reviews catch bugs before they ship. But reviewing code quality before functionality is backwards.
Core principle: First verify it works, THEN verify it's good.
Reference Files
Read only the references needed for the current review:
references/review-order-and-checkpoints.mdfor concern-first reading order, review checkpoints, zero-finding halts, and re-review loopsreferences/security-review-checklist.mdfor auth, input/output, secrets, network, storage, and dependency checksreferences/code-review-heuristics.mdfor maintainability, performance, hidden-failure, edge-case, sloppy-pattern, and UI quick scans
Signal Quality Rule
Flag ONLY when certain. False positives erode trust and waste remediation cycles.
Related skills
More from romiluz13/cc10x
session-memory
Internal skill. Use cc10x-router for all development tasks.
60code-generation
Internal skill. Use cc10x-router for all development tasks.
58architecture-patterns
Internal skill. Use cc10x-router for all development tasks.
44planning-patterns
Internal skill. Use cc10x-router for all development tasks.
43cc10x-router
|
41debugging-patterns
Use when a bug, flaky test, or runtime/build failure needs root-cause tracing and a nearby duplicate-pattern scan before any fix.
35