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 subagents and commits only after verification.

Dev & CodingIntermediate93,4898,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

  1. "Execute the migration plan we just wrote" → phase 1 → verify → commit → phase 2
  2. "Run this refactor plan phase by phase and show test output each time" → the verification subagent reports commands and outputs as evidence
  3. "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)
  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 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/thedotmack/claude-mem.git
  3. Create the skill folder: mkdir -p ~/.claude/skills/do
  4. Copy the files: cp -r claude-mem/plugin/skills/do/* ~/.claude/skills/do/
  5. If the repo also ships a make-plan skill, install it the same way — they are designed to work together.
  6. Restart Claude Code, then say "execute this plan" to trigger the skill.
View source on GitHubLicense: Apache-2.0