---
name: Code Review
slug: code-review-32
category: Quality
description: Code Review provides structured reviews of code changes for bugs, security issues, performance problems, and best-practice gaps. Use it when reviewing a diff and you need severity-tagged, actionable feedback without rewriting the code.
github: "https://github.com/peintune/runjam/tree/main/src-tauri/builtin-skills/code-review"
language: Rust
stars: 195
forks: 12
install: "npx degit https://github.com/peintune/runjam/tree/main/src-tauri/builtin-skills/code-review ~/.claude/skills/code-review"
installs_to: ~/.claude/skills/code-review
source_path: src-tauri/builtin-skills/code-review/SKILL.md
collection_size: 13
category_size: 1745
collection_url: "https://dirskills.com/collections/peintune/runjam"
added: 2026-09-06T05:18:57.036Z
last_synced: 2026-09-06T05:18:57.036Z
canonical_url: "https://dirskills.com/skills/code-review-32"
---

# Code Review

Code Review provides structured reviews of code changes for bugs, security issues, performance problems, and best-practice gaps. Use it when reviewing a diff and you need severity-tagged, actionable feedback without rewriting the code.

**Install:**

```bash
npx degit https://github.com/peintune/runjam/tree/main/src-tauri/builtin-skills/code-review ~/.claude/skills/code-review
```

## README

# Code Review

Provide thorough, structured code reviews with actionable feedback.

## Process

1. Read the diff or code changes
2. Analyze for: correctness, security, performance, maintainability, style
3. Report findings by severity:
   - **Critical**: Bugs, security holes, data loss risk
   - **Warning**: Performance issues, poor error handling, race conditions
   - **Info**: Style inconsistencies, naming suggestions, documentation gaps

## Guidelines

- Never rewrite code unless asked — point out issues and suggest fixes
- Focus on the diff, not the whole file
- If you see a pattern of issues, mention it once with a general recommendation
- Be specific: cite exact line numbers and code snippets
- Suggest concrete fixes, not vague advice
