ultra-reviewlisted
Install: claude install-skill rocky2431/ultra-builder-pro-cli
# /ultra-review - Ultra Review System
Orchestrates parallel code review using specialized agents. All findings written to JSON files to prevent context window pollution.
## Workflow Tracking (MANDATORY)
**On command start**, create tasks for each major step using `TaskCreate`:
| Step | Subject | activeForm |
|------|---------|------------|
| 1 | Setup & Scope Detection | Detecting diff scope... |
| 2 | Agent Selection | Selecting review agents... |
| 3 | Background Execution | Running review agents... |
| 4 | Wait & Coordinate | Waiting for agent results... |
| 5 | Report to User | Generating review report... |
**Before each step**: `TaskUpdate` → `status: "in_progress"`
**After each step**: `TaskUpdate` → `status: "completed"`
**On context recovery**: `TaskList` → resume from last incomplete step
## Usage
```
/ultra-review # Full review (smart skip based on diff content)
/ultra-review all # Force ALL 6 agents, no auto-skip (pre-merge gate)
/ultra-review quick # Quick review (review-code only)
/ultra-review security # Security focus (review-code + review-errors)
/ultra-review tests # Test quality focus (review-tests only)
/ultra-review recheck # Re-check only P0/P1 files from last session
/ultra-review delta # Review only changes since last review session
/ultra-review <agents...> # Custom: e.g., /ultra-review tests errors types
```
### Scope Options (combinable with any mode)
```
/ultra-review --pr 123