plan-skill

plan-skill is a skill for Claude Code from bestdeejay-design/agent-skills. It costs 0 tokens per session (1,626 once invoked), scanned A, original, MIT.

A planning tool that turns a development goal into a detailed, ordered implementation plan with small steps, interfaces, and completion checks.

In plain words
What is it for?
Use it to break a feature or project stage into executable tasks, define how parts connect, set acceptance criteria, include TDD steps, and validate that the plan is complete.
Why use it?
It gives another developer a concrete sequence to follow before coding begins and exposes unfinished placeholders in the plan. TDD, or test-driven development, means writing an expected failing test before implementing the change that should make it pass.

Skill for Claude Code

Written for Claude Code: when-to-use in frontmatter.

Good fit Use it to break a feature or project stage into executable tasks, define how parts connect, set acceptance criteria, include TDD steps, and validate that the plan is complete.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bestdeejay-design/agent-skills/plan-skill
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 bestdeejay-design/agent-skills --skill plan-skill
Clone the repo
git clone --depth 1 https://github.com/bestdeejay-design/agent-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 plan-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/bestdeejay-design/agent-skills/plan-skill.svg)](https://agentmods.dev/skills/bestdeejay-design/agent-skills/plan-skill)
Your own site
<a href="https://agentmods.dev/skills/bestdeejay-design/agent-skills/plan-skill"><img src="https://agentmods.dev/badge/skills/bestdeejay-design/agent-skills/plan-skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,626 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.00000 $0.01626
Opus 5 $0.00000 $0.00813
Sonnet 5 $0.00000 $0.00325
Haiku 4.5 $0.00000 $0.00163

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

Security

Grade A, and why

plan-skill 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/plan_validator.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/plan-skill/SKILL.md · 97 lines

How it starts

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

Plan Skill

Планирование реализации: из запроса — декомпозированный план изменений, готовый к исполнению другим агентом без дополнительных уточнений.

Загружай этот скилл когда нужно разбить задачу на план шагов перед тем как кодировать. Скилл генерирует структурированный план (Markdown-файл) с фазами, bite-sized шагами, интерфейсами и критериями готовности — и проверяет его скриптом plan_validator.py на отсутствие недоделок (placeholders).

🎯 When to use

Use this skill when:

  • Есть задача «сделай X», но нужен порядок шагов и критерии готовности
  • Просят «спланируй разработку», «разбей на шаги», «составь план»
  • Нужен согласованный процесс: обсуждение → план → исполнение → проверка
  • Начинается новый этап: позбюжетные скиллы, фиц, рефакторинг, интеграция
  • Нужно одноэлементное ТЗ для передачи параллельным агентам

Do NOT use when:

  • Нужно только объяснить, как работает код — это explore/knowledge, не планирование
  • Задача тривиальная: один файл, однозначное изменение — можно без плана
  • Нужно открытого исполнения: провалидируй запрос, потом вызывай агента-coder

📦 Files

  • SKILL.md — этот файл
  • scripts/plan_validator.py — проверка плана на готовность (stdlib only)
  • templates/implementation-plan.md — шаблон плана реализации
  • examples/plan-example.md — пример готового плана

🔧 Workflow

Фаза 0 — Brainstorming (обзор запроса)

  1. Уточни цель (что получить) и границы (что НЕ входит).
  2. Проверь код если нужно: codegraph_explore / чтение ключевых файлов.
  3. Зафиксируй входные интерфейсы (что уже есть) и целевое состояние.
  4. Определи риски: ломающие изменения, скрытые зависимости, конфликты.

Фаза 1 — Writing the plan (составление)

  1. Создай файл плана по шаблону: docs/plans/<slug>-<date>.md или в корне как PLAN.md. Путь любой, главное — единый файл.
  2. Структура плана:
    • Goal — цель одним предложением + acceptance criteria (проверяемые).
    • Constraints — запреты: «не трогать X», «stdlib only», «без новых зависимостей».
    • Steps — неделимые bite-sized шаги, каждый с файлом и ожидаемым результатом.
    • Interfaces — каждый шаг с Produces: / Consumes: (что выходит, что входит).
    • Verification — как проверяем каждый шаг (команда, тест, ожидаемый вывод).
  3. Применяй TDD-стиль где уместно: шаг «пишем тест → Expected FAIL», затем «реализация → PASS».
  4. Правило No placeholders: в плане не должно быть TODO, TBD, ..., нерешительного «решим потом». Если неясно — реши сейчас или вынеси вопрос пользователю.
  5. Правило HARD-GATE: не переходи к коду, пока план не одобрен (пользователем или рулевой ролью) и не прошёл валидацию части важно.

Read the full file on GitHub · 97 lines

Files

What ships with it

4 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 · 97 lines · 0 tokens per session scan A c39e429d737a

Subscribe to this mod's changes

plan-skill is a skill published in the GitHub repository bestdeejay-design/agent-skills (5 stars, last pushed 3d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,626 tokens. 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.