← ClaudeAtlas

everywhere-elselisted

Use immediately after fixing a bug or improving a pattern in one place — before reporting done. Asks the question agents never ask themselves: 'did you do that anywhere else?' Enumerates the full population of sibling sites (other templates, scenarios, endpoints, components, fixtures, configs that share the same pattern), audits every one for the same defect, and applies the fix across the population — or explicitly reports which siblings were checked and found clean. Use when a fix was just applied to one instance of a repeated structure, when a codebase has N parallel implementations of anything, or when a report says 'fixed' but only one file changed.
mikestangdevs/craft-skills · ★ 2 · Code & Development · score 75
Install: claude install-skill mikestangdevs/craft-skills
# Everywhere Else ## The failure mode this fixes A bug gets found in one scenario, one endpoint, one template — and fixed *there*. The report says "fixed," the test goes green, everyone moves on. But the codebase has nineteen siblings built by the same hand, from the same copy-paste, with the same defect — and the fix just made instance #7 correct while #1–6 and #8–20 still lie. The user discovers this one sibling at a time, each discovery costing a full debugging session that ends in "oh, it's the same bug again." Agents are biased toward the point fix: the task said "fix the chart in scenario 12," so scenario 12 gets fixed and the task is "done." Nobody asked the question that turns a point fix into a real fix: **is this defect a member of a population?** ## When to Use This Skill - You just fixed a defect in one instance of anything that has siblings — handlers, templates, scenarios, components, parsers, fixtures, migrations, configs - The fix corrected a *pattern* (wrong field semantics, missing null check, stale API shape) rather than a one-off typo - The codebase contains parallel surfaces that must stay consistent (every page that renders X, every job that emits Y) - A report is about to say "fixed" and the diff touches one file in a directory of twenty look-alikes - The user asks "did you do that anywhere else?" — if they have to ask, the skill fired too late **Don't use when:** the defect is genuinely unique to its site (a typo in one string), or the "siblings"