executing-plans

Installation
SKILL.md

Executing Plans

Overview

Load plan, review critically, execute tasks in batches, report for review between batches.

Core principle: Batch execution with checkpoints for architect review.

Announce at start: "I'm using the executing-plans skill to implement this plan."

The Process

Step 1: Load and Review Plan

  1. Read plan file
  2. Review critically - identify any questions or concerns about the plan
  3. If concerns: Raise them with your human partner before starting
  4. If no concerns: Create TodoWrite and proceed

Step 2: Identify Runnable Tasks

Use warcraft_status() to get the runnable list — tasks with all dependencies satisfied.

Only done satisfies dependencies (not blocked, failed, partial, cancelled).

When 2+ tasks are runnable:

  • Ask the operator via question(): "Multiple tasks are runnable: [list]. Run in parallel, sequential, or a specific subset?"
  • Record the decision with warcraft_context_write({ name: "execution-decisions", mode: "append", content: "### YYYY-MM-DD\n- Decision: run [list]\n- Rationale: ..." }) for future reference

When 1 task is runnable: Proceed directly.

Step 3: Execute Batch

For each task in the batch:

  1. Prepare workspace via warcraft_worktree_create(), then issue the returned task() call to launch the worker
  2. Follow each step exactly (plan has bite-sized steps)
  3. Run verifications as specified
  4. Mark as completed

Step 4: Report

When batch complete:

  • Show what was implemented
  • Show verification output
  • Say: "Ready for feedback."

Step 4.5: Post-Batch Algalon Review

After the batch report, ask the operator if they want an Algalon code review for the batch. If yes, run task({ subagent_type: "algalon", prompt: "Review implementation changes from the latest batch." }) and apply feedback before starting the next batch.

Step 5: Continue

Based on feedback:

  • Apply changes if needed
  • Execute next batch
  • Repeat until complete

Step 6: Complete Development

After all tasks complete and verified:

  • Announce: "I'm using the verification-before-completion skill to complete this work."
  • REQUIRED SUB-SKILL: Use warcraft_skill:verification-before-completion
  • Follow that skill to verify tests, present options, execute choice

When to Stop and Ask for Help

STOP executing immediately when:

  • Hit a blocker mid-batch (missing dependency, test fails, instruction unclear)
  • Plan has critical gaps preventing starting
  • You don't understand an instruction
  • Verification fails repeatedly

Ask for clarification rather than guessing.

When to Revisit Earlier Steps

Return to Review (Step 1) when:

  • Partner updates the plan based on your feedback
  • Fundamental approach needs rethinking

Don't force through blockers - stop and ask.

Remember

  • Review plan critically first
  • Follow plan steps exactly
  • Don't skip verifications
  • Reference skills when plan says to
  • Between batches: just report and wait
  • Stop when blocked, don't guess
Related skills
Installs
1
GitHub Stars
2
First Seen
Mar 20, 2026