From cc-suite
Delegates structured code review to a separate Claude Code session via the claude_code MCP tool, returning findings by severity and category.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cc-suite:claude-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Delegate a code review to Claude Code and get back structured findings.
Delegate a code review to Claude Code and get back structured findings.
Call claude_code with a structured review prompt:
mcp__claude-code__claude_code:
prompt: |
Review the following code for correctness, security, and quality.
SCOPE: {files or description of what to review}
Evaluate:
1. Correctness — logic errors, edge cases, off-by-one, race conditions
2. Security — injection, auth bypass, data exposure, input validation
3. Quality — readability, maintainability, test coverage, naming
4. Architecture — coupling, abstraction leaks, layer violations
For each finding report:
- File:line
- Severity: Critical / High / Medium / Low
- Category
- Issue description
- Suggested fix
PROVENANCE NOTE: The code being reviewed was written by OpenAI Codex. Evaluate
with full rigor — do not defer to it. Apply independent judgment on every finding.
cwd: {project working directory}
effort: high
permissionMode: plan
Save the returned session_id as {review_session_id}.
To ask about specific findings or request deeper analysis on a section:
mcp__claude-code__claude_code_reply:
session_id: {review_session_id}
prompt: "Expand on finding #3 — what's the exact attack vector and what's the minimal fix?"
Display the review findings in a structured table:
| File:Line | Severity | Category | Issue | Fix |
|---|---|---|---|---|
| ... | Critical | Security | ... | ... |
Follow with a summary count by severity and a recommended action (fix now vs fix later vs acceptable risk).
permissionMode: plan prevents Claude from modifying files — review is read-onlyeffort: high for thorough analysis; use medium for quick spot-checkscwd to anchor relative file paths in findingsclaude-debug — use when findings point to a specific bug that needs root-cause tracingclaude-implement — use after review to have Claude apply the suggested fixes autonomously$audit-fix — use when review reveals a recurring pattern that needs a systematic fix cyclenpx claudepluginhub xiaolai/claude-plugin-marketplace --plugin cc-suiteConducts code reviews checking quality, security (OWASP Top 10), maintainability, and performance using tools like code_outline, code_search, and grep.
Conducts tiered code reviews for security (OWASP top 10), performance, and quality on staged git changes, PRs, or files before commits or releases.
Reviews code for security vulnerabilities, correctness issues, and maintainability problems with prioritized findings, fix diffs, and commit recommendations.