Claude skills for code review
A review checklist an expert would follow, instead of "looks good to me" with confidence. These skills give any agent a repeatable review procedure.
- CodeGraphCross-language code intelligence for AI agents. Builds a semantic graph of functions, classes, imports, and call chains across 38 languages and exposes it through MCP tools - so you query structure instead of grepping files.Coding
- Code Review ChecklistRun a systematic multi-pass code review - correctness, design, security, performance, tests - and report findings ordered by severity with concrete, respectful suggestions. Use when someone asks "review this PR", "review this diff", "what's wrong with this change", or wants a pre-merge quality gate on a branch. Do NOT use for a security-only deep audit of a change - use secure-code-review instead - or for writing the ticket or tracking artifact that describes the change - use jira-ticket-writer instead.Coding
- code-reviewProvides structured code review feedback across correctness, security, performance, and tests.Coding
- Secure Code ReviewReviews code for the security flaw classes that cause the most breaches - broken authorization and IDOR, injection, SSRF, mass assignment, and unsafe deserialization - and returns a short, focused findings list with concrete fixes. Use when someone asks "review this code for security issues", "is this endpoint safe", "check this PR for vulnerabilities", or is shipping auth logic, new API endpoints, file handling, or anything that touches untrusted input. Do NOT use for general code quality, style, or maintainability review - use code-review-checklist instead; for prioritizing findings a scanner already produced, use vulnerability-triage; for design-stage analysis before code exists, use threat-model-stride.Coding
- Code Review And QualityConducts multi-axis code review. Use before merging any change. Use when reviewing code written by yourself, another agent, or a human. Use when you need to assess code quality across multiple dimensions before it ent…Coding
- Test QualityWrite high-quality JUnit 5 tests with AssertJ assertions. Use when user says "add tests", "write tests", "improve test coverage", or when reviewing/creating test classes for Java code.Coding
You never pick the skill. Connect once and describe the task; the right one installs itself. Connect to Claude
Questions
Can I read what a skill does before installing?
Always. Every skill is plain-text markdown, MIT licensed, with its source linked on GitHub.