make-plan (Phased Implementation Planner)
Generates a phased, documentation-grounded implementation plan where each phase can be executed in a fresh chat context.
Dev & CodingIntermediate★ 90,139⑂ 7,846AI score 7/10Last updated: Aug 9, 2026
What it does
Puts Claude in an orchestrator role to author implementation plans broken into self-contained phases.
- Phase 0 — Documentation Discovery (always first): subagents read real docs, examples and existing patterns, then produce an "Allowed APIs" list with cited sources plus anti-patterns to avoid.
- Each implementation phase: what to build, which file/lines to copy the pattern from, a verification checklist (tests, grep checks), and explicit guards against invented APIs or undocumented params.
- Final phase — Verification: confirm the code matches the docs, grep for known bad patterns, run tests.
Subagents must report sources consulted, exact API signatures and file paths, copy-ready snippet locations, and a confidence note with known gaps. Conclusions without sources are rejected and the subagent is redeployed.
Who it's for
- Developers burned by hallucinated APIs that "should" exist
- Anyone splitting a large task across multiple sessions who needs each step to stand alone
- Tech leads who want implementation work anchored to official documentation
Examples
- SDK migration: ask it to plan a move to the V2 session API — it reads the SDK docs first, pins down methods that actually exist, and frames the task as "copy the V2 session pattern from docs/examples.ts:45-60".
- New feature: planning a payment webhook, Phase 0 greps existing handlers for the house pattern and every phase ships with a verification checklist.
- From bug backlog to plan: run
oh-my-issuesfirst to cluster issues by root cause into design docs, then hand one slice to make-plan to turn it into an executable plan.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the openclaw/skills/make-plan folder from the GitHub repo thedotmack/claude-mem into my ~/.claude/skills/make-plan/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/thedotmack/claude-mem.git && mkdir -p ~/.claude/skills/make-plan && cp claude-mem/openclaw/skills/make-plan/SKILL.md ~/.claude/skills/make-plan/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Create the skills directory:
mkdir -p ~/.claude/skills - Clone the repo:
git clone https://github.com/thedotmack/claude-mem.git - Copy the skill in:
mkdir -p ~/.claude/skills/make-plan && cp claude-mem/openclaw/skills/make-plan/SKILL.md ~/.claude/skills/make-plan/ - Restart Claude Code and confirm
make-planshows up in your skills list. - Try it: "Use make-plan to plan this feature" — it should start with Phase 0 documentation discovery.
- Save the generated plan as a file (e.g. under
plans/) so later sessions can pick up the next phase.
View source on GitHub ↗License: Apache-2.0