executing-plans

Executes written implementation plans task-by-task with verification checkpoints and review gates.

Updated Apr 17, 2026
One-click install
npx skills add https://github.com/Syedyasir001/RVULibPass --skill executing-plans-syedyasir001
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: executing-plans
Source: https://github.com/Syedyasir001/RVULibPass/tree/main/.agent/skills/library/executing-plans
Command: npx skills add https://github.com/Syedyasir001/RVULibPass --skill executing-plans-syedyasir001

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Written implementation plans often get executed inconsistently, with skipped steps, missed verifications, or silent failures when blockers appear. This Skill enforces a disciplined process for loading a plan, reviewing it critically, executing every task in order, and stopping to ask for help instead of guessing. ## Core Features & Use Cases - Critical Plan Review: Reads the plan file first and raises questions or concerns with the human partner before any code is written. - Task-by-Task Execution: Tracks each task with a todo list, follows bite-sized steps exactly, and runs the verifications specified in the plan. - Blocker Handling: Stops immediately on missing dependencies, failing tests, or unclear instructions and asks for clarification rather than guessing. - Use Case: You have a detailed implementation plan from a planning session. Hand it to this Skill in a fresh session, and it will review the plan, execute every task with verification, and hand off to a branch-finishing workflow when done. ## Quick Start Use the executing-plans skill to implement the plan in docs/plans/feature-auth.md and verify each task as you go.

Frequently Asked Questions about executing-plans

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

FAQPage Schema
How do I execute an implementation plan with an AI assistant?▼

Provide the plan file path and invoke the executing-plans skill. It reads the plan, reviews it critically for concerns, then executes each task in order using a todo list, running the verifications specified in each step.

What should an implementation plan contain before execution?▼

The plan should contain bite-sized tasks with explicit steps and verification commands. This skill expects a written plan file, typically produced by a planning skill such as superpowers:writing-plans, before execution begins.

What happens when a task verification fails during plan execution?▼

Execution stops immediately when a verification fails repeatedly, a dependency is missing, or an instruction is unclear. The skill asks the human partner for clarification rather than guessing or forcing through blockers.

Can I start implementation on the main branch with this skill?▼

No. The skill explicitly forbids starting implementation on main or master without explicit user consent. It recommends setting up an isolated workspace first, using the superpowers:using-git-worktrees skill.

When should I use subagent-driven development instead of executing-plans?▼

Use superpowers:subagent-driven-development when your platform supports subagents, such as Claude Code or Codex. The skill notes that work quality is significantly higher with subagent support; executing-plans is the fallback for single-session execution.