Imported from MadPonyInteractive/mpi-kanban (
skills/mpi-create-plan/SKILL.md). Install upstream withnpx skills add MadPonyInteractive/mpi-kanban --skill mpi-create-plan. Copyright stays with the author.
mpi-create-plan Skill
Purpose
Create a compact plan in the JSON task workspace at
.agents/mpi-kanban/tasks/<id>/plan.md and reflect that plan on the task card.
This is the default planning path for normal work.
Invocation: Use the installed Agent Skills invocation for this agent, or ask naturally.
Use mpi-create-large-plan instead when the work needs investigation,
multiple phases, explicit parallel batches, or complex risk management. In
particular, if the work can be split into independent implementation tasks with
disjoint ownership, it belongs in a large plan: compact plans stay one coherent
flow and never carry ## Parallel Batch sections.
Plan shape
# <Goal>
## Current State
Brief facts known at planning time.
## Implementation
- [ ] Implement the planned change end to end. **Verify:** <final verification>
## Completed
- [ ] Nothing yet.
## Remaining Work
- Implement the planned change end to end.
## Plan Drift
- None yet.
## Verification
**Verify mode:** auto | user-ux
`auto` = the agent fully self-verifies (tests, build, smoke, re-read) and does
not need the user to confirm a passing result. `user-ux` = the card has a UI/UX
surface the user must look at and feel in the running app before it is done.
Choose `user-ux` only when there is something a human must visually or
interactively judge; otherwise `auto`. `mpi-continue` reads this line to decide
whether to stop for the user after implementation.
Final verification instructions.
## Preservation Notes
Docs, rules, memory, or cleanup notes to consider before handoff/end-session.
Keep the plan compact. Do not split related work into many checklist items just because several files may change.
Workflow
- Understand the goal or task from
mpi-brainstorm. - Load project knowledge if present. Read
.agents/mpi-kanban/project-profile.mdand.agents/mpi-kanban/project-knowledge-index.mdwhen they exist. Follow the context-budget rules in${CLAUDE_PLUGIN_ROOT}/skills/mpi-lib/project-knowledge/indexing.md: read pointer files first, then only the topic-matching docs/rules. Do not scan all rules and docs. - If the goal is clearly large or uncertain, or if independent parallel
implementation looks likely (work splits into disjoint-ownership tasks),
recommend
mpi-create-large-planinstead and wait for confirmation. - Front-load decisions (scalable-foundation). When project mode is
scalable-foundation, before writing the plan, exercise the mode's clarification and proactive-engineering behavior from${CLAUDE_PLUGIN_ROOT}/skills/mpi-lib/project-intent/modes.md: surface the architecture, pattern, and library decisions this work implies, push back where a stronger foundation is warranted, name future-proofing concerns the user has not raised, and resolve open questions with the user now. The goal is an implementable card that carries no unresolved decisions, so implementation does not stop mid-flight to ask. - Resolve or create the JSON board task. See "Task-board update" below.
- Write the compact plan file to
.agents/mpi-kanban/tasks/<id>/plan.md. Include project mode in## Current Statewhen the profile exists ("Project mode: scalable-foundation"). Pull relevant conventions or commands from the matched topic block only. Set**Verify mode:**in## Verification:user-uxif the card has a UI/UX surface the user must judge in the running app, otherwiseauto. - Update the task card's
maturity,status, andlinks.plan.
Task-board update
Lib pointers, read only when needed:
${CLAUDE_PLUGIN_ROOT}/skills/mpi-lib/task-board-ops/_schema.md- JSON board and task-card shape.${CLAUDE_PLUGIN_ROOT}/skills/mpi-lib/task-board-ops/read.md-findBoard,ensureBoard,loadTask,findTask.${CLAUDE_PLUGIN_ROOT}/skills/mpi-lib/task-board-ops/mutate.md-createTask,writeTask,ensureLinkedFiles,attachPlan.
If mpi-brainstorm passed a task ID, call loadTask(<id>). If it passed only
a title, call findTask by exact title and handle duplicates by asking the
user to choose the visible MPI-* ID. Otherwise ask:
Does this work already have a task on the board? If yes, give the MPI ID or exact title. Reply "no" for a fresh To do task.
If an existing task matches:
- If the task is in
done, ask before reopening it intotodo. On approval, callmoveTask(id, "todo", actor, "Reopened for a new plan."). - If the task is in
todoordoing, leave it in its current column unless the user explicitly asks to move it. - Call
attachPlan(id, planMarkdown, actor).
If no task matches:
- Call
createTaskwith title, a short description,column: "todo",maturity: "planned",status: "active", and the current actor. - Call
attachPlan(id, planMarkdown, actor).
Keep long-form plan content in plan.md. Do not embed the plan or a long
summary in task.json.
Confirm:
Task: <id> "<title>" -> <To do | Doing>, planned. Plan: .agents/mpi-kanban/tasks/<id>/plan.md
Next: say "continue this plan" to start implementation. Implementation runs
through `mpi-continue`, which moves the card To do -> Doing before any edits.
Hard rules
- Do not implement.
- Card-write preflight is mandatory before any
column,maturity, orstatuswrite: read${CLAUDE_PLUGIN_ROOT}/skills/mpi-lib/task-board-ops/_schema.mdand${CLAUDE_PLUGIN_ROOT}/skills/mpi-lib/task-board-ops/mutate.md. Do not derive legal values from existing cards. - Do not let implementation begin from a
todocard. Implementation must run throughmpi-continue, which callsbeginImplementationto move the cardTo do -> Doingand derive the checklist first. The lifecycle is alwaysTo do -> Doing -> Done; neverTo do -> Done. - Do not create a large multi-step checklist in this skill.
- Do not add
## Parallel Batchsyntax to a compact plan. - If the work obviously needs phased investigation, or splits into independent
parallel implementation tasks, redirect to
mpi-create-large-plan. - Planning work uses
.agents/mpi-kanban/board.jsonplus.agents/mpi-kanban/tasks/<id>/plan.md. - Plan steps belong in the plan file under
## Implementation. Implementation checklists belong in the task workspace and are derived later bympi-continue; do not stuff checklist steps intotask.json.