memory-plan-execution

star 16

Save the approved plan and checkpoint when execution starts, and verify all plan checkbox items are complete before claiming the task is finished

3vilM33pl3 By 3vilM33pl3 schedule Updated 6/15/2026

name: memory-plan-execution version: 0.9.4 description: Save the approved plan and checkpoint when execution starts, and verify all plan checkbox items are complete before claiming the task is finished

Memory Plan Execution Skill

Use this skill when:

  • a planning session has ended and the user approved execution
  • plan-backed work is underway and the agent needs to verify completion
  • the approved plan changed materially and needs to be resaved for the same thread

Do not use this skill for:

  • general project questions
  • interruption recovery without a plan transition
  • post-task remembering once the work is already verified complete

Scripts

Save the approved plan and checkpoint together:

go run ./.agents/skills/memory-layer/scripts/main.go start-plan-execution \
  --project <project-slug> \
  --plan-file /tmp/approved-plan.md

Verify the approved plan is fully executed:

go run ./.agents/skills/memory-layer/scripts/main.go finish-plan-execution \
  --project <project-slug>

Optional explicit checkpoint-only helper:

go run ./.agents/skills/memory-layer/scripts/main.go checkpoint-project \
  --project <project-slug> \
  --note "Plan approved; starting implementation"

Workflow

  1. When the user approves a real plan, run start-plan-execution before implementation starts.
  2. The approved plan must contain Markdown checkbox items so completion can be verified later.
  3. If the plan changes materially during execution, save the revised approved plan first with the same thread key.
  4. Before claiming plan-backed work is finished, run finish-plan-execution.
  5. Do not present the task as finished if any checkbox item remains unchecked.
  6. If there is no approved plan and the user gives a direct actionable task, use the umbrella skill's start-task-execution workflow instead of this plan workflow.

Model Routing

Keep this skill on the stronger engineering path.

Runtime Requirement

This focused skill uses the shared Go helper under .agents/skills/memory-layer/scripts/. go must be available on PATH for these helper commands to run.

Install via CLI
npx skills add https://github.com/3vilM33pl3/memory --skill memory-plan-execution
Repository Details
star Stars 16
call_split Forks 10
navigation Branch main
article Path SKILL.md
More from Creator