review-locallisted
Install: claude install-skill e128/dotnet-reference
# Review — Local Mode
Comprehensive code review using orchestrated agents. Discovers changed .NET files from git history, dynamically identifies code review agents, runs them in parallel, and produces a consolidated report grouped by severity.
**Standard mode (default):** Day-to-day review, fast turnaround, diff-scoped agent review only.
**Full mode (`--full`):** Pre-ship review, maximum coverage — adds solution-wide Roslyn semantic analysis (antipatterns + circular dependencies).
## Usage
```
code review days 1 # Standard
review --full last 3 days # Full 3-vector
dry run # Preview only
critical only # Filter to CRITICAL
--perf # Spawn a performance-focused review agent
--test-quality # Load enriched test rubric
```
## Scope Parameters
| Pattern in user message | Scope |
|----------------------------------|-------------------------------------------------|
| `days N` / `last N days` | `scripts/diff.sh --json` (days-scoped) |
| `commits N` / `last N commits` | `scripts/diff.sh --json` (commit-range) |
| `dry run` / `preview` | Discovery only, no agents |
| `critical only` / `high+` | Filter report by min severity |
| `--perf` | Spawn a performance-focused review agent on diff scope |
| `--test-quality` | Inje