How this command is triggered — by the user, by Claude, or both
Slash command
/phased-work:implement [optional additional constraints]This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
## Context - Plan file: !`find . -maxdepth 1 -name 'plan.md' 2>/dev/null` - Git status: !`git status --short` ## Your Task Read `plan.md` (or a filename specified by the user) and implement everything in it. Every decision has already been made in the plan — this is the execution phase. If the plan doesn't have a task breakdown (todo list with checkboxes), generate one first before starting implementation. Implement everything — don't cherry-pick. Mark each task or phase as done in the plan document as you complete it. Don't forget to regularly update the task list in plan.md as you go...
find . -maxdepth 1 -name 'plan.md' 2>/dev/nullgit status --shortRead plan.md (or a filename specified by the user) and implement everything in
it. Every decision has already been made in the plan — this is the execution
phase.
If the plan doesn't have a task breakdown (todo list with checkboxes), generate one first before starting implementation.
Implement everything — don't cherry-pick. Mark each task or phase as done in the plan document as you complete it. Don't forget to regularly update the task list in plan.md as you go — don't let it fall behind. Don't stop until all tasks are completed. Don't pause for confirmation mid-flow unless you hit a genuine ambiguity the plan doesn't address.
Run the project's type checker and linter after each logical group of changes. For tests, run only the subset relevant to the code you just changed — don't run the full test suite after every task unless it's very small. Fix issues immediately rather than accumulating them. Follow existing codebase patterns and conventions. Don't add unnecessary comments or refactor adjacent code unless the plan says to.
If a planned change doesn't work as expected, resolve it within the spirit of the plan. If the plan has a genuine flaw that blocks progress, stop and describe the issue clearly — don't silently deviate.
npx claudepluginhub jimeh/agentic --plugin phased-work/implementImplements changes from a provided plan file or reference, executing phases sequentially with file reads, verification, progress tracking via checkboxes, and mismatch handling.
/execute-from-deep-researchImplements approved technical plans from research-plans/plans/<plan-path>: reads context, executes phases, verifies success criteria, updates checkboxes.
/implement_planImplements technical plans from a specified thoughts/shared/plans path, executing phases with verification, updating checkboxes, and pausing for manual review if needed.
/implement_planImplements approved technical plans from ./thoughts/shared/plans directory via phases with automated verification, manual pauses, and progress tracking.
/implImplements coding plan from specified plan-file directory using persistent markdown files (task_plan.md, findings.md, progress.md) for state, progress, and rules enforcement.
/implementImplements tasks from a Conductor track plan using strict TDD workflow (red-green-refactor). Auto-selects incomplete track if unspecified; accepts track-id, --task, --phase args.