From 02a0ba0602d1133d3b0dccf9ba57ce2582bdedd9 Mon Sep 17 00:00:00 2001 From: Bastien Chanot Date: Thu, 18 Jun 2026 17:00:24 +0200 Subject: [PATCH] docs(claude-md): add subagent delegation guidance to Workflow Expand the sub-agent bullet to push fan-out work (many files, parallel searches, multi-point checks) to sub-agents rather than serial iteration, and default to delegation for multi-file exploration. Counters Opus 4.8's tendency to under-delegate. Co-Authored-By: Claude --- CLAUDE.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index 09537bb..4fe07c0 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -45,7 +45,10 @@ Apply unless repo-specific instructions override. (≤2 files, obvious fix). - Minimal changes unless broader refactor requested. State trade-offs. - Sub-agents keep main context clean — one task per sub-agent. - More compute on hard problems. + More compute on hard problems. Task fans out across independent + items (many files, parallel searches, multi-point checks) → delegate + to sub-agents, don't iterate serially. Default to delegation for + multi-file exploration. Counters Opus 4.8 tendency to under-delegate. - One question upfront if needed — never interrupt mid-task. *Exception: skill-mandated gates and checkpoints (orchestrator validation gates, approval gates, darwin checkpoints) always fire.*