← ClaudeAtlas

planninglisted

Generate comprehensive plans for new features by exploring the codebase, synthesizing approaches, validating with spikes, and decomposing into beads. Use when asked to plan a feature, create a roadmap, or design an implementation approach.
stotihv/skills · ★ 0 · Web & Frontend · score 62
Install: claude install-skill stotihv/skills
# Feature Planning Pipeline Generate quality plans through systematic discovery, synthesis, verification, and decomposition. ## Pipeline Overview ``` USER REQUEST → Worktree Setup → Discovery → Synthesis → Verification → Decomposition → Validation → Track Planning → Ready Plan ``` | Phase | Tool | Output | | ----------------- | ---------------------------------------- | ----------------------------------- | | 0. Worktree Setup | bd worktree | Isolated feature branch | | 1. Discovery | Parallel sub-agents, gkg, Librarian, exa | Discovery Report | | 2. Synthesis | Oracle | Approach + Risk Map | | 3. Verification | Spikes via MULTI_AGENT_WORKFLOW | Validated Approach + Learnings | | 4. Decomposition | file-beads skill | .beads/\*.md files | | 5. Validation | bv + Oracle | Validated dependency graph | | 6. Track Planning | bv --robot-plan | Execution plan with parallel tracks | ## Phase 0: Worktree Setup (Mandatory) **Why**: Beads are tracked in git. Without worktrees, branch switching causes conflicts when PRs merge. **Always create a worktree before creating beads for a feature:** ```bash # From main repo root bd worktree create .worktrees/<feature-name>