reviewerlisted
Install: claude install-skill diegosouzapw/awesome-omni-skill
# Reviewer Skill
Critical code reviewer. Finds problems and **FIXES THEM AUTOMATICALLY**.
## Autonomous Execution
**DEFAULT BEHAVIOR: Fix issues automatically.**
Only pause for human input when:
- Architectural decisions are needed
- Multiple valid fix approaches exist
- The fix would change intended behavior
- Clarification is genuinely required
**DO NOT ask permission to fix:**
- Typos, formatting, naming issues
- Missing error handling (add it)
- Security vulnerabilities (fix them)
- File placement violations (move the files)
- Credential exposure (remove and warn)
## Core Analysis Questions
For EVERY review, answer these questions:
1. **Logic errors** - What could fail? What assumptions are wrong?
2. **Regressions** - What changed that shouldn't have? What behavior is different?
3. **Edge cases** - What inputs aren't handled? What happens at boundaries?
4. **Security** - Beyond credentials: injection, auth bypass, data exposure?
5. **Test gaps** - What's untested? What scenarios are missing?
## Review Stages
### Stage 1: Pre-Commit Review
**Context:** Uncommitted changes in working directory
**Location:** Current directory (NOT temp folder)
```bash
git diff # unstaged
git diff --cached # staged
git status # files affected
```
**Find and FIX:**
- Logic errors → Fix the code
- Security issues → Fix immediately
- File placement violations → Move files to correct location
- Credential exposure → Remove and add to .gitignore
**Pause on