implementation-plan

implementation-plan is a skill for Claude Code, Codex from darrencroton/ai-agent-coder. It costs 39 tokens per session (4,494 once invoked), scanned A, original, MIT.

A planning workflow for breaking a software request into small, testable implementation slices.

In plain words
What is it for?
Use it to create an auditable plan before implementation, especially when a request contains several related changes.
Why use it?
It gives future coding sessions a clear contract, including what to change, what not to change, and how to verify the result.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/darrencroton/ai-agent-coder/implementation-plan
Any agent
npx skills add darrencroton/ai-agent-coder --skill implementation-plan
Clone the repo
git clone --depth 1 https://github.com/darrencroton/ai-agent-coder

Made for: Claude Code, Codex.

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 implementation-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/darrencroton/ai-agent-coder/implementation-plan.svg)](https://agentmods.dev/skills/darrencroton/ai-agent-coder/implementation-plan)
Your own site
<a href="https://agentmods.dev/skills/darrencroton/ai-agent-coder/implementation-plan"><img src="https://agentmods.dev/badge/skills/darrencroton/ai-agent-coder/implementation-plan.svg" alt="Measured on agentmods" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,494 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00039 $0.04494
Opus 5 $0.00019 $0.02247
Sonnet 5 $0.00008 $0.00899
Haiku 4.5 $0.00004 $0.00449

Measured 3d ago against content hash 0fae5d254fce, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

implementation-plan 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 3d 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/implementation-plan/SKILL.md · 223 lines

How it starts

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

Implementation Plan

Use this skill to produce the plan-first artifact for a later implementation chat. Do not implement code while using this skill unless the user explicitly changes the task.

Purpose

Create a plan that makes each agent loop narrow, boring, and auditable. The output should be good enough that a new chat can implement one slice without needing the original discussion.

Workflow

  1. Inspect the codebase enough to understand the requested change and the relevant conventions.
  2. Identify the likely implementation model/profile if the user supplied one. If not supplied, default to conservative atomic slices but include batching guidance for stronger models when adjacent slices can safely share one review.
  3. Define the smallest useful acceptance slices. If the request has multiple concerns, split it into ordered slices, but do not split purely mechanical setup/docs/runtime work so finely that the plan becomes harder to execute than the change.
  4. Group adjacent slices into optional implementation batches when a stronger model could reasonably implement them together under one drift audit and code review. Never group slices that cross an approval-needed gate, mix unrelated risky surfaces, or would make rollback unclear.
  5. For each slice, freeze the contract before proposing implementation detail.
  6. Identify risky surfaces: auth, billing, permissions, persistence, database schema, migrations, shared types, API contracts, routing, global state, concurrency, generated files, public CLI flags, or release/deployment config.
  7. If a slice touches a risky surface, mark it as requiring explicit approval or split it until the risk is isolated.
  8. Define validation before coding: tests to add/update, targeted checks to run, and behaviours that must not regress.
  9. End with a copyable implementation prompt for the next chat.

Slice Granularity

Choose slice size based on risk, coupling, rollback, and expected implementer strength.

  • Frontier model / senior human profile: prefer one to three substantial slices for a coherent feature when the change is internally coupled, low-to-medium risk, and can be reviewed with one clear diff per slice. Use optional batches so the implementer can run multiple atomic contracts together when that improves coherence.
  • Standard strong model profile: prefer smaller slices with one main runtime concern per slice and explicit validation after each. Keep batching optional, not required.
  • Weaker or less trusted model profile: prefer narrower atomic slices, more checkpoints, and less cross-file autonomy.

Read the full file on GitHub · 223 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. 3d ago First seen · 223 lines · 39 tokens per session scan A 0fae5d254fce

Subscribe to this mod's changes

implementation-plan is a skill published in the GitHub repository darrencroton/ai-agent-coder (2 stars, last pushed 7d ago), licensed MIT. It adds 39 tokens to every session and 4,494 once invoked, about $0.0002 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

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens