executing-plans

executing-plans is a skill for Claude Code from ckorhonen/claude-skills. It costs 57 tokens per session (1,555 once invoked), scanned A, original, MIT.

A workflow for carrying out a written software implementation plan in small batches, with progress tracking and review checkpoints.

In plain words
What is it for?
Use it when a specification or task plan is ready and you want to implement its steps, review the work between batches, and report progress in a structured way.
Why use it?
It helps catch unclear steps, missing setup, or questionable technical choices before they lead to extensive rework.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is git worktree add ../feature-work -b feature/my-feature.

Part of the claude-skills plugin — 62 skills, 4 commands, 7 agents shipped together

Good fit Use it when a specification or task plan is ready and you want to implement its steps, review the work between batches, and report progress in a structured way.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/ckorhonen/claude-skills
agentmods
npx agentmods add skills/ckorhonen/claude-skills/executing-plans

Made for: Claude Code.

Or install claude-skills, the plugin that ships this one along with the rest of its 62 skills, 4 commands, 7 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for executing-plans

README.md
[![agentmods](https://agentmods.dev/badge/skills/ckorhonen/claude-skills/executing-plans.svg)](https://agentmods.dev/skills/ckorhonen/claude-skills/executing-plans)
Your own site
<a href="https://agentmods.dev/skills/ckorhonen/claude-skills/executing-plans"><img src="https://agentmods.dev/badge/skills/ckorhonen/claude-skills/executing-plans.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,555 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.01555
Opus 5 $0.00028 $0.00777
Sonnet 5 $0.00011 $0.00311
Haiku 4.5 $0.00006 $0.00155

Measured 8d ago against content hash fe4a65a49fe1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

executing-plans scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/executing-plans/SKILL.md · 137 lines

How it starts

The opening of the file, as written. The whole thing — 137 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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 the plan file completely
  2. Review it critically — this is where you catch flaws before they become expensive rework. Look for:
    • Steps that seem vague or contradictory
    • Missing dependencies or setup
    • Assumptions that don't hold in your actual codebase
    • Technical choices you'd question
  3. If concerns exist: Raise them with your partner before proceeding. Getting alignment now saves many hours of wrong execution
  4. If the plan looks solid: Create a todo tracker and proceed to Step 2

Step 2: Execute Batch

Default: First 3 tasks per batch

The checkpoint-driven approach (3 tasks, pause for feedback, continue) gives your partner visibility and prevents you from building on a flawed foundation.

For each task in the batch:

  1. Mark it as in_progress in your tracker
  2. Follow the plan's steps exactly — they're designed to be small and verifiable
  3. Run the specified verifications before marking done — this catches mistakes early
  4. If verification fails: stop, report it, and wait for guidance
  5. If verification passes: mark as completed and move to the next task

Keep focus tight. Executing 3 tasks well and getting feedback is faster than executing 10 tasks blind and discovering you went the wrong direction halfway through.

Step 3: Report

When the batch is done, report clearly:

  • Show what was implemented (what changed, new files, modified code)
  • Show verification output (test results, error messages if any)
  • Summarize any unexpected findings or minor deviations from the plan
  • End with: "Ready for feedback."

This pause-to-report is critical. It gives your partner a chance to course-correct before you invest more work.

Read the full file on GitHub · 137 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 137 lines · 57 tokens per session scan A fe4a65a49fe1

Subscribe to this mod's changes

executing-plans is a skill published in the GitHub repository ckorhonen/claude-skills (14 stars, last pushed 2mo ago), licensed MIT. It adds 57 tokens to every session and 1,555 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

watch

File sentinel that monitors the working directory for changes and marker comments, then auto-triggers appropriate skills. Poll-based via git diff against the last scan commit. Writes intake items for batch processing and routes marker actions through /do. Use for automatic reactions to file changes; do NOT use for…

SethGammon/Citadel · 70 tokens

review

5-pass structured code review — correctness, security, performance, readability, consistency.

SethGammon/Citadel · 17 tokens

live-preview

Mid-build visual verification loop. Takes screenshots of components during construction, not just after. Catches visual regressions and invisible features before they compound. Requires Playwright or similar screenshot tool.

SethGammon/Citadel · 40 tokens

marshal

Meta-orchestrator that takes any direction — broad, specific, or vague — and autonomously chains skills and context into actionable work. Gathers context from codebase, docs, and memory. Only asks the user when it genuinely cannot proceed. Single-session orchestrator.

SethGammon/Citadel · 56 tokens

wiki

Markdown-first knowledge base where the LLM acts as librarian. Ingests raw sources, compiles and interlinks topic files, self-maintains an index. No vector DB or embeddings required -- uses LLM-native navigation over structured markdown up to 400K words.

SethGammon/Citadel · 56 tokens

huggingface-llm-trainer

Train or fine-tune language models with TRL or Unsloth on Hugging Face Jobs, including SFT, DPO, GRPO, reward models, and GGUF conversion. Use for cloud LLM training; use huggingface-vision-trainer for vision tasks.

waybarrios/opencode-power-pack · 65 tokens