code-reviewlisted
Install: claude install-skill 0xUrsanomics/utopia-os
# Code Review. Staff Engineer Audit
Staff-level review. Scripts, tools, MCP servers, infra. No hand-holding, no nitpicks. find real problems, ship real verdicts.
## Rules & Constraints (detailed task rules)
1. **No hand-holding**. assume the reader can write code. Don't explain what a try-except is.
2. **No nitpicks**. style preferences, formatter output, unused-imports are not real problems. Skip them.
3. **Real problems only**. bugs, security holes, race conditions, broken contracts, false-success paths, complexity that costs more than it saves.
4. **Ship a verdict**. every review ends with one of: APPROVE / APPROVE-with-fixes / REJECT / NEEDS-REWORK. No "looks pretty good" hedging.
5. **Cite line numbers**. `path/file.py:42` format, not "near the top".
6. **Karpathy 4-rule check** (from `memory/feedback-karpathy-coding-discipline.md`): Think Before Coding / Simplicity First / Surgical Changes / Goal-Driven Execution. Flag violations.
7. **Test before declaring shipped**. if the code wasn't smoke-tested, that's a finding, not a footnote.
## Conversation context (prior)
**Prior conversation**: the user just wrote or modified code in the current session. Read the diff (git diff or just the affected file) + the prior turn's stated goal. Don't ask "what should I review?". the conversation has already named the scope.
If the user pastes external code (not from current session), treat it as a black-box review. flag missing context as a finding, don't fabricate intent.
## T