plan-implement

Coordinate subagents to execute multi-phase plans sequentially with verification.

11|Updated Sep 5, 2025
One-click install
npx skills add https://github.com/thrawn01/claude-dotfiles --skill plan-implement-thrawn01
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: plan-implement
Source: https://github.com/thrawn01/claude-dotfiles/tree/main/skills/plan-implement
Command: npx skills add https://github.com/thrawn01/claude-dotfiles --skill plan-implement-thrawn01

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Implement end-to-end orchestration of multi-phase plans by coordinating subagents to execute each phase in order.

Core Features & Use Cases

  • Phase orchestration: Launch phase subagents, pass minimal instructions, and verify completion before proceeding.
  • Sequential execution: Ensure deterministic, step-by-step progress with checks and commits.
  • Progress tracking: Maintain phase status via TaskCreate/TaskUpdate/TaskList and plan checkboxes for resuming work.

Quick Start

Provide the plan file path to begin phased implementation and I will orchestrate each phase sequentially.

Frequently Asked Questions about plan-implement

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

FAQPage Schema
How do I automate multi-phase plan execution with subagents?

Multi-phase plan execution is automated by delegating sequential work to subagents. This Skill coordinates each phase by passing minimal instructions to subagents, verifying completion, and committing progress before proceeding to the next phase.

What is the best way to orchestrate sequential phases in a git workflow?

Sequential phase orchestration uses a plan file as the source of truth for phase boundaries and acceptance criteria. It ensures deterministic, step-by-step progress by launching subagents, verifying completion, and maintaining auditable commits with verification logs.

Can I resume phased implementation if a workflow is interrupted?

Resuming phased implementation is supported via progress tracking. The Skill maintains phase status using TaskCreate, TaskUpdate, and TaskList alongside plan checkboxes, allowing you to pick up exactly where the previous sequential phase left off.

Do I need a plan file to start phase-wise orchestration?

A plan file is required to start phase-wise orchestration. You provide the plan file path as input, and the Skill uses it as the source of truth to define phase boundaries and validate acceptance criteria for each subagent execution.

When should I not use subagent orchestration for automation?

Subagent orchestration is not suited for projects lacking clearly defined phases. If your work cannot be automated and validated sequentially, or lacks distinct phase boundaries with acceptance criteria, this orchestration approach will not provide reliable results.