Agent Skills: Code Reviewer Skill

Reviews a diff against this user's standards, above all whether a fix addresses the violated invariant or only silences its symptom. Use when the user asks for a review, before creating a PR, or when re-checking a diff that answers earlier review findings. Do not use after ordinary edits, and do not use for routine branch review — the built-in /code-review covers that.

UncategorizedID: fubira/claude-code-settings/code-reviewer

Install this agent skill to your local

pnpm dlx add-skill https://github.com/fubira/claude-code-settings/tree/HEAD/skills/code-reviewer

Skill Files

Browse the full folder contents for code-reviewer.

Download Skill

Loading file tree…

skills/code-reviewer/SKILL.md

Skill Metadata

Name
code-reviewer
Description
Reviews a diff against this user's standards, above all whether a fix addresses the violated invariant or only silences its symptom. Use when the user asks for a review, before creating a PR, or when re-checking a diff that answers earlier review findings. Do not use after ordinary edits, and do not use for routine branch review — the built-in /code-review covers that.

Code Reviewer Skill

Review code changes for quality, security, and performance. Provide structured, actionable feedback.

Activation Triggers

  • "review this code" and similar explicit requests
  • Before PR creation
  • Re-checking a diff that answers earlier review findings

Routine branch review belongs to the built-in /code-review. Do not run after ordinary edits.

Review Areas

  1. Correctness: Logic, bugs, edge cases, boundary values
  2. Quality: Language idioms, DRY, early return, duplication, structured params (TS: RORO)
  3. Type Safety: Type annotations, null/undefined, off-by-one
  4. Performance: Unnecessary allocations, parallelization opportunities, data structure choice
  5. Security: Input validation, SQLi/XSS, secrets handling
  6. Testing: Coverage for new code paths, edge case tests
  7. Project Compliance: CLAUDE.md standards, consistency with existing patterns
  8. Root-cause adequacy (when the diff responds to a prior finding): does the fix address the violated invariant, or only its symptom?

Workflow

  1. Context: git diff to understand changes, check project CLAUDE.md, identify related tests
  2. Analysis: Review against above areas. Run project lint/type-check commands for errors
  3. Test Verification: Check coverage and test quality
  4. Feedback: Report using the format below
  5. Re-review: when the diff answers earlier findings, verify each one is closed by a root-cause fix. Passing tests are not evidence — a relaxed test passes too

Symptom-Only Fixes

The catalogue of symptom-only patterns lives in ~/.claude/CLAUDE.md(行動規範 > 問題解決・デバッグ). Read it and check the diff against that list rather than a copy kept here.

A finding is not closed by silencing its symptom. Two checks specific to re-review:

  • The fix touches one call path when the invariant is enforced in several. Ask for the count of the other sites — the rules require it to be stated before the fix
  • Ask what invariant was broken. If the answer is only "the test failed" or "the linter complained", the root cause is not established

Re-raise the original finding rather than closing it, and check the other paths that enforce the same invariant.

Output Format

  1. Critical Issues (must fix): Bugs, vulnerabilities, breaking changes → file:line + fix suggestion
  2. Important Suggestions (should address): Performance, maintainability
  3. Minor Improvements (nice to have): Style, documentation
  4. Positive Highlights: Good implementations
  5. Next Steps: Prioritized recommended actions

Template details: templates/review-report.md

Decision Criteria

  • Correctness > cleverness. CLAUDE.md standards > general best practices
  • Provide specific, actionable feedback (file:line + code examples)
  • Investigate why unusual approaches pass tests before flagging them
  • A symptom-only fix is a Critical Issue, even when the reported symptom is gone