Do — Phased Plan Execution Orchestrator
Turns Claude into an orchestrator that delegates each phase of an implementation plan to specialized subagents and blocks commits until verification passes.
Dev & CodingIntermediate★ 94,479⑂ 8,352AI score 6/10Last updated: Sep 22, 2026
What it does
- Puts Claude in orchestrator mode: it coordinates and routes context instead of doing the work itself.
- Per phase, it deploys a chain of subagents — Implementation → Verification → Anti-pattern grep → Code Quality review → Commit.
- Requires evidence from every subagent (commands run, outputs, files changed) before advancing.
- Forbids committing until the verification checklist passes; a Branch/Sync subagent pushes and prepares the next phase handoff.
- Explicitly guards against common failure modes: inventing APIs, adding undocumented parameters, skipping verification.
Who it's for
- Developers who already have a phased plan (e.g., from a
make-planskill) and need disciplined execution. - Anyone burned by an AI committing changes before tests or checks were run.
- Teams handling large refactors where context exceeds a single session.
Examples
- "Execute the migration plan we just wrote" → phase 1 runs, commits only after the checklist passes.
- A three-phase API refactor where each phase automatically gets an anti-pattern grep and a code review before pushing.
- Adopting a new library: subagents must copy exact signatures from docs and cite the source in code comments.
· · · 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/openclaw/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 openclaw/skills/do folder from the GitHub repo thedotmack/claude-mem into my ~/.claude/skills/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 /tmp/claude-mem && mkdir -p ~/.claude/skills/do && cp -r /tmp/claude-mem/openclaw/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 /tmp/claude-mem - Create the skill folder:
mkdir -p ~/.claude/skills/do - Copy the files:
cp -r /tmp/claude-mem/openclaw/skills/do/* ~/.claude/skills/do/ - Restart Claude Code and confirm
doshows up in your skills list. - Prepare a phased plan document with verification checklists, then ask Claude to "execute this plan".
View source on GitHub ↗License: Apache-2.0