Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Do Plan

An orchestrator skill that executes a phased implementation plan through dedicated subagents, verifying each phase before committing.

Dev & CodingIntermediate90,1397,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

  1. "Execute phases 1–4 of plan.md" → each phase runs implement → verify → review → commit in sequence.
  2. During a refactor, the anti-pattern subagent greps for banned patterns listed in the plan (hardcoded secrets, direct DOM access, etc.).
  3. 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)
  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. Restart Claude Code.
  6. Verify with /skills or by asking Claude to "execute the plan".
  7. For best results, have a phased plan document (e.g. plan.md) ready before invoking it.
View source on GitHubLicense: Apache-2.0