local-execution-planner

local-execution-planner is a skill for Claude Code from kangwa/penny. It costs 65 tokens per session (1,992 once invoked), scanned A, original, MIT.

A planning tool that inspects a code repository, breaks a task into prompts for a small local coding model, and sends the plan to a local executor. It defines checks for confirming each step worked and does not implement the task itself.

In plain words
What is it for?
Use it when you want a repository task planned and handed off for local execution, with step-by-step prompts and deterministic evaluation checks.
Why use it?
It separates understanding and planning from code changes. This gives the local model smaller, ordered tasks and clear tests for deciding whether each task is complete.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; mentions CLAUDE.md; mentions subagents.

Good fit Use it when you want a repository task planned and handed off for local execution, with step-by-step prompts and deterministic evaluation checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kangwa/penny/local-execution-planner
View source ↗ kangwa/penny
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add kangwa/penny --skill local-execution-planner
Clone the repo
git clone --depth 1 https://github.com/kangwa/penny

Made for: Claude Code.

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 local-execution-planner

README.md
[![agentmods](https://agentmods.dev/badge/skills/kangwa/penny/local-execution-planner.svg)](https://agentmods.dev/skills/kangwa/penny/local-execution-planner)
Your own site
<a href="https://agentmods.dev/skills/kangwa/penny/local-execution-planner"><img src="https://agentmods.dev/badge/skills/kangwa/penny/local-execution-planner.svg" alt="Measured on agentmods" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,992 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.00065 $0.01992
Opus 5 $0.00032 $0.00996
Sonnet 5 $0.00013 $0.00398
Haiku 4.5 $0.00006 $0.00199

Measured 7d ago against content hash 27e84dcac5e9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

local-execution-planner 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 7d 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.

skill/local-execution-planner/SKILL.md · 255 lines

How it starts

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

Local execution planner

Plan the following task for a small local coding model, then hand the plan to the local executor:

$ARGUMENTS

Role boundary

You are the frontier planner, not the implementer.

Use your capability for exactly five things:

  1. understanding the repository;
  2. architecture;
  3. decomposition into steps;
  4. writing the step prompts;
  5. designing the eval gates.

Everything else is the local worker's job or the orchestrator's job.

  • Do not modify files. You have no editing tools.
  • Do not run commands. You have no shell.
  • Do not run the local worker yourself. Submitting a plan is the only way work starts, and the orchestrator drives the worker from there.
  • Do not invoke subagents or web tools.
  • Do not implement any part of the requested change, not even a small part.
  • Do not poll after submitting. Report the run identifier and stop.
  • Stop after the handoff.

Local executor model

Assume each execution step is given to a fresh small local-model session with:

  • access to the repository at the state left by earlier successful steps;
  • file reading, searching, editing, and terminal tools;
  • no access to this Claude conversation;
  • no access to your hidden reasoning;
  • only the current step prompt, eval failures for that step, and repository contents.

Therefore, every step prompt must be self-contained and repository-aware. A prompt may refer to artifacts or code created by an explicitly listed dependency, but never to unstated conversation history. This is the single most important property of the manifest: if a prompt only makes sense to someone who read this conversation, the step will fail.

Planning procedure

  1. Read applicable project instructions, including CLAUDE.md, AGENTS.md, README files, package manifests, build configuration, and test configuration.
  2. Locate the code paths, public interfaces, data models, tests, and conventions relevant to the request.
  3. Trace the current behavior before proposing changes.
  4. Choose the smallest coherent design that satisfies the request.
  5. Identify compatibility, migration, security, concurrency, failure-handling, and rollback concerns where relevant.
  6. Divide the implementation into small sequential steps that can each be completed and evaluated independently.
  7. Define deterministic evals that the orchestrator can run without an LLM deciding whether they passed.
  8. Check the finished manifest against the rules below before validating it.

Read the full file on GitHub · 255 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago First seen · 255 lines · 65 tokens per session scan A 27e84dcac5e9

Subscribe to this mod's changes

local-execution-planner is a skill published in the GitHub repository kangwa/penny (0 stars, last pushed 1mo ago), licensed MIT. It adds 65 tokens to every session and 1,992 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-31.

Related

Other skills, from other repositories

taiyi-requirement

A requirements-analysis process that turns a proposed change into a REQUIREMENT.md document. It records user needs, acceptance checks, terminology, triggers, and dependencies, with different levels of detail for different project sizes.

Dong90/oh-my-taiyiforge · 27 tokens

taiyi-change

A TaiyiForge workflow stage for writing a change proposal in CHANGE.md, with checks for scope, risks, success criteria, and related project documents.

Dong90/oh-my-taiyiforge · 25 tokens

taiyi-integration

A project workflow skill for closing a TaiyiForge change and recording it in a CHANGELOG.md file. It checks review results, tests, and the state of the working tree before archiving the change.

Dong90/oh-my-taiyiforge · 27 tokens

taiyi-test

A project workflow skill for verifying an implementation and producing a TEST.md record. TDD means writing a failing test, implementing the change, and then making the test pass; this skill checks that process and other regression cases.

Dong90/oh-my-taiyiforge · 24 tokens

taiyi-ui-design

A design-planning guide for describing how an application's user interface should look and behave. It produces a UI-DESIGN.md document covering layouts, components, interactions, accessibility, and error states.

Dong90/oh-my-taiyiforge · 35 tokens

taiyi-evolve

A workflow skill that compares the implemented code with the frozen design after development and testing. It records architecture changes and proposes updates to DESIGN.md, the document describing the intended system structure.

Dong90/oh-my-taiyiforge · 37 tokens