executing-plans

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

Updated Apr 14, 2026
One-click install
npx skills add https://github.com/alecanche04-cyber/examenprograma --skill executing-plans-alecanche04-cyber
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: executing-plans
Source: https://github.com/alecanche04-cyber/examenprograma/tree/main/EXAMEN_PROGRA_2-master/.agents/skills/executing-plans
Command: npx skills add https://github.com/alecanche04-cyber/examenprograma --skill executing-plans-alecanche04-cyber

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning a written implementation plan into working code often goes wrong when steps are skipped, verifications are ignored, or blockers are guessed through. This Skill enforces a disciplined execution loop so plans are followed exactly and failures surface early. ## Core Features & Use Cases - Critical Plan Review: Loads the plan file and raises questions or concerns with your human partner before any code is written. - Task-by-Task Execution: Tracks each task with TodoWrite, follows bite-sized steps exactly, and runs the verifications specified in the plan. - Stop-and-Ask Guardrails: Halts immediately on blockers, unclear instructions, or repeated verification failures instead of guessing. - Use Case: You have a multi-task implementation plan from a planning session. Hand it to this Skill in a fresh session and it will review, execute every task with verification, and hand off to branch completion when done. ## Quick Start Use the executing-plans skill to implement the plan in docs/plans/my-feature-plan.md, reviewing it critically first and stopping if anything is unclear.

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 coding assistant?

Provide the plan file and invoke the executing-plans skill. It reads the plan, reviews it critically, raises concerns before starting, then executes each task with TodoWrite tracking and runs the verifications specified in the plan.

What should an implementation plan contain before execution?

The plan should contain bite-sized tasks with explicit steps and verification commands. This skill works best with plans created by a dedicated planning workflow such as superpowers:writing-plans, which structures tasks for step-by-step execution.

What happens when a plan step fails or is unclear?

Execution stops immediately when a blocker, failing verification, or unclear instruction is encountered. The skill asks the human partner for clarification rather than guessing, and returns to plan review if the approach needs rethinking.

Can I execute a plan directly on the main branch?

No. The skill never starts implementation on main or master without explicit user consent, and it recommends setting up an isolated workspace first using a git worktree workflow before executing any tasks.

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

If your platform supports subagents, such as Claude Code or Codex, the skill recommends using superpowers:subagent-driven-development instead, since delegating tasks to subagents produces higher quality results than single-session execution.