create-plan

A structured implementation plan based on a specification or requirements document, organized into phases, milestones, dependencies, estimates, and risks.

In plain words
What is it for?
Use it to plan delivery phases, define milestones and dependencies, estimate work, track risks, and include related state-machine, analytics, logging, metrics, tracing, or alerting work when documented.
Why use it?
It turns a feature description into an ordered work plan and makes important blockers and uncertainties visible before implementation starts.

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/tomzx/agents/create-plan
Any agent
npx skills add tomzx/agents --skill create-plan
Clone the repo
git clone --depth 1 https://github.com/tomzx/agents

Made for: Claude Code, Codex.

Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,944 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.00023 $0.01944
Opus 5 $0.00012 $0.00972
Sonnet 5 $0.00005 $0.00389
Haiku 4.5 $0.00002 $0.00194

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

Security

Grade A, and why

create-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 2d 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/create-plan/SKILL.md · 98 lines

How it starts

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

Create Plan

Produces a structured implementation plan from a specification or requirements document, organized into phases with milestones, dependencies, effort estimates, and a risk register.

Prerequisites

  • Apply the shared SDLC conventions in skills/sdlc/references/shared.md.
  • If no argument is provided, locate the feature directory under .sdlc/features/ whose frontmatter issue field references $ISSUE_NUMBER.
  • .sdlc/features/N-<slug>/specification.md (must have passed review with findings verdict approved), or a specification/requirements document provided in context or as a file path ($1)
  • .sdlc/features/N-<slug>/lifecycle.md (optional, if a lifecycle document was produced): include state machine implementation, invariant enforcement, and retention policy work as deliverables in the plan
  • .sdlc/features/N-<slug>/telemetry.md (optional, if a telemetry plan was produced): include analytics instrumentation as deliverables in the plan
  • .sdlc/features/N-<slug>/observability.md (optional, if an observability plan was produced): include logging, metrics, tracing, and alerting as deliverables in the plan
  • Team size and velocity context (if available)

Steps

  1. Read the specification or requirements, and the lifecycle, telemetry, and observability plans if present.
  2. Determine the plan structure (see Plan Structure):
    • Identify the distinct concerns the work spans from the spec (e.g., database/models, API, CLI, SDK, frontend).
    • Ask the user whether to produce a unified plan (plan.md) or a split plan set (plan/ directory, one file per concern plus an index.md). Use the question tool when available; otherwise ask conversationally and wait for the answer.
    • When the user picks split, confirm the concern list and one-word slugs (lowercase, hyphenated) that will name each plan/<concern>.md file.
    • Under automation ($OUTCOME_YAML set, no interactive user), default to unified and note the choice in the plan. If the spec clearly names multiple independent components and a split is obviously warranted, you may still default to unified; the structure can be split later during review.
  3. Identify all units of work and group them into logical phases. For a split plan, group phases within each concern; for a unified plan, group them globally.
  4. Define phase goals (milestones) and their success criteria.
  5. Map dependencies between phases and external factors as a Mermaid flowchart TD (Phase Dependencies), so parallel tracks and unintended serialization are visible at a glance. For a split plan, capture cross-concern dependencies in plan/index.md the same way.
  6. Estimate effort for each phase (person-days or story points).
  7. Identify risks and mitigations.
  8. Record assumptions that the plan depends on but has not verified. Risks in the risk register often encode assumptions (e.g., "the third-party API will be available by Phase 2", "the team will have the required capacity", "the database migration will not require downtime"). For each assumption that carries meaningful risk, promote it via /create-assumption so it is tracked and can be validated before implementation.
  9. Propose a timeline if team capacity is known: render it as a Mermaid gantt (one section per phase, or per concern for a split plan) when calendar dates are estimable; otherwise keep a duration-only table.
  10. Validate best-effort: render each mermaid block with mmdc (or npx -y @mermaid-js/mermaid-cli) when available. A missing tool is skipped; a render failure is a defect to fix before handoff.
  11. Write the output:
    • Unified: .sdlc/features/N-<slug>/plan.md.
    • Split: .sdlc/features/N-<slug>/plan/index.md plus one .sdlc/features/N-<slug>/plan/<concern>.md per concern.

Read the full file on GitHub · 98 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. 2d ago First seen · 98 lines · 23 tokens per session scan A 4319a583714d

Subscribe to this mod's changes

create-plan is a skill published in the GitHub repository tomzx/agents (5 stars, last pushed 5d ago), licensed MIT. It adds 23 tokens to every session and 1,944 once invoked, about $0.0001 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