← ClaudeAtlas

reviewlisted

Run comprehensive code review on current branch changes
YoniChechik/claude-code-config · ★ 0 · Code & Development · score 65
Install: claude install-skill YoniChechik/claude-code-config
# Review Mode Run a comprehensive code review on current branch changes. ## Additional review focus "$ARGUMENTS" If provided, the above gives optional extra constraints or focus areas for the review. By default, the skill reviews all current branch changes without needing any arguments. ## Process ### Subagent 1: Review Use a subagent to carry out the review. **IMPORTANT**: This agent is a reviewer only - do NOT modify any code. Report issues for the fix agent to handle. Before starting the review, the subagent should: 1. **Read the plan file for context**: Find and read `plan-*.md` in the current directory to understand the feature intent, expected changes, and architecture decisions. 2. The additional review focus above (if provided) gives extra constraints on what to concentrate on. Then proceed with the full review workflow: #### Step 1: Identify Changed Files Check what files have been modified: ```bash git status git diff --name-only ``` Parse the output to get list of modified Python files. #### Step 2: Deep Code Review Review each modified file for: **Security Concerns:** - SQL injection vulnerabilities - Unsafe data handling - Credential exposure - Input validation issues **Code Quality:** - Functions over 50 lines (should be broken down) - Duplicated code patterns - Missing type annotations - Poor naming conventions - Spaghetti code / complex control flow **Integration Issues:** - Breaking changes to existing APIs - Missing error handling - Race c