code-review
SolidStaff engineer code review for scripts, tools, and infrastructure changes
Code & Development 2 stars
0 forks Updated 3 days ago MIT
Install
Quality Score: 78/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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...
Details
- Author
- 0xUrsanomics
- Repository
- 0xUrsanomics/utopia-os
- Created
- 4 days ago
- Last Updated
- 3 days ago
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Solid
code-reviewer
Find bugs, security holes, and maintainability issues in a diff or file.
123 Updated today
antonbabenko Code & Development Solid
code-reviewer
USE 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.
50 Updated today
hesorchen Code & Development Listed
code-review
Use whenever reviewing code for quality and correctness — a diff, PR, module, or subsystem — producing verified, severity-ranked findings on the RV ledger. Not for comprehension tours (walkthrough) or doctrine-conformance hunts (inquisition, user-invoked only).
1 Updated today
davidlee