source-command-implement-plan

Executes approved implementation plans task by task with verification and status updates.

722|195|Updated Dec 9, 2024
One-click install
npx skills add https://github.com/ChatbotXIO/ChatbotX --skill source-command-implement-plan
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: source-command-implement-plan
Source: https://github.com/ChatbotXIO/ChatbotX/tree/main/.agents/skills/source-command-implement-plan
Command: npx skills add https://github.com/ChatbotXIO/ChatbotX --skill source-command-implement-plan

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Approved implementation plans often stall or drift when developers replan, expand scope, or skip verification. This Skill enforces execution-first behavior so an approved plan is implemented exactly as written, one task at a time.

Core Features & Use Cases

  • Plan-Driven Execution: Reads an approved implementation plan, resumes from the first unfinished checkbox, and implements one task at a time.
  • Plan Mismatch Handling: Stops and reports a structured issue when actual code diverges from the plan instead of improvising.
  • Verification Workflow: Runs tests, lint, typecheck, and build after each task and reports results in a structured output format.
  • Use Case: A team approves a multi-phase refactoring plan with checkboxes. Invoke this Skill with the plan path, and it implements the highest-priority unfinished task, verifies it, updates the checkbox, and reports remaining work.

Quick Start

Ask the assistant to implement the approved plan at the given plan file path, one task at a time.

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 execute an approved implementation plan with an AI assistant?

Provide the path to the approved plan file. The Skill reads the plan and referenced files, finds the first unfinished checkbox, implements that single task, verifies it, and updates the task status before stopping.

How to resume a partially completed implementation plan?

Existing checkmarks are trusted by default. The Skill resumes from the first unfinished item and only revisits completed work if it blocks the current task, conflicts with current code, or fails verification.

What happens when the code does not match the implementation plan?

The Skill stops and reports a structured mismatch: the phase, what the plan expected, what was found, the technical impact, and a recommended path. It waits for guidance before proceeding.

Does it run tests and typecheck after each change?

Yes. After implementing a task it runs relevant tests, lint, and typecheck, fixes issues introduced by its changes, confirms the build succeeds, and reports all validation results.

When should I not use an execution-only plan implementation workflow?

Avoid it when no approved plan exists or requirements are still ambiguous, since the Skill refuses to create or rewrite plans. Use a planning or design workflow first to produce the approved plan.