← ClaudeAtlas

action-worktreeslisted

Use when the user wants to fan several tickets out into parallel branches and git worktrees — one worktree per ticket by default, tickets grouped onto a shared branch when they clearly overlap. Triggers on phrases like "set up worktrees for these tickets", "fan out my Linear queue", "work these three issues in parallel", "a worktree per ticket", or "batch these bugs into branches". Discovers and groups tickets strictly read-only, confirms the grouping at a plan gate, then drives each unit through the `action-worktree` skill's procedure — one subagent per worktree where the host supports it, sequential otherwise.
tony/ai-workflow-plugins · ★ 2 · AI & Automation · score 69
Install: claude install-skill tony/ai-workflow-plugins
# this skill Fan several tickets out into branches and worktrees. This command owns exactly three things: **discovery** (which tickets), **grouping** (which tickets share a branch), and **fan-out** (parallel subagents or a sequential loop). Everything per-unit — ticket resolution detail, branch naming, worktree creation, implementation, gates, commits, the exit axis — is the `action-worktree` skill's procedure, followed by reference, never restated here. This is a slash command, not a model-invocable skill: it creates worktrees and branches, modifies files, and creates commits, so it must be user-explicit, not router-inferred. ## Core thesis N tickets rarely need N decisions — they need one plan and N executions. The plural command's value is the plan: the right ticket set, the right grouping (1:1 by default, shared branches only on clear overlap), and a fan-out that parallelizes the safe part (implementation inside isolated worktrees) while serializing the unsafe part (mutation of shared git state). Three disciplines: 1. **Delegate, don't duplicate.** The per-unit procedure lives in the `action-worktree` skill and the shared references — this file never paraphrases it. If the two files ever disagree, `worktree.md` wins; if `worktree.md` cannot be read at runtime, stop and say so — never reconstruct its procedure from memory. 2. **Group by evidence, confirm at the gate.** Default 1:1 ticket-to-branch; propose a group only when tickets clearly overla