loom-code-review

Solid

Comprehensive code review covering correctness, maintainability, performance, security, and best practices. Use for PR reviews, pre-merge audits, architecture and design critique, and actionable reviewer feedback.

Code & Development 53 stars 0 forks Updated today MIT

Install

View on GitHub

Quality Score: 88/100

Stars 20%
58
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

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 (`/loom-security-audit`, `/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. Only the first two 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, swallowed error). Always investigate before merge. | | **CRITICAL** | ✅ | Logic erro...

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