Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

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 & CodingIntermediate94,4798,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-plan skill) 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

  1. "Execute the migration plan we just wrote" → phase 1 runs, commits only after the checklist passes.
  2. A three-phase API refactor where each phase automatically gets an anti-pattern grep and a code review before pushing.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/thedotmack/claude-mem.git /tmp/claude-mem
  3. Create the skill folder: mkdir -p ~/.claude/skills/do
  4. Copy the files: cp -r /tmp/claude-mem/openclaw/skills/do/* ~/.claude/skills/do/
  5. Restart Claude Code and confirm do shows up in your skills list.
  6. Prepare a phased plan document with verification checklists, then ask Claude to "execute this plan".
View source on GitHubLicense: Apache-2.0