A community-driven registry for the Claude Code ecosystem. Not affiliated with Anthropic.
Are you the author? Sign in to claim
A comprehensive code review skill for Claude Code, covering React 19, Vue 3, Rust, TypeScript, TanStack Query v5, and mo
A comprehensive, modular code review skill for Claude Code
面向 Claude Code 的全面模块化代码审查技能
English · 中文 · Contributing
Code Review Skill is a production-ready skill for Claude Code that transforms AI-assisted code review from vague suggestions into a structured, consistent, and expert-level process.
It covers 20+ languages and frameworks with over 16,000 lines of carefully curated review guidelines — loaded progressively to minimize context window usage.
blocking · important · nit · suggestion · learning · praise| Category | Technology | Guide | Lines |
|---|---|---|---|
| Frontend | ⚛️ React 19 / Next.js / TanStack Query v5 | reference/react.md | ~870 |
| 💚 Vue 3.5 + Composition API | reference/vue.md | ~920 | |
| 🔮 Angular 17+ / Signals / Zoneless | reference/angular.md | ~420 | |
| 🔥 Svelte 5 / SvelteKit | reference/svelte.md | ~1,060 | |
| 🎨 CSS / Less / Sass | reference/css-less-sass.md | ~660 | |
| 🔷 TypeScript | reference/typescript.md | ~540 | |
| Backend | ☕ Java 17/21 + Spring Boot 3 | reference/java.md | ~410 |
| ⚡ FastAPI | reference/fastapi.md | ~590 | |
| PHP 8.x | reference/php.md | ~700 | |
| 📦 NestJS | reference/nestjs.md | ~590 | |
| 🐍 Django / DRF | reference/django.md | ~1,030 | |
| 🐹 Go | reference/go.md | ~990 | |
| 🦀 Rust | reference/rust.md | ~840 | |
| 💻 C# / .NET 8 | reference/csharp.md | ~520 | |
| 🐍 Python | reference/python.md | ~1,070 | |
| Mobile / Systems | 📱 Kotlin / Android | reference/kotlin.md | ~1,020 |
| 🍎 Swift / SwiftUI | reference/swift.md | ~930 | |
| ⚙️ C | reference/c.md | ~290 | |
| 🔩 C++ | reference/cpp.md | ~390 | |
| 🖥️ Qt Framework | reference/qt.md | ~190 | |
| Cross-Cutting | 🏛️ Architecture Design Review | reference/architecture-review-guide.md | ~470 |
| ⚡ Performance Review | reference/performance-review-guide.md | ~820 | |
| 🔍 Universal Quality Anti-Patterns | reference/code-quality-universal.md | ~490 |
Phase 1 - Context Gathering
Understand PR scope, linked issues, and intent
|
v
Phase 2 - High-Level Review
Architecture - Performance impact - Test strategy
|
v
Phase 3 - Line-by-Line Analysis
Logic - Security - Maintainability - Edge cases
|
v
Phase 4 - Summary & Decision
Structured feedback - Approval status - Action items
| Label | Meaning |
|---|---|
🔴 blocking | Must be fixed before merge |
🟠 important | Should be fixed; may block depending on context |
🟡 nit | Minor style or preference issue |
🔵 suggestion | Optional improvement worth considering |
📚 learning | Educational note for the author |
🌟 praise | Explicitly highlight great work |
code-review-skill/
|
+-- SKILL.md # Core skill - loaded on activation (~190 lines)
+-- README.md
+-- LICENSE
+-- CONTRIBUTING.md
|
+-- reference/ # On-demand language guides
| +-- react.md # React 19 / Next.js / TanStack Query v5
| +-- vue.md # Vue 3.5 Composition API
| +-- angular.md # Angular 17+ / Signals / Zoneless
| +-- svelte.md # Svelte 5 / SvelteKit
| +-- rust.md # Rust ownership, async/await, unsafe
| +-- typescript.md # TypeScript strict mode, generics, ESLint
| +-- nestjs.md # NestJS DI, Guards, Interceptors, DTOs
| +-- java.md # Java 17/21 & Spring Boot 3
| +-- php.md # PHP 8.x types, PDO, security, Composer
| +-- python.md # Python async, typing, pytest
| +-- django.md # Django / DRF security, serializers, async
| +-- fastapi.md # FastAPI Depends, Pydantic v2, async, test-driven verification
| +-- go.md # Go goroutines, channels, context, interfaces
| +-- kotlin.md # Kotlin / Android coroutines, Compose, Flow
| +-- swift.md # Swift 5.9+/6, SwiftUI, concurrency, optionals
| +-- csharp.md # C# 12 / .NET 8, EF Core, ASP.NET Core
| +-- c.md # C memory safety, UB, error handling
| +-- cpp.md # C++ RAII, move semantics, exception safety
| +-- qt.md # Qt object model, signals/slots, GUI perf
| +-- css-less-sass.md # CSS/Less/Sass variables, responsive design
| +-- architecture-review-guide.md # SOLID, anti-patterns, coupling/cohesion
| +-- code-quality-universal.md # Reuse audit, parameter sprawl, TOCTOU, no-op updates
| +-- performance-review-guide.md # Core Web Vitals, N+1, memory leaks
| +-- security-review-guide.md # Security checklist (all languages)
| +-- common-bugs-checklist.md # Language-specific bug patterns
| +-- code-review-best-practices.md # Communication & process guidelines
|
+-- assets/
| +-- review-checklist.md # Quick reference checklist
| +-- pr-review-template.md # PR review comment template
|
+-- scripts/
+-- pr-analyzer.py # PR complexity analyzer
Clone to your Claude Code skills directory:
# macOS / Linux
git clone https://github.com/awesome-skills/code-review-skill.git \
~/.claude/skills/code-review-skill
# Windows (PowerShell)
git clone https://github.com/awesome-skills/code-review-skill.git `
"$env:USERPROFILE\.claude\skills\code-review-skill"
Or add to an existing plugin:
cp -r code-review-skill ~/.claude/plugins/your-plugin/skills/code-review/
Once installed, activate the skill in your Claude Code session:
Use code-review-skill to review this PR
Or create a custom slash command in .claude/commands/:
<!-- .claude/commands/review.md -->
Use code-review-skill to perform a thorough review of the changes in this PR.
Focus on: security, performance, and maintainability.
Example prompts:
| Prompt | What happens |
|---|---|
Review this React component | Loads react.md - checks hooks, Server Components, Suspense patterns |
Review this Java PR | Loads java.md - checks virtual threads, JPA, Spring Boot 3 patterns |
Security review of this Go service | Loads go.md + security-review-guide.md |
Architecture review | Loads architecture-review-guide.md - SOLID, anti-patterns, coupling |
Performance review | Loads performance-review-guide.md - Web Vitals, N+1, complexity |
useActionState - Unified form state managementuseFormStatus - Access parent form status without prop drillinguseOptimistic - Optimistic UI updates with automatic rollbackuse() Hook for consuming Promises@ConfigurationProperties, ProblemDetailequals/hashCode on Entitiesunsafe code review requirements (mandatory SAFETY comments)thiserror for libraries, anyhow for applicationscontext.Context propagation%wnoexceptContributions are welcome! See CONTRIBUTING.md for guidelines.
Ideas:
MIT © awesome-skills
Code Review Skill 是专为 Claude Code 打造的生产级代码审查技能,将 AI 辅助的代码审查从模糊建议转变为结构化、一致且专业级的流程。
覆盖 20+ 种语言和框架,拥有超过 16,000 行精心整理的代码审查指南——按需加载,最大程度减少上下文占用。
blocking · important · nit · suggestion · learning · praise| 分类 | 技术栈 | 指南文件 | 行数 |
|---|---|---|---|
| 前端 | ⚛️ React 19 / Next.js / TanStack Query v5 | reference/react.md | ~870 |
| 💚 Vue 3.5 Composition API | reference/vue.md | ~920 | |
| 🔮 Angular 17+ / Signals / Zoneless | reference/angular.md | ~420 | |
| 🔥 Svelte 5 / SvelteKit | reference/svelte.md | ~1,060 | |
| 🎨 CSS / Less / Sass | reference/css-less-sass.md | ~660 | |
| 🔷 TypeScript | reference/typescript.md | ~540 | |
| 后端 | ☕ Java 17/21 + Spring Boot 3 | reference/java.md | ~410 |
| ⚡ FastAPI | reference/fastapi.md | ~590 | |
| PHP 8.x | reference/php.md | ~700 | |
| 📦 NestJS | reference/nestjs.md | ~590 | |
| 🐍 Django / DRF | reference/django.md | ~1,030 | |
| 🐍 Python | reference/python.md | ~1,070 | |
| 🐹 Go | reference/go.md | ~990 | |
| 🦀 Rust | reference/rust.md | ~840 | |
| 💻 C# / .NET 8 | reference/csharp.md | ~520 | |
| 移动 / 系统 | 📱 Kotlin / Android | reference/kotlin.md | ~1,020 |
| 🍎 Swift / SwiftUI | reference/swift.md | ~930 | |
| ⚙️ C | reference/c.md | ~290 | |
| 🔩 C++ | reference/cpp.md | ~390 | |
| 🖥️ Qt 框架 | reference/qt.md | ~190 | |
| 架构 | 🏛️ 架构设计审查 | reference/architecture-review-guide.md | ~470 |
| ⚡ 性能审查 | reference/performance-review-guide.md | ~820 | |
| 🔍 通用质量反模式 | reference/code-quality-universal.md | ~490 |
阶段一 - 上下文收集
理解 PR 范围、关联 Issue 和实现意图
|
v
阶段二 - 高层级审查
架构设计 - 性能影响 - 测试策略
|
v
阶段三 - 逐行深度分析
逻辑正确性 - 安全漏洞 - 可维护性 - 边界情况
|
v
阶段四 - 总结与决策
结构化反馈 - 审批状态 - 后续行动项
| 标记 | 含义 |
|---|---|
🔴 blocking | 合并前必须修复 |
🟠 important | 应当修复,视情况可能阻塞合并 |
🟡 nit | 风格或偏好上的小问题 |
🔵 suggestion | 值得考虑的可选优化 |
📚 learning | 给作者的教育性说明 |
🌟 praise | 明确表扬优秀代码 |
code-review-skill/
|
+-- SKILL.md # 核心技能,激活时加载(~190 行)
+-- README.md
+-- LICENSE
+-- CONTRIBUTING.md
|
+-- reference/ # 按需加载的语言指南
| +-- react.md # React 19 / Next.js / TanStack Query v5
| +-- vue.md # Vue 3.5 组合式 API
| +-- angular.md # Angular 17+ / Signals / Zoneless
| +-- svelte.md # Svelte 5 / SvelteKit
| +-- rust.md # Rust 所有权、async/await、unsafe
| +-- typescript.md # TypeScript strict 模式、泛型、ESLint
| +-- nestjs.md # NestJS 依赖注入、Guard、Interceptor、DTO
| +-- java.md # Java 17/21 & Spring Boot 3
| +-- php.md # PHP 8.x 类型、PDO、安全、Composer
| +-- python.md # Python async、类型注解、pytest
| +-- django.md # Django / DRF 安全、Serializer、异步视图
| +-- fastapi.md # FastAPI Depends、Pydantic v2、异步、测试驱动验证
| +-- go.md # Go goroutine、channel、context、接口
| +-- kotlin.md # Kotlin / Android 协程、Compose、Flow
| +-- swift.md # Swift 5.9+/6、SwiftUI、并发、可选值
| +-- csharp.md # C# 12 / .NET 8、EF Core、ASP.NET Core
| +-- c.md # C 内存安全、UB、错误处理
| +-- cpp.md # C++ RAII、移动语义、异常安全
| +-- qt.md # Qt 对象模型、信号/槽、GUI 性能
| +-- css-less-sass.md # CSS/Less/Sass 变量、响应式设计
| +-- architecture-review-guide.md # SOLID、反模式、耦合度分析
| +-- code-quality-universal.md # 复用审查、参数膨胀、抽象泄漏、TOCTOU
| +-- performance-review-guide.md # Core Web Vitals、N+1、内存泄漏
| +-- security-review-guide.md # 安全审查清单(全语言通用)
| +-- common-bugs-checklist.md # 各语言常见 Bug 模式
| +-- code-review-best-practices.md # 沟通与流程最佳实践
|
+-- assets/
| +-- review-checklist.md # 快速参考清单
| +-- pr-review-template.md # PR 审查评论模板
|
+-- scripts/
+-- pr-analyzer.py # PR 复杂度分析工具
克隆到 Claude Code skills 目录:
# macOS / Linux
git clone https://github.com/awesome-skills/code-review-skill.git \
~/.claude/skills/code-review-skill
# Windows(PowerShell)
git clone https://github.com/awesome-skills/code-review-skill.git `
"$env:USERPROFILE\.claude\skills\code-review-skill"
或添加到现有插件:
cp -r code-review-skill ~/.claude/plugins/your-plugin/skills/code-review/
安装后,在 Claude Code 会话中激活技能:
Use code-review-skill to review this PR
或在 .claude/commands/ 中创建自定义斜杠命令:
<!-- .claude/commands/review.md -->
使用 code-review-skill 对这次 PR 的变更进行全面审查。
重点关注:安全性、性能和可维护性。
示例提示词:
| 提示词 | 效果 |
|---|---|
审查这个 React 组件 | 加载 react.md,检查 Hooks、Server Components、Suspense |
审查这个 Java PR | 加载 java.md,检查虚拟线程、JPA、Spring Boot 3 |
对这个 Go 服务进行安全审查 | 加载 go.md + security-review-guide.md |
架构审查 | 加载 architecture-review-guide.md,检查 SOLID 与反模式 |
性能审查 | 加载 performance-review-guide.md,分析 Web Vitals、N+1 等 |
useActionState — 统一的表单状态管理useFormStatus — 无需 props 透传即可访问父表单状态useOptimistic — 带自动回滚的乐观 UI 更新use() Hook 消费 Promise@ConfigurationProperties、ProblemDetailequals/hashCode 实现unsafe 代码审查要求(必须有 SAFETY 注释)thiserror,应用用 anyhowcontext.Context 传播规范%wnoexcept欢迎贡献!请查阅 CONTRIBUTING.md 了解规范。
可贡献方向:
MIT © awesome-skills
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