A community-driven registry for the Claude Code ecosystem. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Claude Code Review Skill
Catch bugs before they catch you.
A Claude Code skill for AI-powered code review of your uncommitted changes. Install from the marketplace, review instantly.
TuringMind Code Review is a Claude Code skill — a reusable, shareable plugin that extends Claude Code with specialized code review capabilities.
Claude Code skills are installed via the built-in plugin marketplace and add new slash commands to your Claude Code environment.
You're about to commit. ESLint passes. Types check. Tests are green.
But there's a SQL injection on line 23.
TuringMind catches what linters miss:
"Like having a senior engineer review every commit — in seconds."
Open Claude Code in your terminal and run:
# Step 1: Add the TuringMind marketplace
/plugin marketplace add turingmindai/turingmind-code-review
# Step 2: Install the skill
/plugin install turingmind@turingmind
# Quick review — fast, pre-commit check
/turingmind-code-review:review
# Deep review — thorough analysis before PRs
/turingmind-code-review:deep-review
That's it. No config files. No setup. Just code review.
Automatically run code review on staged changes before every commit:
# Manual install
cp hooks/pre-commit .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit
What it does:
To uninstall: rm .git/hooks/pre-commit
Automatically run code review before every git push:
# One-liner install (run in your project)
curl -sSL https://raw.githubusercontent.com/turingmindai/turingmind-code-review/main/scripts/install-hooks.sh | bash
What it does:
To uninstall: rm .git/hooks/pre-push
| Quick Review | Deep Review | |
|---|---|---|
| Command | /turingmind-code-review:review | /turingmind-code-review:deep-review |
| Speed | ⚡ Fast | 🔍 Thorough |
| Best for | Pre-commit checks | Before PRs |
| Agents | 4 Sonnet | 6 Sonnet + 3 Haiku |
| Architecture analysis | — | ✅ |
| Impact analysis | — | ✅ |
| Test coverage check | — | ✅ |
|
🐛 Bugs & Logic
|
🔐 Security (OWASP Top 10)
|
|
📐 Architecture (deep only)
|
🎯 Project Rules
|
TuringMind won't waste your time. It automatically filters:
## Code Review
**Summary:** Reviewed 3 files, 47 lines changed
### Critical (95-100) 🔴
Must fix before committing:
1. **api/auth.ts:23** - SQL injection vulnerability
User input directly interpolated into SQL query.
```diff
- const query = `SELECT * FROM users WHERE email = '${email}'`;
+ const query = `SELECT * FROM users WHERE email = $1`;
+ const result = await db.query(query, [email]);
Should fix:
utils/parse.ts:15 - Unchecked null access
data.user.name accessed without null check. Will throw if user is undefined.
Suggested fix: data.user?.name ?? 'Unknown'
### Deep Review
Includes everything above, plus:
validateEmail functionroutes/login.ts, middleware/auth.ts
---
## 🏗️ Architecture
Modular design for easy customization:
```text
plugins/turingmind/
├── commands/ # Review orchestration
│ ├── review.md
│ └── deep-review.md
├── agents/ # Specialized reviewers
│ ├── bugs.md
│ ├── security.md
│ ├── compliance.md
│ ├── architecture.md
│ └── language-*.md
└── templates/ # Output & filtering
├── output-format.md
└── false-positive-rules.md
# Add Go support
cp agents/language-typescript.md agents/language-go.md
# Edit with Go-specific checks
# Add custom security rules
# Edit agents/security.md
This is AI-assisted code review. It's powerful, but:
For security-critical code, layer this with dedicated security scanners.
Contributions welcome! Here's how:
agents/language-{lang}.mdagents/templates/false-positive-rules.mdMIT © TuringMind
Made with 🧠 by developers, for developers.
1000+ skills curated from Anthropic, Vercel, Stripe, and other engineering teams
Design enforcement with memory — keeps your UI consistent across a project
Universal SEO skill for Claude Code. 25 sub-skills + 18 sub-agents covering technical SEO, E-E-A-T, schema, GEO/AEO, bac
Route Claude Code traffic to any of 17 provider backends including free or local models