← ClaudeAtlas

meta-looplisted

Orchestration loop - plan, delegate to parallel workers, verify, synthesize - with a premium advisor consulted off the hot path. The session model orchestrates, fan-out runs as Agent calls against two pinned subagents (`reader` for read-only gathering, `worker` for anything that changes the tree), and the advisor agent is pulled in for decomposition critique, risk, and taste. MUST be used whenever the user asks to run something as a loop, orchestrate, fan out, or delegate to workers, whenever a requested task visibly splits into three or more independent subtasks, and for any mid-loop situation - verifying a worker's result against its claims, re-delegating a rejected subtask, or critiquing a decomposition. Also on "/meta-loop". Not for single-step tasks.
anton-winter-arch/dotagents · ★ 1 · AI & Automation · score 72
Install: claude install-skill anton-winter-arch/dotagents
# meta-loop Three-tier loop: **orchestrator** (this session) runs the hot path plan → delegate → verify → synthesize; **workers** (`reader` on sonnet, `worker` on opus) do parallel execution; **advisor** (fable, fresh context) is a consulted advisor off the hot path. The economics: parallelism is the leverage, not a cheaper worker. A worker runs on the same tier the orchestrator would have used doing the work itself, so fanning out costs wall-clock and context - never quality. The saving is structural rather than per-token: no single agent fills a context window, so several shorter threads cost less in aggregate than one long thread that maxes out and compacts repeatedly. Session-model note: a skill cannot set the main-thread model. Run the session on Opus (`/model opus`) so the orchestrator matches its writers; on a Fable session the loop still works - the advisor then buys a fresh, unanchored context rather than a model upgrade. Worker tier never follows the session: `reader` and `worker` pin their own models in frontmatter, because an agent with no pin inherits the session model, which silently downgrades a fan-out on a cheap session and silently runs it on the priciest tier on an expensive one. ## Phase 1 - Plan (orchestrator) Write the plan before spawning anything: subtasks, each with a concrete deliverable and acceptance criteria the orchestrator can check from evidence (diff, test output, file list - not the worker's own say-so). Mark which subtasks are independen