implement-plan

Coordinate multi-phase implementation plans and delegate each phase to sub-skills.

17|1|Updated Dec 7, 2025
One-click install
npx skills add https://github.com/mhylle/claude-skills-collection --skill implement-plan-mhylle
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: implement-plan
Source: https://github.com/mhylle/claude-skills-collection/tree/main/skills/implement-plan
Command: npx skills add https://github.com/mhylle/claude-skills-collection --skill implement-plan-mhylle

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This skill orchestrates the execution of complete implementation plans by delegating each phase to the implement-phase skill. It manages the full plan lifecycle, including phase sequencing, user confirmation between phases, and overall progress tracking.

Core Features & Use Cases

  • Orchestrates multi-phase plans and coordinates phase handoffs to subagents
  • Supports user confirmation between phases and cross-session progress tracking
  • Surfaces blockers and phase results to ensure visibility and control

Quick Start

To run this skill, provide the path to a plan file, e.g. /implement-plan docs/plans/my-feature.md

Frequently Asked Questions about implement-plan

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I coordinate multi-phase plan execution across engineering sessions?

You can coordinate multi-phase plan execution by applying an orchestrator pattern that delegates each phase to sub-skills, manages the plan lifecycle, sequences tasks, and tracks progress across sessions with user confirmation gates between handoffs.

What is phased delegation in software engineering task management?

Phased delegation is an orchestration pattern where a coordinator delegates implementation phases to sub-skills for actual work. It surfaces blockers and phase results to the user, requiring validation before proceeding to the next phase.

How do I start orchestrating an implementation plan from a file?

To start orchestrating an implementation plan, provide the path to a plan file, such as docs/plans/my-feature.md. The orchestrator reads the plan and begins delegating each phase to sub-skills for execution.

Can I track progress and manage user confirmation between implementation phases?

Yes, progress tracking and user confirmation between phases are core features of plan orchestration. The orchestrator surfaces phase results and blockers, ensuring you have visibility and control before the next phase begins.

Does plan orchestration work for design-to-code projects?

Yes, plan orchestration applies to multi-phase engineering efforts and design-to-code projects. It coordinates phase handoffs to subagents and manages cross-session progress tracking for complex implementations.

When should I not use an orchestrator pattern for plan execution?

You should avoid the orchestrator pattern for single-phase tasks or simple implementations that do not require phase-level coordination, user confirmation between phases, or cross-session progress tracking.