From ai-eng-quality
Runs four parallel code reviews — code quality, security, architecture, and performance — each in an isolated context, then synthesizes findings into a unified report with cross-axis issues and prioritized actions.
How this command is triggered — by the user, by Claude, or both
Slash command
/ai-eng-quality:deep-reviewThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Deep Review Command Run the four core review axes in parallel with isolated context windows: $ARGUMENTS ## What It Does Launches **4 parallel reviews**, each in its own context window: | Axis | Agent | Skill | Focus | |------|-------|-------|-------| | Code Quality | code-reviewer | thermo-nuclear-code-quality-review | Maintainability, structure, 1k-line rule, spaghetti | | Security | security-scanner | thermo-nuclear-security-review | Injection, auth bypass, secrets, OWASP | | Architecture | architect-advisor | thermo-nuclear-architecture-review | Coupling, boundaries, layering, de...
Run the four core review axes in parallel with isolated context windows: $ARGUMENTS
/ai-eng/deep-review src/
/ai-eng/deep-review . --from-ref=main
/ai-eng/deep-review src/auth.ts src/payments.ts
Launches 4 parallel reviews, each in its own context window:
| Axis | Agent | Skill | Focus |
|---|---|---|---|
| Code Quality | code-reviewer | thermo-nuclear-code-quality-review | Maintainability, structure, 1k-line rule, spaghetti |
| Security | security-scanner | thermo-nuclear-security-review | Injection, auth bypass, secrets, OWASP |
| Architecture | architect-advisor | thermo-nuclear-architecture-review | Coupling, boundaries, layering, dependency direction |
| Performance | performance-engineer | thermo-nuclear-performance-review | Complexity, memory, N+1, network, bundle size |
Each review runs with --depth=deep.
Use crew_agent with 4 parallel subagents:
const reviews = await Promise.all([
crew_agent({ prompt: "Review code quality...", subagent_type: "reviewer" }),
crew_agent({ prompt: "Review security...", subagent_type: "security-reviewer" }),
// ...
]);
Use Agent.create with cloud runtime and 4 parallel agents.
Use Runner.run() with 4 parallel Agent instances.
Use 4 parallel prompt sessions.
Use crew_agent with run_in_background: true for each axis.
# Deep Review Report
## Summary
- **Overall**: CHANGES_REQUESTED
- **Critical issues**: 3
- **Warnings**: 12
- **Cross-axis findings**: 2
## Code Quality
[Findings from code-reviewer with --depth=deep]
## Security
[Findings from security-scanner with --depth=deep]
## Architecture
[Findings from architect-advisor with --depth=deep]
## Performance
[Findings from performance-engineer with --depth=deep]
## Cross-Axis Findings
[Issues that span multiple axes]
## Action Items (Prioritized)
1. [P0] Fix SQL injection (Security + Code Quality)
2. [P0] Split 1,200-line file (Code Quality + Architecture)
3. [P1] Add connection pooling (Performance)
...
## Approval Bar
- No critical security vulnerabilities
- No structural regressions
- No performance degradation
- No files over 1k lines without justification
/ai-eng/review instead/ai-eng/review --type=security$ARGUMENTS
npx claudepluginhub p/v1truv1us-ai-eng-quality-plugins-ai-eng-quality/deep-reviewConducts multi-perspective code review with 5 specialized agents, autonomous fix loop, and generates Deep Review Report.