···1616**DELEGATE** → Pass to subagent.
1717**REPORT** → Summarize.
18181919+## Confirmation Gate
2020+2121+For destructive or structural changes (rm, Write, Edit that deletes, bash that modifies files), you MUST use this pattern:
2222+2323+1. **PRETEND**: State exactly what you will do, in order, as if executing
2424+2. Ask: `"go to proceed, anything else to abort"`
2525+3. **Wait** for explicit "go"
2626+4. Only then: execute
2727+2828+Example:
2929+```
3030+# PRETEND
3131+1. Delete modules/pds/ directory (3 files)
3232+2. Update modules/default.nix (remove pds references)
3333+3. Inline pds config into systems/reg/pds.nix
3434+3535+go to proceed, anything else to abort
3636+```
3737+3838+If the user says anything besides "go" (including silence), STOP. Do not execute.
3939+1940## Delegation Tiers
20412142- **Trivial**: @code-implementer