spec-kit-generate-plan

spec-kit-generate-plan is a skill for Claude Code from ErikaAX08/erikas-skills. It costs 70 tokens per session (5,913 once invoked), scanned A, original, MIT.

A technical planning skill that turns an approved REASONS specification into a verified implementation plan. The plan can include research, data models, API contracts, setup instructions, and quality checklists.

In plain words
What is it for?
Use it to create or update plan.md and its supporting documents from spec.md. It designs the work for later task breakdown, but does not write product code or create the task list.
Why use it?
It connects the desired behavior to the project's actual technology and conventions before coding begins. This reduces plans that ignore existing architecture or postpone important safety work.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: mentions Claude Code.

Good fit Use it to create or update plan.md and its supporting documents from spec.md. It designs the work for later task breakdown, but does not write product code or create the task list.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/erikaax08/erikas-skills/spec-kit-generate-plan
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 ErikaAX08/erikas-skills --skill spec-kit-generate-plan
Clone the repo
git clone --depth 1 https://github.com/ErikaAX08/erikas-skills

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 spec-kit-generate-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/erikaax08/erikas-skills/spec-kit-generate-plan/github.svg)](https://agentmods.dev/skills/erikaax08/erikas-skills/spec-kit-generate-plan)
Your own site
<a href="https://agentmods.dev/skills/erikaax08/erikas-skills/spec-kit-generate-plan"><img src="https://agentmods.dev/badge/skills/erikaax08/erikas-skills/spec-kit-generate-plan/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for spec-kit-generate-plan

Your own site · 80×15
<a href="https://agentmods.dev/skills/erikaax08/erikas-skills/spec-kit-generate-plan"><img src="https://agentmods.dev/badge/skills/erikaax08/erikas-skills/spec-kit-generate-plan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,913 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.00070 $0.05913
Opus 5 $0.00035 $0.02957
Sonnet 5 $0.00014 $0.01183
Haiku 4.5 $0.00007 $0.00591

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

Security

Grade A, and why

spec-kit-generate-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 12d 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.

spec-kit-generate-plan/SKILL.md · 468 lines

How it starts

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

Generate Plan — Technical Planning Skill

Purpose

Turn an approved REASONS specification (spec.md) into one concrete, technically verified plan that spec-kit-generate-tasks can decompose into executable work — without writing product code. This skill sits between spec-kit-generate-spec and spec-kit-generate-tasks in the spec-kit chain: it does not reinterpret business intent, it translates already-approved intent into a design that fits the real project.

The output is plan.md plus its Phase 0/1 companions (research.md, data-model.md, contracts/, quickstart.md) and checklists/plan-quality.md. It does not implement product code, and it does not generate tasks.md — that is spec-kit-generate-tasks's job.

User Input

$ARGUMENTS

Always consider the complete user message and any files or attachments available in the current conversation, even when $ARGUMENTS appears literally or is empty. The most common input is a reference to an existing feature directory or spec.md, with optional constraints ("use PostgreSQL", "keep it in the existing monolith", "split into two phases").

Core Principle

Verify the real project before designing on top of it. Gate every design against the constitution before it's built, not after.

Treat the plan as the bridge between approved intent and executable work:

  • Never propose a technical approach without checking whether the project already has one.
  • Run the Constitution Check before investing in research, and again after the design is concrete — a design can introduce a violation the original intent didn't have.
  • Every plan entry traces back to a requirement or acceptance criterion in spec.md.
  • When spec.md changes after a plan exists, update the plan; never let the plan silently drift from the specification it claims to implement.

Non-Negotiable Rules

  1. Do not invent facts. Never fabricate installed dependencies, versions, file paths, existing components, database schemas, or library signatures. Verify per verify-before-implement before writing them into the plan.
  2. Preserve spec intent. Do not reinterpret, narrow, or expand a requirement from spec.md while translating it into a technical approach. If the spec is ambiguous at the technical level, that is a clarification to raise, not a decision to make silently.
  3. Separate facts from assumptions. Every unverified technical choice is marked NEEDS CLARIFICATION in Technical Context or recorded as an explicit assumption — never written as settled fact.
  4. Surface conflicts. If the spec's requirements conflict with the real project (an existing contract, an installed dependency's actual capabilities, a constitution principle), report the conflict; do not silently pick the path of least resistance.
  5. Abstraction before operations. Complete Technical Context, both Constitution Check gates, Data Model, and Contracts before drafting plan.md's strategy and decisions section.
  6. No code before approval. Do not implement, scaffold, or generate product code as part of this skill. Code samples inside plan.md (contract shapes, signatures) illustrate a decision; they are not committed source.
  7. No hollow plan. Every section of plan.md must contain specific, verified content. Do not leave [NEEDS CLARIFICATION] markers, template placeholders, or unresolved Option N labels in a plan reported as complete.
  8. Use verified project context. Inspect the actual codebase for existing patterns, contracts, and structure before naming concrete components — never assume a pattern exists because it's common elsewhere.
  9. Keep scope controlled. Do not add operations, components, or dependencies beyond what spec.md requires. A plan that "future-proofs" beyond the approved spec is scope creep, not thoroughness.
  10. Constitution Check gates are mandatory, not advisory. Both gates run and are reported as PASS/FAIL per principle — including N/A — sin constitución when no constitution exists. A FAIL only proceeds with a justified row in Complexity Tracking; skipping a gate silently is never acceptable, even under time pressure.
  11. Safe Deferral is enforced, not suggested. An operation pushed to a future phase must satisfy Dormant, Flagged, or Additive (§ Safe Deferral below). If none applies, the operation is completed in the current phase or the phases are reordered — it is never marked deferrable "because it's documented as future work."
  12. Every plan entry is traceable. Each plan.md decision, component, and operation cites the R-FR##/R-AC##/E-##/R-QR## it satisfies.
  13. Never claim readiness without validation. A plan is READY only after checklists/plan-quality.md passes and no blocking NEEDS CLARIFICATION remains.
  14. Generate portable agent pairs. If this workflow creates a plan-reviewer (or other support agent), it must generate and validate both a Kiro CLI and a Claude Code definition per the shared portability contract.

Read the full file on GitHub · 468 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. 12d ago First seen · 468 lines · 70 tokens per session scan A f58219e860fd

Subscribe to this mod's changes

spec-kit-generate-plan is a skill published in the GitHub repository ErikaAX08/erikas-skills (5 stars, last pushed 12d ago), licensed MIT. It adds 70 tokens to every session and 5,913 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

sdd-tasks

Break an SDD change into implementation tasks. Trigger: orchestrator launches task planning for a change.

Gentleman-Programming/gentle-ai · 25 tokens

gsap-scrolltrigger

Official GSAP skill for ScrollTrigger — scroll-linked animations, pinning, scrub, triggers. Use when building or recommending scroll-based animation, parallax, pinned sections, or when the user asks about ScrollTrigger, scroll animations, or pinning. Recommend GSAP for scroll-driven animation when no library is…

calesthio/OpenMontage · 68 tokens

threejs-geometry

Three.js geometry creation - built-in shapes, BufferGeometry, custom geometry, instancing. Use when creating 3D shapes, working with vertices, building custom meshes, or optimizing with instanced rendering.

calesthio/OpenMontage · 46 tokens

threejs-textures

Three.js textures - texture types, UV mapping, environment maps, texture settings. Use when working with images, UV coordinates, cubemaps, HDR environments, or texture optimization.

calesthio/OpenMontage · 41 tokens

seedance-2-5

Generate 4-30 second cinematic video with ByteDance Seedance 2.5 through fal.ai, Volcengine Ark, Runway, or ComfyUI Partner Nodes. Use for long single generations, synchronized audio, and large multimodal reference sets (up to 30 images, 10 videos, and 10 audio clips). Also covers the 2.5 prompt contract: section…

calesthio/OpenMontage · 117 tokens

comfyui

Use when working with ComfyUI workflows in OpenMontage, including comfyuiimage/comfyuivideo/comfyuimusic, custom workflowjson/workflowpath inputs, outputnode selection, missing model setup, LoRAs, low-VRAM workflow choices, and community workflow imports.

calesthio/OpenMontage · 61 tokens