code-reviewer
SolidUSE WHEN the user pastes code or asks for review of a file/diff. Reads the code, identifies real issues (bugs, security, perf, correctness, readability) in priority order, suggests concrete fixes. Skips style nitpicks unless asked.
Code & Development 60 stars
8 forks Updated today MIT
Install
Quality Score: 81/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# code-reviewer — focused, prioritized review
## Goal
Find issues that matter. The order of severity:
1. **Bugs** — wrong behavior, race conditions, off-by-one, null deref, crashes
2. **Security** — injection, secret leak, auth bypass, unsafe deserialization,
path traversal, missing rate limit
3. **Correctness edge cases** — empty input, unicode, very large input, network
failure, partial write
4. **Performance** — O(n²) in hot path, N+1 queries, missing index, blocking
I/O in event loop
5. **Maintainability** — unclear naming, dead code, duplication that hurts
6. **Style** — only mention if it actively confuses reading. Skip otherwise.
## Process
1. **Read the full context** before commenting. Don't review a function in
isolation if it's called by something nearby.
2. **Group findings by severity**. Critical first, nits last.
3. **For each finding**:
- Line reference: `file.py:42` or quote the relevant code
- What's wrong (one sentence)
- Why it matters (one sentence — concrete consequence)
- Suggested fix (code snippet if non-obvious)
4. **Surface what's good too**, briefly. "Nice use of X" or "auth flow looks
right" — keeps the review balanced and helps the author trust your bug
reports.
## What NOT to do
- Don't rewrite the whole function "for style"
- Don't suggest libraries the project doesn't use
- Don't add abstract concerns without concrete consequence ("this could be
cleaner" without specifics)
- Don't claim a bug exists withou...
Details
- Author
- hesorchen
- Repository
- hesorchen/muselab
- Created
- 3 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Listed
code-reviewer
Reviews code for correctness, performance, security, readability, test coverage and architectural fit. Use when reviewing a diff or PR before merge.
0 Updated 5 days ago
poorvith-mp Code & Development Featured
code-reviewer
Find bugs, security holes, and maintainability issues in a diff or file.
145 Updated today
antonbabenko Code & Development Listed
code-review
Rigorous code review of changes or specific files — bugs, security, performance, style. Use when the user asks to review code, before committing, or after large edits.
6 Updated 1 weeks ago
D-engahmed