Do Plan
An orchestrator skill that executes a phased implementation plan through dedicated subagents, verifying each phase before committing.
Dev & CodingIntermediate★ 90,139⑂ 7,846AI score 6/10Last updated: Aug 9, 2026
What it does
Turns Claude into an orchestrator that never writes the code itself — it dispatches subagents to carry out each phase of a plan.
- An Implementation subagent per phase, executing exactly what the plan specifies
- Post-phase Verification, Anti-pattern, and Code Quality subagents
- A Commit subagent that runs only after verification passes, followed by branch push and handoff to the next phase
- "Stop and verify" guardrails so no one invents APIs or undocumented parameters
Who it's for
- Developers turning a multi-phase plan (e.g. from
make-plan) into real code - Anyone whose output quality degrades as a single session's context grows
- Teams that want to block unverified commits
Examples
- "Execute phases 1–4 of plan.md" → each phase runs implement → verify → review → commit in sequence.
- During a refactor, the anti-pattern subagent greps for banned patterns listed in the plan (hardcoded secrets, direct DOM access, etc.).
- When wiring up a third-party SDK, a missing method halts execution until the docs are checked and cited in a code comment.
· · · 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 plugin/skills/do folder from the GitHub repo thedotmack/claude-mem into my ~/.claude/skills/thedotmack-do/. 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/do && cp -r claude-mem/plugin/skills/do/* ~/.claude/skills/do/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/thedotmack/claude-mem.git - Create the skill folder:
mkdir -p ~/.claude/skills/do - Copy the files:
cp -r claude-mem/plugin/skills/do/* ~/.claude/skills/do/ - Restart Claude Code.
- Verify with
/skillsor by asking Claude to "execute the plan". - For best results, have a phased plan document (e.g.
plan.md) ready before invoking it.
View source on GitHub ↗License: Apache-2.0