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.
npx skills add ErikaAX08/erikas-skills --skill spec-kit-generate-plangit clone --depth 1 https://github.com/ErikaAX08/erikas-skillsWrote 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.
[](https://agentmods.dev/skills/erikaax08/erikas-skills/spec-kit-generate-plan)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.mdchanges after a plan exists, update the plan; never let the plan silently drift from the specification it claims to implement.
Non-Negotiable Rules
- Do not invent facts. Never fabricate installed dependencies, versions, file paths, existing
components, database schemas, or library signatures. Verify per
verify-before-implementbefore writing them into the plan. - Preserve spec intent. Do not reinterpret, narrow, or expand a requirement from
spec.mdwhile 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. - Separate facts from assumptions. Every unverified technical choice is marked
NEEDS CLARIFICATIONin Technical Context or recorded as an explicit assumption — never written as settled fact. - 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.
- Abstraction before operations. Complete Technical Context, both Constitution Check gates,
Data Model, and Contracts before drafting
plan.md's strategy and decisions section. - 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. - No hollow plan. Every section of
plan.mdmust contain specific, verified content. Do not leave[NEEDS CLARIFICATION]markers, template placeholders, or unresolvedOption Nlabels in a plan reported as complete. - 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.
- Keep scope controlled. Do not add operations, components, or dependencies beyond what
spec.mdrequires. A plan that "future-proofs" beyond the approved spec is scope creep, not thoroughness. - Constitution Check gates are mandatory, not advisory. Both gates run and are reported as
PASS/FAILper principle — includingN/A — sin constituciónwhen no constitution exists. AFAILonly proceeds with a justified row in Complexity Tracking; skipping a gate silently is never acceptable, even under time pressure. - Safe Deferral is enforced, not suggested. An operation pushed to a future phase must
satisfy
Dormant,Flagged, orAdditive(§ 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." - Every plan entry is traceable. Each
plan.mddecision, component, and operation cites theR-FR##/R-AC##/E-##/R-QR##it satisfies. - Never claim readiness without validation. A plan is
READYonly afterchecklists/plan-quality.mdpasses and no blockingNEEDS CLARIFICATIONremains. - 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.
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.
- 12d ago First seen · 468 lines · 70 tokens per session scan A f58219e860fd
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.
Other skills, from other repositories
sdd-tasks
Break an SDD change into implementation tasks. Trigger: orchestrator launches task planning for a change.
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…
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.
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.
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…
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.