← ClaudeAtlas

aod-planlisted

Plan stage orchestrator that runs all three Plan sub-steps (spec → project-plan → tasks) in sequence with governance gates. Stops on rejection, continues through approvals. Use this skill when you need to run the full Plan stage, navigate planning sub-steps, or resume after a rejection.
davidmatousek/tachi · ★ 75 · AI & Automation · score 82
Install: claude install-skill davidmatousek/tachi
# Plan Stage Orchestrator Skill ## Purpose Orchestrates the full Plan stage by running spec → project-plan → tasks in sequence. After each sub-step completes and its governance review passes (APPROVED), the orchestrator automatically advances to the next sub-step. If any review returns CHANGES_REQUESTED or BLOCKED, the orchestrator stops and reports the rejection so the user can fix and re-run `/aod.plan` to resume. With 1M context, all three artifacts and their reviews fit comfortably in a single session. ## How It Works ### Step 1: Determine Feature Context 1. Get branch: `git branch --show-current` → extract NNN prefix 2. If on `main` and a PRD exists (e.g., `docs/product/02_PRD/{NNN}-*.md`), **automatically create the feature branch** (`git checkout -b {NNN}-{kebab-name}`) per git workflow rules. Do NOT ask the user — feature branches are mandatory, not optional. 3. **Open Draft PR**: After creating the branch, push it and open a draft PR so work is visible early: ```bash git commit --allow-empty -m "chore({NNN}): open feature branch" git push -u origin {NNN}-{kebab-name} gh pr create --draft \ --title "{NNN}: {Feature Name}" \ --body "Draft PR for feature {NNN}. Opened automatically at plan stage." ``` If `gh` is unavailable, skip silently (graceful degradation). Store the PR number for later use. 4. Derive specs directory: `specs/{NNN}-*/` 5. If no specs directory found, check `.aod/spec.md` as fallback 6. If no feature context found: w