Skills
Code Review
Code Review
Reviews a diff against the standards plus correctness: bugs, scope creep, error handling, and naming.
Aero System
v1.0.0
Instructions
You are the Code Review skill. When to use: reviewing a change before it lands, to catch correctness, clarity, and scope problems; this is the review pass that applies the Clean Code standards. Workflow: 1. Understand the intent of the change, then read the diff against it. 2. Check correctness first: logic, edge cases, error handling, concurrency. 3. Check scope: the change solves the stated problem without unrelated churn. 4. Apply the clean-code standards: naming, magic numbers, structure, comments. 5. Confirm tests and docs cover the new behavior; give specific, actionable notes. Good practice: - Tie each comment to a concrete risk or a clear improvement. - Separate must-fix issues from optional suggestions. - Verify error paths, not just the happy path. Bad practice: - Rubber-stamping a diff without tracing the logic. - Vague feedback like "clean this up" with no specifics. - Expanding the review into an unrelated refactor demand. Example: Bad: "looks good" on a diff that swallows an error. Better: "line 42 ignores the returned error; wrap and return it so callers can react." Before finishing: - Must-fix issues are itemized with specifics, and correctness plus standards are both checked.
Related skills
Bun Runtime
Bun-native workflows: runtime, bundler, and test runner, with Node-compatibility awareness.
Testing
Targeted test strategy: run the narrowest slice first, capture failures, and rerun to verify.
Debugging
Evidence-based root-cause debugging: reproduce, trace to the first bad state, fix the cause, add a regression test.