From rt
Reviews recently modified code for bugs, logic errors, missing checks, and issues. Fixes obvious problems and summarizes changes. Use after features, fixes, or commits.
npx claudepluginhub richtabor/agent-skills --plugin rtThis skill uses the workspace's default tool permissions.
Re-read all code you just wrote or modified with a fresh perspective. Look for obvious bugs, errors, problems, and confusion that are easy to miss when deep in implementation.
Conducts checklist-based code reviews for type safety, error handling, security, testing, and quality. Outputs severity-ranked findings with impacts and fixes for pre-commits/PRs.
Reviews git-tracked code changes for high-impact defects, security issues, regressions, and test gaps with evidence-based findings. Supports auto-fixing.
Reviews code focusing on quality, readability, logical errors, error handling, complexity reduction, edge cases, and maintainability. Coordinates pr-review-toolkit tools if available. Use for PR reviews.
Share bugs, ideas, or general feedback.
Re-read all code you just wrote or modified with a fresh perspective. Look for obvious bugs, errors, problems, and confusion that are easy to miss when deep in implementation.
Find all files you modified in this session. If unclear, ask the user or check recent git changes:
git diff --name-only HEAD~1
git diff --name-only --cached
Read each modified file completely. Pretend you've never seen this code before. Look for:
Logic errors
Obvious bugs
Missing pieces
Confusion risks
For each issue found:
Don't ask for permission. Just fix obvious problems.
After fixing, provide a brief summary:
## Fresh Eyes Review
Fixed 3 issues:
- `api/users.ts:47` — Missing null check on user.profile
- `api/users.ts:82` — Off-by-one in pagination (used > instead of >=)
- `utils/format.ts:15` — Typo: `formattedDte` → `formattedDate`
No other issues found.
If nothing found:
## Fresh Eyes Review
Reviewed 4 files. No issues found.
Focus only on bugs, errors, and problems. If it works and isn't broken, leave it alone.
Run through mentally for each file: