From codebrain
Use when reviewing code for bugs, performance issues, security vulnerabilities, or quality problems. Deep agentic review that reads full files and traces imports, not just diffs. Categorizes by severity.
npx claudepluginhub chrsmay/codebrain-plugin --plugin codebrainThis skill uses the workspace's default tool permissions.
Agentic code review with severity ratings. Reviews full files (not just diffs), traces imports, and categorizes findings.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Agentic code review with severity ratings. Reviews full files (not just diffs), traces imports, and categorizes findings.
/codebrain:review [path]
Determine scope.
git diff --name-only main...HEADgit diff --name-only HEAD + git diff --name-only --stagedRead project conventions.
mcp__codebrain__codebrain_config_read for project settingsAnalyze blast radius (for large codebases).
mcp__code_review_graph__get_impact_radius_tool for each changed filemcp__code_review_graph__get_review_context_tool to load optimal review contextmcp__codebase_memory__trace_call_path for changed functions to find all consumersSpawn the verifier agent in review mode with:
Present the review report.
Offer fix options.
Persist the review.
.codebrain/reviews/{date}-{branch-or-scope}.md via MCP toolsany types (use unknown if truly unknown)as const for literal types# Code Review Report
**Scope:** [files reviewed]
**Date:** [ISO date]
**Branch:** [branch name]
## Summary
| Category | Critical | Major | Minor |
|----------|----------|-------|-------|
| Bug | 0 | 0 | 0 |
| Performance | 0 | 0 | 0 |
| Security | 0 | 0 | 0 |
| Clarity | 0 | 0 | 0 |
## Findings
### Critical
_None_
### Major
| # | Category | File:Line | Description | Fix |
|---|----------|-----------|-------------|-----|
| 1 | Bug | src/api.ts:42 | ... | ... |
### Minor
| # | Category | File:Line | Description | Fix |
|---|----------|-----------|-------------|-----|
| 1 | Clarity | src/utils.ts:15 | ... | ... |