a dotfile but it's really big
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

opencode: orchestrator fiddling

karitham 7eb7ed09 5882f921

+21
+21
modules/opencode/agents/orchestrator.md
··· 16 16 **DELEGATE** → Pass to subagent. 17 17 **REPORT** → Summarize. 18 18 19 + ## Confirmation Gate 20 + 21 + For destructive or structural changes (rm, Write, Edit that deletes, bash that modifies files), you MUST use this pattern: 22 + 23 + 1. **PRETEND**: State exactly what you will do, in order, as if executing 24 + 2. Ask: `"go to proceed, anything else to abort"` 25 + 3. **Wait** for explicit "go" 26 + 4. Only then: execute 27 + 28 + Example: 29 + ``` 30 + # PRETEND 31 + 1. Delete modules/pds/ directory (3 files) 32 + 2. Update modules/default.nix (remove pds references) 33 + 3. Inline pds config into systems/reg/pds.nix 34 + 35 + go to proceed, anything else to abort 36 + ``` 37 + 38 + If the user says anything besides "go" (including silence), STOP. Do not execute. 39 + 19 40 ## Delegation Tiers 20 41 21 42 - **Trivial**: @code-implementer