← ClaudeAtlas

da-review-alllisted

Review a change across every layer it touches, as a tech lead. Use for code review, PR review, or checking work before shipping — especially when a change spans backend, frontend, and infrastructure. Reviews each layer in its own subagent, then finds the irreversible risks that fall between them, like a contract and its consumer shipping out of order. Read-only.
bwkw/dotagents · ★ 0 · Code & Development · score 76
Install: claude install-skill bwkw/dotagents
# /da-review-all — cross-layer review dispatcher Works out which layers a change touches and runs **only the layer reviews that apply**. When one change spans several layers — a schema change, the code that reads it, the infrastructure that hosts it — this removes both the work of invoking each layer by hand and, more importantly, the **cross-layer irreversibility risks that are invisible from inside any single layer**. **Important: this skill never modifies code or configuration. It reports findings only.** The one-page Canvas described in Step 5 is a review artifact, not a source or configuration change. ## Preconditions | Condition | If unmet | |---|---| | The working directory is inside a git repository | Stop, say so, do not proceed | | A diff, path, or `all` resolves to at least one file | Report "no changes", suggest `path/` or `all`, and stop | ## Position in the workflow | Upstream | This skill | Downstream | |---|---|---| | implementation complete, or a PR open | `/da-review-all` | `/da-fix-plan` to triage into an ordered plan, then fix | ## What this skill delegates to The three layer reviews are full skills with their own posture, process and perspective clusters. They are not typed — this dispatcher reaches them, and so does a request naming a layer. This skill classifies the change, runs the layers that apply, then does the part none of them can. | Layer skill | Owns | |---|---| | `x-review-backend` | server-side source, migrations and schema, contracts