← ClaudeAtlas

plan-orchestratorlisted

Route hierarchical-planning intents to the correct backing script. Use when the user invokes /aura-frog:plan (with or without subcommand), mentions plan verbs (expand/next/replan/promote/archive/freeze/thaw/undo/status/conflicts), or types a plan-vocabulary bare word with .claude/plans/active.json present. Owns verb table, intent classifier, and 3-stage routing pipeline.
nguyenthienthanh/aura-frog · ★ 19 · Data & Documents · score 82
Install: claude install-skill nguyenthienthanh/aura-frog
> **AI-consumed reference.** Optimized for Claude to read during execution. > Human-readable explanation: see [docs/architecture/HIERARCHICAL_PLANNING.md](../../../docs/architecture/HIERARCHICAL_PLANNING.md) > or [docs/getting-started/](../../../docs/getting-started/) depending on topic. # Plan Orchestrator Single entry point for the 11-verb hierarchical-planning vocabulary. Routes user intent → backing script in `aura-frog/scripts/plans/`. Replaces 10 separate command files with one consolidated dispatcher. **Owner command:** `commands/plan.md` (single user-facing command) **Bare-word router:** `hooks/bare-word-router.cjs` (active-plan vocabulary) **Data model:** `.claude/plans/` per Tech Spec §6 --- ## verb_table[11] ```toon verbs[11]{verb,tier_in,tier_out,script,mutates_active_json}: bootstrap,—,T0+T1+T2,new-plan.sh,true expand,T1/T2/T3,T2/T3/T4,expand-node.sh,false next,T3,T4,next-task.sh,true status,—,—,render-plan-tree.sh,false replan,T1-T4,T1-T4,replan-node.sh,false promote,T4,T1/T2,promote-node.sh,false archive,T2+,T2+,archive-feature.sh,false undo,T1-T4,T1-T4,undo-decision.sh,true freeze,T1-T4,T1-T4,freeze-branch.sh,false thaw,T1-T4,T1-T4,thaw-branch.sh,false conflicts,—,—,conflicts-scan.sh,false ``` `bootstrap` is the unprefixed `/aura-frog:plan` (no verb) — T0/T1/T2 interview. Every other verb requires an explicit target node ID or option flags. --- ## intent_keywords[11] Used by Stage 2 of the routing pipeline when the user's input