A Claude Code plugin that bundles 16 specialized agents and 5 commands for exploring and analyzing existing codebases. It answers the question: where are the problems in this codebase, and what should I fix first?
Add this repository as a Claude Code marketplace, then install the plugin:
# Add the marketplace (one-time setup)
claude plugin marketplace add devdanzin/code-review-toolkit
# Install the plugin
claude plugin install code-review-toolkit@code-review-toolkitOr use the interactive plugin manager:
# Open the plugin manager
/plugin
# Go to the Discover tab, find code-review-toolkit, and installInstall the plugin directly without adding the marketplace:
claude plugin install code-review-toolkit --source github:devdanzin/code-review-toolkit --path plugins/code-review-toolkitClone the repo and launch Claude Code with --plugin-dir — the plugin is loaded for that session only, nothing is installed:
# Clone the repository
git clone https://github.com/devdanzin/code-review-toolkit.git
# Run Claude Code with the plugin loaded for this session
claude --plugin-dir code-review-toolkit/plugins/code-review-toolkitAfter installation, these commands are immediately available in Claude Code:
/code-review-toolkit:map # Understand project structure
/code-review-toolkit:health # Quick health assessment
/code-review-toolkit:hotspots # Find cleanup targets
/code-review-toolkit:explore # Full exploration (all agents)For your first time, start with map to understand the architecture, then health for a quick overview, then drill into specific areas with explore.
- 16 analysis agents covering concrete correctness defects (mutable defaults, late-binding closures, unreachable
exceptordering, asyncio pitfalls), architecture, git history context, consistency, complexity, test coverage, error handling, documentation, project documentation accuracy, type design, dead code, tech debt, pattern consistency, API surface review, test-invariant investigation, and git history analysis (fix propagation, churn×quality risk). - 5 commands (
explore,informed-explore,map,hotspots,health) for different analysis workflows. - 12 helper scripts for correctness scanning, complexity measurement, import analysis, dead symbol detection, test correlation, type counting, debt collection, test-invariant extraction, git history analysis, external-tool integration, shared utilities, and informed-briefing assembly.
- A bug-shape catalog and false-positive taxonomy (
data/) that powerinformed-explore, so a re-review hunts un-found siblings of known defect shapes instead of re-deriving the basics.
For detailed usage, agent descriptions, and recommended workflows, see the plugin README.
MIT — see LICENSE for details.
Originally created by Daisy (Anthropic). Adapted by Daniel Diniz.