Plan Elixir/Phoenix Feature
Plan a feature by spawning Elixir specialist agents, then output
structured plan with checkboxes.
What Makes phx-plan Different from /plan
- Spawns Elixir specialist agents for research
- Plans with
[ecto], [liveview], [oban] task routing
- Checks for Iron Law compliance in the plan
- Includes
mix compile/format/credo/test verification
- Understands Phoenix context boundaries
Usage
phx-plan Add user avatars with S3 upload
phx-plan .claude/plans/notifications/reviews/notifications-review.md
phx-plan Implement notifications --depth deep
phx-plan .claude/plans/auth/plan.md --existing
Arguments
$ARGUMENTS = Feature description, review file, or existing plan
--depth quick|standard|deep = Planning depth (auto-detected)
--existing = Enhance an existing plan with deeper research
Workflow
- Gather context — File path (skip to agents), brainstorm
interview.md (skip clarification), clear description, or vague
- Clarify if vague — Ask questions ONE at a time (skip if
brainstorm interview.md exists with Status: COMPLETE)
- Detect depth — Auto-detect quick/standard/deep
- Runtime context (Tidewave) — Gather live schemas, routes,
and warnings before spawning agents (direct path only — the
research orchestrator gathers its own)
- Spawn research — Selective, based on need. 0–2 agents:
spawn directly in parallel. 3+ agents (broad multi-context
feature): spawn ONE
planning-orchestrator to run and compress
the fan-out, then read only its digest and
summaries/consolidated.md. Create a Claude Code task per spawn:
TaskCreate({subject: "{Agent} research", activeForm: "Researching..."}),
mark in_progress on spawn, completed when done
- Wait for ALL agents — Do NOT proceed until all return
"completed". NEVER write plan while any agent is still running
- Breadboard (LiveView) — System map for multi-page features
- Completeness check — MANDATORY when planning from review
- Split decision — One plan or multiple, concrete options
- Generate plan — Checkboxes, phased tasks, code patterns.
Also create
plans/{slug}/scratchpad.md for decisions and dead-ends
- Self-check (deep only) — Three questions in Risks section
- Present and ask — STOP, show summary, let user decide
When planning from review: Every finding must appear in the
plan — either as a task OR explicitly deferred by the user.
See references/planning-workflow.md for detailed step-by-step.
--existing Mode (Deepening)
Enhances an existing plan instead of creating a new one:
- Load plan, search
.claude/solutions/ for known risks
- Spawn SPECIALIST agents (not Explore) for thin sections.
Each agent writes to
.claude/plans/{slug}/research/ and
returns only a 500-word summary. Same agent selection rules
- Wait for ALL agents (mark tasks
completed as each finishes)
- Add implementation detail, resolve spikes, add verification
- Present diff summary — NEVER delete existing tasks
Iron Laws
- NEVER auto-start phx-work — Always present plan and ask
- Research before assuming — Web-search unfamiliar tech
- Spawn agents selectively — Only relevant, not all
- NEVER write plan while agents still running
- NEVER skip input findings — Every finding MUST have a task
- Do NOT spawn hex-library-researcher for existing deps
- Skip research when planning from review/investigation — When
input is a review file or
phx-investigate output, the findings
ARE the research. Do NOT spawn agents to re-discover what the
review already found. Convert findings directly to plan tasks.
(Confirmed: 56-session analysis showed same findings discovered
3-4x across review→investigate→plan phases, wasting ~96K tokens)
Integration with Workflow
phx-plan {feature} <-- YOU ARE HERE
|
phx-plan --existing (optional enhancement)
|
ASK USER -> phx-work .claude/plans/{feature}/plan.md
|
phx-review → phx-compound
Notes
- Plans saved to
.claude/plans/{slug}/plan.md
- Research reports in
.claude/plans/{slug}/research/ can be deleted after
CRITICAL: After Writing the Plan
STOP. Do NOT proceed to implementation.
After writing .claude/plans/{slug}/plan.md:
- Summarize: task count, phases, key decisions
- Use
AskUserQuestion with options:
- "Start in fresh session" (recommended for 5+ tasks)
- "Get a briefing" (
phx-brief — interactive walkthrough)
- "Start here"
- "Review or adjust the plan"
- Wait for user response. Never auto-start work.
When user selects "Start in fresh session", print:
1. Run `/new` to start a fresh session
2. Then run one of:
phx-work .claude/plans/{slug}/plan.md
phx-full .claude/plans/{slug}/plan.md (includes review + compound)
This is Iron Law #1. Violating it wastes user context.
References (DO NOT read — for human reference only)
references/planning-workflow.md — Detailed step-by-step
references/plan-template.md
references/complexity-detail.md
references/example-plan.md
references/agent-selection.md
references/breadboarding.md
1---2name: phx-plan3description: Plan features spanning multiple domains: billing (Stripe), auth (RBAC), real-time (Presence), webhooks, jobs (Oban). Use when designing interconnected systems or converting review findings into tasks.4---5
6# Plan Elixir/Phoenix Feature
7
8Plan a feature by spawning Elixir specialist agents, then output
9structured plan with checkboxes.
10
11## What Makes phx-plan Different from /plan
12
131. Spawns Elixir specialist agents for research
142. Plans with `[ecto]`, `[liveview]`, `[oban]` task routing
153. Checks for Iron Law compliance in the plan
164. Includes `mix compile/format/credo/test` verification
175. Understands Phoenix context boundaries
18
19## Usage
20
21```
22phx-plan Add user avatars with S3 upload
23phx-plan .claude/plans/notifications/reviews/notifications-review.md
24phx-plan Implement notifications --depth deep
25phx-plan .claude/plans/auth/plan.md --existing
26```
27
28## Arguments
29
30- `$ARGUMENTS` = Feature description, review file, or existing plan
31- `--depth quick|standard|deep` = Planning depth (auto-detected)
32- `--existing` = Enhance an existing plan with deeper research
33
34## Workflow
35
361. **Gather context** — File path (skip to agents), brainstorm
37 interview.md (skip clarification), clear description, or vague
382. **Clarify if vague** — Ask questions ONE at a time (skip if
39 brainstorm interview.md exists with Status: COMPLETE)
403. **Detect depth** — Auto-detect quick/standard/deep
414. **Runtime context** (Tidewave) — Gather live schemas, routes,
42 and warnings before spawning agents (direct path only — the
43 research orchestrator gathers its own)
445. **Spawn research** — Selective, based on need. **0–2 agents**:
45 spawn directly in parallel. **3+ agents** (broad multi-context
46 feature): spawn ONE `planning-orchestrator` to run and compress
47 the fan-out, then read only its digest and
48 `summaries/consolidated.md`. Create a Claude Code task per spawn:
49 `TaskCreate({subject: "{Agent} research", activeForm: "Researching..."})`,
50 mark `in_progress` on spawn, `completed` when done
516. **Wait for ALL agents** — Do NOT proceed until all return
52 "completed". NEVER write plan while any agent is still running
537. **Breadboard** (LiveView) — System map for multi-page features
548. **Completeness check** — MANDATORY when planning from review
559. **Split decision** — One plan or multiple, concrete options
5610. **Generate plan** — Checkboxes, phased tasks, code patterns.
57 Also create `plans/{slug}/scratchpad.md` for decisions and dead-ends
5811. **Self-check** (deep only) — Three questions in Risks section
5912. **Present and ask** — STOP, show summary, let user decide
60
61**When planning from review**: Every finding must appear in the
62plan — either as a task OR explicitly deferred by the user.
63
64See `references/planning-workflow.md` for detailed step-by-step.
65
66### --existing Mode (Deepening)
67
68Enhances an existing plan instead of creating a new one:
69
701. Load plan, search `.claude/solutions/` for known risks
712. Spawn SPECIALIST agents (not Explore) for thin sections.
72 Each agent writes to `.claude/plans/{slug}/research/` and
73 returns only a 500-word summary. Same agent selection rules
743. Wait for ALL agents (mark tasks `completed` as each finishes)
754. Add implementation detail, resolve spikes, add verification
765. Present diff summary — **NEVER delete existing tasks**
77
78## Iron Laws
79
801. **NEVER auto-start phx-work** — Always present plan and ask
812. **Research before assuming** — Web-search unfamiliar tech
823. **Spawn agents selectively** — Only relevant, not all
834. **NEVER write plan while agents still running**
845. **NEVER skip input findings** — Every finding MUST have a task
856. **Do NOT spawn hex-library-researcher for existing deps**
867. **Skip research when planning from review/investigation** — When
87 input is a review file or `phx-investigate` output, the findings
88 ARE the research. Do NOT spawn agents to re-discover what the
89 review already found. Convert findings directly to plan tasks.
90 (Confirmed: 56-session analysis showed same findings discovered
91 3-4x across review→investigate→plan phases, wasting ~96K tokens)
92
93## Integration with Workflow
94
95```text
96phx-plan {feature} <-- YOU ARE HERE
97 |
98 phx-plan --existing (optional enhancement)
99 |
100 ASK USER -> phx-work .claude/plans/{feature}/plan.md
101 |
102phx-review → phx-compound
103```
104
105## Notes
106
107- Plans saved to `.claude/plans/{slug}/plan.md`
108- Research reports in `.claude/plans/{slug}/research/` can be deleted after
109
110## CRITICAL: After Writing the Plan
111
112**STOP. Do NOT proceed to implementation.**
113
114After writing `.claude/plans/{slug}/plan.md`:
115
1161. Summarize: task count, phases, key decisions
1172. Use `AskUserQuestion` with options:
118 - "Start in fresh session" (recommended for 5+ tasks)
119 - "Get a briefing" (`phx-brief` — interactive walkthrough)
120 - "Start here"
121 - "Review or adjust the plan"
1223. Wait for user response. Never auto-start work.
123
124**When user selects "Start in fresh session"**, print:
125
126```
1271. Run `/new` to start a fresh session
1282. Then run one of:
129 phx-work .claude/plans/{slug}/plan.md
130 phx-full .claude/plans/{slug}/plan.md (includes review + compound)
131```
132
133This is Iron Law #1. Violating it wastes user context.
134
135## References (DO NOT read — for human reference only)
136
137- `references/planning-workflow.md` — Detailed step-by-step
138- `references/plan-template.md`
139- `references/complexity-detail.md`
140- `references/example-plan.md`
141- `references/agent-selection.md`
142- `references/breadboarding.md`