Fresh Eyes Code Review is a development Claude Skill built by Rich Tabor. Best for: Developers use this after completing features or fixes to catch obvious bugs and logic errors they missed during implementation..
Re-reads modified code with fresh perspective to catch bugs, logic errors, and edge cases before commit.
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:
/plugin install fresh-eyes-code-review@richtaborRequires Claude Code CLI.
Developers use this after completing features or fixes to catch obvious bugs and logic errors they missed during implementation.
No reviews yet. Be the first to review this skill.