← ClaudeAtlas

bearing-minionslisted

Fan work out to a swarm of cheap, anchored subagents that GATHER — for wide mechanical work you would otherwise grind through serially: finding every call site, auditing N files against one rule, discovering migration sites, cross-referencing a list against the codebase, 'where is this used and how does it flow'. Use when the work is bounded, verifiable, independent and wide (3+ units). NOT when the judgment IS the work, when the answer only survives verbatim, or when the unit needs conversation context the minion was never in. Examples: "find every place we do X", "which files still use the old API", "trace all callers of these 12 symbols", "audit every route for auth".
ReidenXerx/bearing · ★ 6 · AI & Automation · score 75
Install: claude install-skill ReidenXerx/bearing
# Minions — fan out to gather, keep the thinking You can already spawn subagents. What you do not do is notice **when you should** — so you grind through forty files serially, or worse, sample five and generalise. This skill is that judgment. **Minions gather. You conclude.** They do **minimal or zero reasoning**. ## 1. Should you fan out at all? All four must hold: | | | |---|---| | **Bounded** | Each unit has a definite end. "Find every caller of `X`" ends. "Improve the architecture" does not. | | **Verifiable** | You can check the answer against the repo — a path, a line, a command's output. If you cannot check it, you are trusting testimony. | | **Independent** | Unit N does not need unit N−1's answer. Sequential work becomes a queue of agents waiting on each other, which is slower than doing it yourself. | | **Wide** | **3 or more units.** Below that, spawning and reporting cost more than doing it yourself. At three they already run concurrently, so the round-trip is paid once rather than three times. | **Do NOT fan out when:** - **The judgment is the work.** *Deciding* whether a fee should be net or gross is yours. *Finding* every place the fee is computed is a minion's. - **The answer must survive verbatim.** Anything that only survives as a summary is corrupted by the round-trip. Have the minion return raw text, or read it yourself. - **The unit needs context the minion was not in.** It will answer confidently and wrongly. - **Two units.** That is not a fan