TWISTEdBRACKETS

Skill

Executing Plans

Execute a written implementation plan task by task, driving the TDD loop and e2e verification.

// workflow;

Behaviour

What it does

  • Loads and critically reviews the plan before coding
  • On delta work, requires a green test baseline before any edits
  • Works through tasks in batches of three with TDD at each step
  • Reports out-of-plan file touches and enforces frozen scope
  • Pauses after each batch for your review
  • Triggers end-to-end-testing when the unit suite is green
  • Runs conformance-check after delta builds to catch drift
  • Stops and asks when something fails or the plan has gaps

When to use

Good fits

A plan exists in docs/plans/ and you are ready to build

You want structured progress with checkpoints, not a single long coding burst

After project-setup on a greenfield repo, or directly on an existing codebase

Development harness

Step 7 of 8 · Build

Part of the design-to-ship pipeline: brainstorming → technical-documentation → conformance-check → reconciling-changes → planning → project-setup → executing-plans → shipping. Install the full set for structured feature work.

Install

Get this skill

Uses Agent Kit via npx; no global install required.

Quick install

sh
npx @levi-putna/agent-kit@latest add levi-putna/skills --skill executing-plans

Global (Cursor)

sh
npx @levi-putna/agent-kit@latest add levi-putna/skills --skill executing-plans --global --agent cursor

Global (Claude)

sh
npx @levi-putna/agent-kit@latest add levi-putna/skills --skill executing-plans --global --agent claude

Project install

sh
npx @levi-putna/agent-kit@latest add levi-putna/skills --skill executing-plans --project

Interactive install

sh
npx @levi-putna/agent-kit@latest add levi-putna/skills

Uninstall

sh
npx @levi-putna/agent-kit@latest remove executing-plans

Example

Example prompt

Executing Plans

Execute docs/plans/2026-06-29-export.md. Checkpoint after each batch.

Flow

How the skill works

  1. Load and critically review the plan
  2. Execute tasks in batches of three using test-driven-development
  3. Checkpoint with the user after each batch
  4. Run end-to-end-testing when all tasks are built
  5. Run conformance-check on delta work, then hand off to shipping