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 (see planning-orchestrator)
- Spawn research agents — Selective, parallel, based on need.
Create a Claude Code task per agent for progress visibility:
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 ${CLAUDE_SKILL_DIR}/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 the plan"
- "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)
${CLAUDE_SKILL_DIR}/references/planning-workflow.md — Detailed step-by-step
${CLAUDE_SKILL_DIR}/references/plan-template.md
${CLAUDE_SKILL_DIR}/references/complexity-detail.md
${CLAUDE_SKILL_DIR}/references/example-plan.md
${CLAUDE_SKILL_DIR}/references/agent-selection.md
${CLAUDE_SKILL_DIR}/references/breadboarding.md
1---2name: phx-plan-43description: 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---56# Plan Elixir/Phoenix Feature78Plan a feature by spawning Elixir specialist agents, then output9structured plan with checkboxes.1011## What Makes /phx:plan Different from /plan12131. Spawns Elixir specialist agents for research142. Plans with `[ecto]`, `[liveview]`, `[oban]` task routing153. Checks for Iron Law compliance in the plan164. Includes `mix compile/format/credo/test` verification175. Understands Phoenix context boundaries1819## Usage2021```22/phx:plan Add user avatars with S3 upload23/phx:plan .claude/plans/notifications/reviews/notifications-review.md24/phx:plan Implement notifications --depth deep25/phx:plan .claude/plans/auth/plan.md --existing26```2728## Arguments2930- `$ARGUMENTS` = Feature description, review file, or existing plan31- `--depth quick|standard|deep` = Planning depth (auto-detected)32- `--existing` = Enhance an existing plan with deeper research3334## Workflow35361. **Gather context** — File path (skip to agents), brainstorm37 interview.md (skip clarification), clear description, or vague382. **Clarify if vague** — Ask questions ONE at a time (skip if39 brainstorm interview.md exists with Status: COMPLETE)403. **Detect depth** — Auto-detect quick/standard/deep414. **Runtime context** (Tidewave) — Gather live schemas, routes,42 and warnings before spawning agents (see planning-orchestrator)435. **Spawn research agents** — Selective, parallel, based on need.44 Create a Claude Code task per agent for progress visibility:45 `TaskCreate({subject: "{Agent} research", activeForm: "Researching..."})`,46 mark `in_progress` on spawn, `completed` when done476. **Wait for ALL agents** — Do NOT proceed until all return48 "completed". NEVER write plan while any agent is still running497. **Breadboard** (LiveView) — System map for multi-page features508. **Completeness check** — MANDATORY when planning from review519. **Split decision** — One plan or multiple, concrete options5210. **Generate plan** — Checkboxes, phased tasks, code patterns.53 Also create `plans/{slug}/scratchpad.md` for decisions and dead-ends5411. **Self-check** (deep only) — Three questions in Risks section5512. **Present and ask** — STOP, show summary, let user decide5657**When planning from review**: Every finding must appear in the58plan — either as a task OR explicitly deferred by the user.5960See `${CLAUDE_SKILL_DIR}/references/planning-workflow.md` for detailed step-by-step.6162### --existing Mode (Deepening)6364Enhances an existing plan instead of creating a new one:65661. Load plan, search `.claude/solutions/` for known risks672. Spawn SPECIALIST agents (not Explore) for thin sections.68 Each agent writes to `.claude/plans/{slug}/research/` and69 returns only a 500-word summary. Same agent selection rules703. Wait for ALL agents (mark tasks `completed` as each finishes)714. Add implementation detail, resolve spikes, add verification725. Present diff summary — **NEVER delete existing tasks**7374## Iron Laws75761. **NEVER auto-start /phx:work** — Always present plan and ask772. **Research before assuming** — Web-search unfamiliar tech783. **Spawn agents selectively** — Only relevant, not all794. **NEVER write plan while agents still running**805. **NEVER skip input findings** — Every finding MUST have a task816. **Do NOT spawn hex-library-researcher for existing deps**827. **Skip research when planning from review/investigation** — When83 input is a review file or `/phx:investigate` output, the findings84 ARE the research. Do NOT spawn agents to re-discover what the85 review already found. Convert findings directly to plan tasks.86 (Confirmed: 56-session analysis showed same findings discovered87 3-4x across review→investigate→plan phases, wasting ~96K tokens)8889## Integration with Workflow9091```text92/phx:plan {feature} <-- YOU ARE HERE93 |94 /phx:plan --existing (optional enhancement)95 |96 ASK USER -> /phx:work .claude/plans/{feature}/plan.md97 |98/phx:review → /phx:compound99```100101## Notes102103- Plans saved to `.claude/plans/{slug}/plan.md`104- Research reports in `.claude/plans/{slug}/research/` can be deleted after105106## CRITICAL: After Writing the Plan107108**STOP. Do NOT proceed to implementation.**109110After writing `.claude/plans/{slug}/plan.md`:1111121. Summarize: task count, phases, key decisions1132. Use `AskUserQuestion` with options:114 - "Start in fresh session" (recommended for 5+ tasks)115 - "Get a briefing" (`/phx:brief` — interactive walkthrough)116 - "Start here"117 - "Review the plan"118 - "Adjust the plan"1193. Wait for user response. Never auto-start work.120121**When user selects "Start in fresh session"**, print:122123```1241. Run `/new` to start a fresh session1252. Then run one of:126 /phx:work .claude/plans/{slug}/plan.md127 /phx:full .claude/plans/{slug}/plan.md (includes review + compound)128```129130This is Iron Law #1. Violating it wastes user context.131132## References (DO NOT read — for human reference only)133134- `${CLAUDE_SKILL_DIR}/references/planning-workflow.md` — Detailed step-by-step135- `${CLAUDE_SKILL_DIR}/references/plan-template.md`136- `${CLAUDE_SKILL_DIR}/references/complexity-detail.md`137- `${CLAUDE_SKILL_DIR}/references/example-plan.md`138- `${CLAUDE_SKILL_DIR}/references/agent-selection.md`139- `${CLAUDE_SKILL_DIR}/references/breadboarding.md`