loom-code-review
SolidComprehensive code review covering correctness, maintainability, performance, security, and best practices.
Code & Development 54 stars
3 forks Updated today MIT
Install
Quality Score: 87/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Code Review
## Overview
Review a change for correctness, security, performance, and maintainability, then produce prioritized, actionable feedback. Optimize signal: gate on what breaks users; comment (don't gate) on the rest.
## Review vs. adversarial security audit
Different jobs — don't conflate:
- **Code review (this skill):** holistic, author-empathetic. Reviews the *diff and its blast radius* against stated intent across four lenses. Assumes good faith; catches the bugs a careful peer catches.
- **Security audit (`Skill(skill="loom-skills", args="loom-security-audit")`, `Skill(skill="loom-skills", args="loom-threat-model")`):** attacker mindset, threat model, whole-attack-surface. Assumes hostile input everywhere.
For auth, crypto, payments, deserialization, or anything touching a trust boundary: do the code review AND trigger a security audit. A passing code review is not a security sign-off.
## Severity taxonomy
Label every comment. BLOCKER, SILENT_FAILURE, and CRITICAL gate the merge.
| Severity | Gate? | Meaning |
| ------------------ | ----- | --------------------------------------------------------------------------------- |
| **BLOCKER** | ✅ | Security hole, data loss, crash, corruption. Merge is unsafe. |
| **SILENT_FAILURE** | ✅ | Exit 0 but the operation actually failed (sandbox-blocked download, partial fetch, stale cache, swallow...
Details
- Author
- cosmix
- Repository
- cosmix/loom
- Created
- 8 months ago
- Last Updated
- today
- Language
- Rust
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Listed
code-review
Comprehensive code review methodology with severity classification and confidence thresholds
2 Updated today
delorenj Code & Development Listed
code-review
Perform thorough code reviews focused on bugs, security, and maintainability. Use when user asks to review code, audit a file, or check for issues.
13 Updated 1 months ago
diaozxin007 Code & Development Listed
code-review
Perform thorough code reviews with security, performance, and maintainability analysis. Use when user asks to review code, check for bugs, or audit a codebase.
1 Updated 1 weeks ago
jafini