Review
Review current branch changes for bugs, security, and quality before merging.From its SKILL.md
npx -y skills add RhythmMittal19/claude-config --skill reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.0 KB, 235 tokens by cl100k_base, as published. Nobody here has run it
Branch Info
!git branch --show-current
Files Changed
!git diff --name-only main...HEAD 2>/dev/null || git diff --name-only HEAD~3
Full Diff
!git diff main...HEAD 2>/dev/null || git diff HEAD~3
Review every changed file systematically:
- Bugs: Logic errors, off-by-one, null/undefined access, race conditions
- Security: XSS, injection, exposed secrets, unsafe deserialization, missing auth checks
- Types: TypeScript strict violations,
anyusage, missing null checks - Tests: Is new functionality tested? Are edge cases covered?
- Performance: N+1 queries, unnecessary re-renders, missing memoization, large bundle imports
- Style: Does it follow existing patterns in the codebase?
For each issue found:
- File and line reference
- Severity (🔴 blocker / 🟡 should fix / 🟢 nice to have)
- Specific fix suggestion
End with summary: ship it ✅ or needs changes ❌
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.