jp-execute

Orchestrate sequential task execution with delegation and resumable state tracking.

Updated Feb 26, 2026
One-click install
npx skills add https://github.com/jinglemansweep/agent-resources --skill jp-execute
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: jp-execute
Source: https://github.com/jinglemansweep/agent-resources/tree/main/plugins/jplan/skills/jp-execute
Command: npx skills add https://github.com/jinglemansweep/agent-resources --skill jp-execute

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill provides a cohesive orchestration layer that coordinates sequential task execution, handles state, and delegates domain-specific work to the Developer agent, enabling resumable runs, robust validation, and a final summary report.

Core Features & Use Cases

  • Orchestrates an entire phase's task list in dependency order, preserving input task sequencing where possible.
  • Delegates task execution to the jp-worker-dev agent, enabling domain-specific routing to the right skills.
  • Performs validation via /jp-task-validate, runs a code review and fix loop via /jp-codereview and /jp-codereview-fix, and logs results in the phase's changelog.
  • Supports resumability through state.yaml so interrupted runs can be resumed without redoing completed work.
  • Generates a consolidated summary with /jp-summary after all tasks complete.

Quick Start

Run /jp-execute <phase-path> to start or resume a phase's task execution.

Frequently Asked Questions about jp-execute

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

FAQPage Schema
How do I orchestrate end-to-end task execution with dependency order and resumable state?

End-to-end task orchestration coordinates sequential task execution, handles state via state.yaml, and delegates domain-specific work to a Developer agent. This enables resumable runs, robust validation, and a final summary report without redoing completed work.

Can I resume an interrupted pipeline run without redoing completed tasks?

Resumable pipeline runs are supported through standardized state management using state.yaml. If an execution is interrupted, the orchestration layer tracks completed work and resumes from the exact point of failure, skipping finished tasks.

How do you manage code review and validation loops in a task pipeline?

Code review and validation loops are managed by running task validation, executing a codereview, and applying codereview-fix rounds. Results are logged in the phase's changelog to maintain quality gate processes across the pipeline.

What do I need to set up before running phase-based task orchestration?

Phase-based task orchestration requires phase directories containing a tasks.yaml file for task definitions and a prd.md for requirements. These files establish the dependency order and planning pipeline needed to execute tasks correctly.

Does task orchestration work with automated fix rounds and quality gates?

Task orchestration satisfies delegation, validation, review loops, fix rounds, and quality gate processes through configured tools. It coordinates these processes sequentially and logs outcomes to ensure pipeline integrity before generating a consolidated summary.