review-architecturelisted
Install: claude install-skill nielsmadan/skills
<!-- Generated from https://github.com/nielsmadan/agentic-coding — edits here are overwritten. -->
# Review Architecture
Macro-level review of system structure: how modules, layers, and components fit together. Complements `review-cleancode` (micro/code smells) and `review-interfaces` (single-interface design).
## Usage
```
/review-architecture # Review context-related code
/review-architecture --staged # Review staged changes against the surrounding architecture
/review-architecture --unpushed # Review all unpushed commits against the surrounding architecture
/review-architecture --changed # Review unstaged changes against the surrounding architecture
/review-architecture --all # Full system audit (parallel agents per category)
/review-architecture --multi # Also get external advisor opinions
```
## Scope
| Flag | Scope | Method |
|------|-------|--------|
| (none) | Context-related code | Files from the current conversation context. If no context, ask the user to specify a target or use `--staged`/`--changed`/`--all`. |
| `--staged` | Staged changes + their architectural context | `git diff --cached --name-only`, then read each file's surrounding module/layer to judge fit |
| `--unpushed` | Unpushed commits + their architectural context | `git diff --name-only $(git rev-list HEAD --not --remotes \| tail -1)^..HEAD`, then read each file's surrounding module/layer to judge fit |
| `--changed` | Unstaged changes +