plan-executor

Orchestrate multi-step plans by spawning sequential subagents for each TODO.

1|Updated Jan 23, 2026
One-click install
npx skills add https://github.com/Huddo121/My-Agent-Loop --skill plan-executor-huddo121
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: plan-executor
Source: https://github.com/Huddo121/My-Agent-Loop/tree/main/.cursor/skills/plan-executor
Command: npx skills add https://github.com/Huddo121/My-Agent-Loop --skill plan-executor-huddo121

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill automates the execution of multi-step plans, ensuring each task within a plan is completed sequentially and reliably, managing code changes and progress.

Core Features & Use Cases

  • Orchestrates Plan Execution: Manages plans with multiple TODOs by assigning each to a subagent.
  • State Management: Tracks and updates the status of each TODO within the plan file.
  • Git Integration: Handles commits and pushes after each successful TODO completion.
  • Human Escalation: Flags issues requiring human intervention when subagents fail or plans become complex.
  • Use Case: Automatically process a feature request that involves several code modifications, tests, and documentation updates, ensuring each step is completed and committed before the next begins.

Quick Start

Execute the plan located at .cursor/plans/feature-enhancement.plan.md, ensuring each step is completed and committed.

Frequently Asked Questions about plan-executor

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

FAQPage Schema
How do I automate sequential execution of a multi-step development plan?

Automating sequential multi-step development plan execution involves orchestrating tasks by assigning each TODO item to a subagent. This approach manages plan state, processes tasks serially, and performs git commits after each successful step to ensure reliable progress.

Can I automatically commit code changes after each task in a TODO plan is finished?

Yes, you can automatically commit code changes after each task in a TODO plan is finished. The orchestration workflow handles git commits and pushes immediately upon successful completion of each sequential subagent task, ensuring progress is saved incrementally.

What happens when a subagent fails during complex plan execution?

When a subagent fails during complex plan execution, the workflow triggers human escalation. It flags the specific issue requiring human intervention, allowing you to resolve complex failures or unhandled edge cases before continuing the task sequence.

How does task orchestration track the status of individual TODO items?

Task orchestration tracks the status of individual TODO items through internal state management. It continuously reads, updates, and manages the status of each task directly within the defined plan file structure to monitor overall progress.

Do I need a specific plan file format to execute multi-step agent workflows?

Executing multi-step agent workflows requires a defined plan file format, typically a markdown file containing structured TODO items. You must provide a valid plan path for the system to parse the sequential tasks and orchestrate the subagents accordingly.