Performs thorough code reviews covering code quality, security, architecture, and UI/UX. Use when reviewing code changes, PRs, implementations, or when asked to review, audit, or assess code quality. Generates detailed reports with prioritized findings.
View on GitHubplugins/cc-workflows/skills/code-review/SKILL.md
February 4, 2026
Select agents to install to:
npx add-skill https://github.com/tolo/coding-agent-toolkit/blob/main/plugins/cc-workflows/skills/code-review/SKILL.md -a claude-code --skill code-reviewInstallation paths:
.claude/skills/code-review/# Code Review Skill Comprehensive code review covering quality, security, architecture, and UI/UX aspects. ## Instructions - **Fully** read and understand the **Workflow Rules, Guardrails and Guidelines** section in CLAUDE.md before starting work, including but not limited to: - **Foundational Rules and Guardrails** - **Foundational Development Guidelines and Standards** (e.g. Development, Architecture, UI/UX Guidelines etc.) - **Non-modifying** - Analysis only, no code changes - Follow project guidelines from CLAUDE.md - Use checklists in `checklists/` subdirectory for systematic assessment ## Workflow ### Phase 1: Context Analysis 1. **Determine review scope** from conversation context: - If specific files/dirs mentioned: Focus on those - If PR number mentioned: Run `gh pr diff <number>` to get changes - If focus area mentioned (security, architecture, ui): Emphasize in Phase 2 - Otherwise: Use git status/diff for scope 2. Run `git status --porcelain` and `git diff` to identify changes 3. Run `git log -10 --oneline` to understand recent commits 4. Use `tree -d -L 3` and `git ls-files | head -250` for codebase overview 5. Identify applicable review types based on changed files (code, architecture, UI/UX) 6. Read additional relevant guidelines and documentation (API, guides, reference, etc.) as needed **Gate**: Scope determined, relevant files identified ### Phase 2: Review Execution Perform applicable reviews using the checklists. #### Code Analysis - Run static analysis, linting, type checking per project guidelines - Use IDE diagnostics if available - **IMPORTANT**: Only format code that has been added or modified, **NEVER** format the entire codebase #### Code Review **Checklist**: [CODE-REVIEW-CHECKLIST.md](checklists/CODE-REVIEW-CHECKLIST.md) Assess: - Correctness, logic errors, edge cases, error handling - Readability, naming, code organization - Best practices, DRY, design patterns, anti-patterns - Performance (N+1 queries, al