source-command-validate-plan

Validates implementation against plan success criteria and generates a structured validation report.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? After implementing a plan, developers need to confirm the work actually matches what was specified, that automated checks pass, and that no deviations or regressions slipped through before merging. ## Core Features & Use Cases - Plan-to-Code Comparison: Reads the implementation plan, inspects git history and diffs, and compares planned changes against actual code modifications phase by phase. - Automated Verification: Runs build, test, and lint commands from the plan's verification section and documents pass/fail results. - Structured Validation Report: Produces a markdown report covering implementation status, deviations, potential issues, manual testing steps, and recommendations. - Use Case: After running an implementation workflow and committing changes, invoke this skill to verify all success criteria are met and generate a review-ready validation summary before opening a PR. ## Quick Start Ask the agent to run the validate_plan command to verify the recent implementation against the plan and produce a validation report.

Frequently Asked Questions about source-command-validate-plan

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

FAQPage Schema
How do I validate an implementation against a plan?▼

Run the validate_plan command after implementation and commits are complete. It reads the plan, inspects recent git commits and diffs, runs automated verification commands, and produces a report comparing planned versus actual changes.

What does the validation report include?▼

The report covers per-phase implementation status, automated verification results for build, test, and lint commands, code review findings listing matches and deviations from the plan, potential issues, manual testing steps, and recommendations.

When should I run plan validation in the workflow?▼

Run it after implementing the plan and creating commits, but before generating a PR description. The recommended sequence is implement_plan, commit, validate_plan, then describe_pr, since validation analyzes git history.

Can validation work without prior conversation context?▼

Yes. When starting fresh, the skill discovers context by locating the plan from recent commits or user input, then uses git log and diffs plus parallel research tasks to reconstruct what was implemented.

What are the limitations of automated plan validation?▼

Automated checks cannot verify manual success criteria such as UI behavior or integration with external systems. The report explicitly lists manual testing steps that a human must perform to complete validation.