plan-implementing

Implements approved technical plans phase by phase with verification checkpoints.

Updated Mar 28, 2026
One-click install
npx skills add https://github.com/dsonyy/dotfiles --skill plan-implementing-dsonyy
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: plan-implementing
Source: https://github.com/dsonyy/dotfiles/tree/main/skills/plan-implementing
Command: npx skills add https://github.com/dsonyy/dotfiles --skill plan-implementing-dsonyy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Executing a multi-phase technical plan manually is error-prone: steps get skipped, context is lost between phases, and mismatches between the plan and the actual codebase go unnoticed. This Skill provides a disciplined workflow for implementing an approved plan phase by phase while tracking progress and verifying each stage. ## Core Features & Use Cases - Phase-by-Phase Execution: Reads the full plan, implements each phase completely, and checks off completed items directly in the plan file. - Mismatch Handling: When reality diverges from the plan, it stops, presents the expected versus actual situation, and asks how to proceed instead of guessing. - Resumable Progress: Detects existing checkmarks in a plan and resumes from the first unchecked item, trusting prior completed work. - Use Case: You have an approved refactoring plan with five phases and success criteria. Hand the plan path to the Skill and it implements each phase, runs the verification checks, and updates the plan's checkboxes as it goes. ## Quick Start Implement the approved plan at docs/plans/auth-refactor.md phase by phase, checking off completed items as you go.

Frequently Asked Questions about plan-implementing

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

FAQPage Schema
How do I implement a multi-phase technical plan with an AI assistant?▼

Provide the path to your approved plan file. The Skill reads the plan and all referenced files fully, creates a todo list, implements each phase completely, runs the success criteria checks, and checks off completed items in the plan file.

How to resume a partially completed implementation plan?▼

The Skill detects existing checkmarks in the plan and resumes from the first unchecked item, trusting that completed work is done. It only re-verifies previous phases if something appears off.

What happens when the codebase doesn't match the plan?▼

The Skill stops and presents a structured mismatch report showing the phase, what the plan expected, what was actually found, and why it matters, then asks how to proceed rather than guessing.

Does plan implementation run tests or verification checks?▼

Yes. After each phase it runs the plan's success criteria checks, typically a precommit command, fixes any issues before proceeding, and batches verification at natural stopping points to maintain flow.

When should I not use a phase-by-phase plan implementation approach?▼

Avoid it when no approved plan exists yet, since the Skill requires a plan path and will ask for one. It is also less suited to exploratory work where the solution direction is still unknown.