Do — Phased Plan Execution Orchestrator
Turns Claude into an orchestrator that delegates each phase of an implementation plan to subagents and commits only after verification.
Dev & CodingIntermediate★ 93,489⑂ 8,218AI score 7/10Last updated: Sep 7, 2026
What it does
Instead of coding directly, Claude becomes an orchestrator and delegates all work in a phased implementation plan to subagents.
- An "Implementation" subagent executes each phase exactly as specified
- After every phase: Verification, Anti-pattern (grep for banned patterns), and Code Quality subagents run
- A "Commit" subagent runs only after verification passes
- Between phases: push the working branch and prepare a fresh handoff with plan context
- Hard rule against inventing APIs — copy exact signatures from docs, stop and verify if something looks missing
Who it's for
- Developers running multi-phase refactors or feature builds
- Anyone who has seen Claude skip tests and commit anyway on long contexts
- Teams pairing it with a planning skill such as
make-plan
Examples
- "Execute the migration plan we just wrote" → phase 1 → verify → commit → phase 2
- "Run this refactor plan phase by phase and show test output each time" → the verification subagent reports commands and outputs as evidence
- "Check whether any of the anti-patterns listed in the plan remain" → the anti-pattern subagent greps the codebase and reports
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/thedotmack/claude-mem/HEAD/plugin/skills/do/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
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/ - If the repo also ships a
make-planskill, install it the same way — they are designed to work together. - Restart Claude Code, then say "execute this plan" to trigger the skill.
View source on GitHub ↗License: Apache-2.0