source-command-implement-plan

Implements phased technical plans from thoughts/shared/plans with automated and manual verification.

1|1|Updated Feb 3, 2026
One-click install
npx skills add https://github.com/redblacktree/fastflow --skill source-command-implement-plan-redblacktree
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: source-command-implement-plan
Source: https://github.com/redblacktree/fastflow/tree/main/.agents/skills/source-command-implement-plan
Command: npx skills add https://github.com/redblacktree/fastflow --skill source-command-implement-plan-redblacktree

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Executing an approved technical plan requires careful phase-by-phase implementation, verification against success criteria, and clear handling of mismatches between the plan and the actual codebase, which is error-prone when done ad hoc. ## Core Features & Use Cases - Phased Plan Execution: Reads plans from thoughts/shared/plans, implements each phase fully, and checks off completed items directly in the plan file. - Verification Workflow: Runs success criteria checks such as make check test after each phase and pauses for human manual verification before proceeding. - Mismatch Handling: Stops and presents a structured issue report when the codebase diverges from the plan, and supports resuming from existing checkmarks. - Use Case: After a planning stage produces thoughts/shared/plans/add-auth.md, invoke this skill to implement Phase 1, run the automated checks, and pause for manual testing before continuing. ## Quick Start Implement the plan at thoughts/shared/plans/add-auth.md one phase at a time, running the verification checks and pausing for my manual confirmation after each phase.

Frequently Asked Questions about source-command-implement-plan

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

FAQPage Schema
How do I implement a technical plan phase by phase with an AI agent?▼

Provide the path to a plan file in thoughts/shared/plans and the skill reads it fully, implements each phase, runs the success criteria checks, and checks off completed items in the plan. It pauses after each phase for manual verification unless multiple consecutive phases were requested.

How does plan implementation handle mismatches with the actual codebase?▼

When reality diverges from the plan, the skill stops and presents a structured issue report showing the phase number, what the plan expected, what was found, and why it matters, then asks how to proceed rather than guessing.

Can I resume a partially completed implementation plan?▼

Yes. The skill trusts existing checkmarks in the plan file and picks up from the first unchecked item, only re-verifying previous work if something seems off.

What verification happens after each implementation phase?▼

The skill runs the plan's success criteria checks, typically make check test, fixes any failures, updates the plan checkboxes, then pauses and asks the human to perform the manual verification steps listed in the plan before continuing.

When should I not use automated plan implementation?▼

Avoid it when no approved plan exists yet, since the skill requires a plan path and asks for one if missing. It is also unsuitable when you want unchecked autonomous changes, because it enforces human verification gates between phases.