/execute-implementation-plan
Execute implementation plan task-by-task with subagents
> /plugin marketplace add ed3dai/ed3d-pluginsHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/execute-implementation-plan
Context preview
What this command does when you run it.
Execute implementation plan task-by-task with subagents
Command definition
execute-implementation-plan.mddescription: Execute implementation plan task-by-task with subagents argument-hint: [absolute-plan-dir] [absolute-working-dir]
Execute Implementation Plan
**Implementation plan directory:** `$1` **Working directory:** `$2`
This execution workflow uses:
- Just-in-time phase loading (reads one phase at a time)
- Task/subcomponent markers for structure
- Per-phase code review (not per-task)
Before Starting
Both arguments MUST be absolute paths. Verify they exist:
1. Verify the working directory exists and is a git repository:
test -d "$2" && git -C "$2" rev-parse --git-dir
2. Verify the plan directory exists and contains phase files:
ls "$1"/phase_*.md
If either verification fails, stop and report the error to the user.
Execute
1. **Change working directory** to `$2` before any other work 2. **Engage the skill:** Use your Skill tool to invoke `executing-an-implementation-plan` 3. **When the skill asks for a plan path:** The user has already provided it: `$1`. Do not ask again.
The skill should execute all phases in the plan directory using the just-in-time loading workflow. Follow it exactly as written.
Ed's repo of Claude Code plugins, centered around a research-plan-implement workflow. Only a tiny bit cursed. If you're lucky.
Repo: ed3dai/ed3d-plugins
Other commands on ed3d-plugins.
how-to-customize
Explains how to customize design and implementation plans with project-specific guidance
start-design-plan
Start collaborative design process with brainstorming and planning

