/execute-implementation-plan
Execute implementation plan task-by-task with subagents
$ npx -y skills add ed3dai/ed3d-plugins --agent claude-codeHow 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.
This is my collection of plugins that I use on a day-to-day basis for getting stuff done with Claude Code. Most of these are development-oriented in some way or another, but also often end up being useful for other things.
Repo: ed3dai/ed3d-plugins
Other commands on ed3d-plugins.
- /getting-started
Show the ed3d-plugins README and getting started information
Open command - /flesh-it-out
Take a general idea and make it specific
Open command - /how-to-customize
Explains how to customize design and implementation plans with project-specific guidance
Open command - /start-design-plan
Start collaborative design process with brainstorming and planning
Open command - /start-implementation-plan
Create implementation plan from design document
Open command

