← ClaudeAtlas

multi-agent-delegationlisted

Prevent no-op and silent delegation failures when an orchestrator agent hands work to subagents. Use when a subagent re-delegates to a child agent and idles instead of working, when a completion notice arrives but no artifacts exist (git status shows no changes), when execution-environment differences (WSL / Git Bash / PowerShell / sandbox) fake success silently, or before writing any delegation prompt, especially when multiple writers could share one checkout containing WIP. Canonical source for mandatory delegation-prompt clauses, artifact verification of completion notices, resume-based recovery, and ledger-as-spec parallel delegation. Symptom keywords: silent failure, no-op delegation, "delegated and waiting", 完了通知なのに成果物が無い, 子へ再委譲して待機, 空振り, 無言失敗.
h8nc4y/multi-agent-delegation · ★ 0 · AI & Automation · score 67
Install: claude install-skill h8nc4y/multi-agent-delegation
# Multi-Agent Delegation Discipline Discipline for an orchestrator agent that delegates work to subagents, so that delegation does not end in a no-op (a successful-looking completion notice with zero artifacts) or a silent failure (an execution-environment difference that fakes success). ## When To Use - You delegated a task to a subagent and received a completion notice, but the expected files or changes do not exist. - The completion notice text reads as success, yet `git status --porcelain` or an artifact-existence check finds nothing. - You are about to write a delegation prompt and want the mandatory clauses (prevention is cheaper than recovery). - A review pass produced many findings and you want to fan them out to parallel subagents safely (see the ledger-as-spec section). ## Core Rule A subagent's completion notice is a claim, not evidence. Verify artifacts before acting on it or reporting it upstream. ## Tool Portability The principles here are tool-agnostic. Concrete names used below map as follows: - Claude Code: the `Agent` tool spawns subagents; `SendMessage` resumes a previously spawned agent by its id with context intact. - Codex and other agent CLIs: spawning is starting a delegated task or thread; "resume" means re-instructing the same thread or session so its context is retained, instead of starting a new one. - Verification commands are plain Git and shell, and work in any environment. ## Procedure ### 1. Mandatory clauses in every d