Help us improve
Share bugs, ideas, or general feedback.
Comprehensive code review plugin with 53 specialized agents
npx claudepluginhub iron-ham/claude-deep-reviewComprehensive code review skill with 53 specialized agents for architecture, code quality, error handling, types, comments, tests, accessibility, localization, concurrency, performance, simplification, security, and platform-specific reviews (iOS, macOS, Android, Angular, TypeScript, Next.js, Vue.js, Python, Django, Ruby, Rust, Go, Rails, Flutter, Java/Spring Boot, C#/.NET, PHP/Laravel, C/C++, React Native, Svelte/SvelteKit, Elixir/Phoenix, Kotlin Server, Scala, Terraform, Shell/Bash, Docker, Kubernetes, GraphQL, GitHub Actions) with automatic platform detection and confidence scoring.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 80 focused plugins, 185 specialized agents, and 153 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
A comprehensive code review skill for Claude Code that combines architecture analysis, code review, error handling audit, type design analysis, comment verification, test coverage analysis, accessibility audit, localization review, concurrency analysis, performance analysis, code simplification, and security auditing into a single command.
# Add the marketplace
/plugin marketplace add Iron-Ham/claude-deep-review
# Install the plugin
/plugin install deep-review@claude-deep-review
To update later:
/plugin marketplace update
# Clone to your global skills directory
git clone https://github.com/Iron-Ham/claude-deep-review.git ~/.claude/skills/deep-review
# Clone to a specific project's skills directory
git clone https://github.com/Iron-Ham/claude-deep-review.git /path/to/your/project/.claude/skills/deep-review
# Review current PR/branch changes (default)
/deep-review
# Explicit PR scope
/deep-review --pr
# Review uncommitted changes only
/deep-review --changes
# Review a specific path
/deep-review src/features
# Full review with all cross-cutting agents (+ auto-detected platforms)
/deep-review full
# Code quality + error handling only
/deep-review code errors
# Type design + test coverage analysis
/deep-review types tests
# Architecture analysis only
/deep-review arch
# Performance analysis
/deep-review perf
# Code simplification suggestions
/deep-review simplify
# Explicitly include iOS reviewer
/deep-review ios --pr
# iOS + macOS reviewers
/deep-review apple --pr
# Both TypeScript frontend + backend reviewers
/deep-review ts --pr
# iOS + Android reviewers
/deep-review mobile --pr
# Next.js reviewer (Server Components, App Router)
/deep-review nextjs --pr
# Vue.js reviewer (Composition API, Nuxt)
/deep-review vue --pr
# Django reviewer (ORM, DRF, migrations)
/deep-review django --pr
# Angular reviewer (RxJS, DI, change detection)
/deep-review angular --pr
# Docker + Kubernetes reviewers
/deep-review containers --pr
# GraphQL reviewer (schema, resolvers, security)
/deep-review graphql --pr
# Terraform + Shell reviewers
/deep-review infra --pr
# Python and Rust reviewers
/deep-review python rust --pr
# Security audit (injection, auth, access control, crypto, supply chain)
/deep-review security --pr
# Agent instructions reviewer (CLAUDE.md, AGENTS.md, prompts)
/deep-review agent-instructions --pr
Platform reviewers are also automatically included when the changed files are relevant to a specific platform. For example, running /deep-review on a project with iOS Swift changes will include the iOS reviewer. The system uses its judgment to disambiguate — .swift files in a macOS project trigger the macOS reviewer (not iOS), .vue files trigger the Vue reviewer, angular.json projects trigger Angular, Dockerfile changes trigger Docker, K8s manifests trigger Kubernetes, .graphql files trigger GraphQL, .github/workflows/*.yml changes trigger GitHub Actions, CLAUDE.md/AGENTS.md/.cursorrules/.claude/ changes trigger the Agent Instructions reviewer, and .ts files in an Express app trigger the backend reviewer (not the frontend one).
# Full review of PR changes (+ auto-detected platforms)
/deep-review full --pr
# Quick core review of uncommitted changes
/deep-review --changes
# Type and test analysis of specific directory
/deep-review types tests src/models
# Accessibility audit of PR
/deep-review a11y --pr
# Performance analysis of PR
/deep-review perf --pr