execute-task

Solid

Execute the next TaskMaster task using the implementation plan with CDD verification. Picks the next ready task, matches it to the plan step, implements via a dispatched subagent, verifies subtasks with evidence, marks the task done, and loops until every task is complete. Wraps the TaskMaster next -> in-progress -> done lifecycle with CDD GREEN / RED / BLUE verification and the plugin's triple-verification rule. Autonomous by design — no user prompts inside the loop.

AI & Automation 508 stars 52 forks Updated today MIT

Install

View on GitHub

Quality Score: 94/100

Stars 20%
90
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# execute-task The execution loop. Three sources converge: - **Plan** (HOW) — `docs/superpowers/plans/*.md` produced by GENERATE - **TaskMaster** (WHAT) — `.taskmaster/tasks/tasks.json` with dependencies and complexity scores - **CDD** (PROOF) — acceptance cards per task, evidence-gated execute-task is the single skill that runs the full build from "tasks are ready" to SHIP_CHECK_OK. It is autonomous — no AskUserQuestion inside the loop. Any gap that would require user input is surfaced through the recon escalation ladder (step 11) or the inbox (steps 4 and 8), never via a modal prompt. ## Entry This skill is invoked either: 1. Directly by the user once HANDOFF has completed and a task-execution mode (A/B/C) has been dispatched, **or** 2. By the `prd-taskmaster` orchestrator when `current_phase` is `EXECUTE`. On entry, confirm that: - `.atlas-ai/state/pipeline.json` exists and records `phase: EXECUTE` - `.taskmaster/tasks/tasks.json` exists with at least one ready task - `.atlas-ai/customizations/system-prompt-template.md` is present (may be empty — absence is a setup bug, empty is fine) If any of the above are missing, report the gap and halt. Do NOT attempt to bootstrap the missing artifact from inside this loop — that is the orchestrator's job. ## Cycle (per iteration) Each pass through this cycle moves exactly one TaskMaster task from `pending` to `done`. Do the 13 steps in order. Do not skip. 1. **Heartbeat check**: verify the execute-task heartbeat ti...

Details

Author
anombyte93
Repository
anombyte93/prd-taskmaster
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category