plan

plan is a skill for Claude Code from jasonm4130/claude-skills. It costs 183 tokens per session (1,488 once invoked), scanned A, original, MIT.

A planning workflow for turning a software feature or fix into an implementation plan. It sizes the work first, then creates either no document, a short plan, or a short design specification followed by a plan.

In plain words
What is it for?
It helps decide whether work is trivial, medium, or large; resolve open questions; document constraints; and produce tasks that another developer or automation process can follow.
Why use it?
Small changes do not need heavy documentation, while large changes can fail when important design choices remain unresolved. This workflow matches the amount of planning to the size and reversibility of the work.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Codex.

Part of the nightshift plugin — 5 skills, 2 agents shipped together

Good fit It helps decide whether work is trivial, medium, or large; resolve open questions; document constraints; and produce tasks that another developer or automation process can follow.

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

Made for: Claude Code.

Or install nightshift, the plugin that ships this one along with the rest of its 5 skills, 2 agents.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/jasonm4130/claude-skills/plan/github.svg)](https://agentmods.dev/skills/jasonm4130/claude-skills/plan)
Your own site
<a href="https://agentmods.dev/skills/jasonm4130/claude-skills/plan"><img src="https://agentmods.dev/badge/skills/jasonm4130/claude-skills/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 plan

Your own site · 80×15
<a href="https://agentmods.dev/skills/jasonm4130/claude-skills/plan"><img src="https://agentmods.dev/badge/skills/jasonm4130/claude-skills/plan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 183 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,488 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.00183 $0.01488
Opus 5 $0.00092 $0.00744
Sonnet 5 $0.00037 $0.00298
Haiku 4.5 $0.00018 $0.00149

Measured 5d ago against content hash 15e1572c1582, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

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 5d 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.

plugins/nightshift/skills/plan/SKILL.md · 112 lines

How it starts

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

Plan by day

A plan is the only thing Nightshift reads. What this skill produces is read at 2 a.m. by a generator that cannot ask anyone anything, so every task must be complete on its own, and every open question must be closed before the plan merges. Announce: "Using nightshift:plan to turn this into a landable plan."

1. Size it, and stop early when you can

Size Looks like Do
Trivial one sitting, one file or one clear edit, no design choice No artifact. Say so and do it now, or hand it to the user.
Medium a few files, one design choice or none, a day's work A lean plan: header, constraints, tasks. No spec.
Large several subsystems, choices that are hard to reverse, more than a day A short spec first (docs/specs/YYYY-MM-DD-<slug>.md: problem, decision, what is out), user-approved, then the plan.

If the work spans independent subsystems, propose one plan per subsystem; each must produce working software on its own.

2. Settle the design, one question at a time

Read the code the change touches before asking anything. Then ask only what the code cannot answer, one question per turn, preferring multiple choice. State your interpretation and proceed when a wrong guess is cheap; ask when it is not. Two or three questions is typical; ten means the size was wrong.

HARD GATE: no implementation, no scaffolding, no "quick spike" before the user has approved the design (large) or the task list (medium). The loop lands what the plan says, so a plan written to a design nobody approved lands the wrong thing overnight.

3. Write the plan

Path: docs/plans/YYYY-MM-DD-<slug>.md (the repo's loop/config names the plan being landed; a plan directory elsewhere wins if the repo already has one).

# <Feature> Implementation Plan

**Goal:** one sentence.
**Architecture:** two or three sentences on the approach.
**Tech Stack:** what the tasks use.

## Global Constraints
- one line each: version floors, naming rules, platform requirements.
  Every task inherits these.

### Task 1: <component>

**Files:**
- Create: `exact/path.ts`
- Modify: `exact/existing.ts:120-140`
- Test: `tests/exact.test.ts`

**Interfaces:**
- Consumes: what this task uses from earlier tasks, exact names and types.
- Produces: what later tasks rely on, exact names and types.

- [ ] **Step 1:** write the failing test — show the test.
- [ ] **Step 2:** run it, expect FAIL with "<message>".
- [ ] **Step 3:** implement — show the code.
- [ ] **Step 4:** run `<the repo's test command>`, expect PASS.
- [ ] **Step 5:** commit: `git add <paths> && git commit -m "<why>"`.

## Open Questions
(must be empty before the plan merges)

Read the full file on GitHub · 112 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. 5d ago First seen · 112 lines · 183 tokens per session scan A 15e1572c1582

Subscribe to this mod's changes

plan is a skill published in the GitHub repository jasonm4130/claude-skills (5 stars, last pushed 4d ago), licensed MIT. It adds 183 tokens to every session and 1,488 once invoked, about $0.0009 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-09-05.

Related

Other skills, from other repositories

corpus

Worked examples of bad and corrected Claude Code chat output. Use when a reply is about to run long, when unsure whether a sentence is decoration or information, when a status update is forming, or when the user says the output is too long, too corporate, full of jargon, or reads like AI. Also use when writing or…

pehcastro/harness · 78 tokens

meta-tags-optimizer

Optimize title tags, meta descriptions, Open Graph, and Twitter cards for maximum click-through rate. Generates multiple A/B test variations with character counting and SERP preview. Use when asked to "optimize title tag", "write meta description", "improve CTR", "Open Graph tags", "fix my meta tags", "social media…

nowork-studio/notfair-plugin · 91 tokens

google-ads-audit

Google Ads account audit and business context setup. Run this first — it gathers business information, analyzes account health, and saves context that all other ads skills reuse. Trigger on "audit my ads", "ads audit", "set up my ads", "onboard", "account overview", "how's my account", "ads health check", "what should…

nowork-studio/notfair-plugin · 114 tokens

sxo

Search Experience Optimization (SXO) — the bridge between SEO and UX/CRO. Audits the full journey from the SERP click to the on-page goal: SERP click-through factors (title/meta/rich results that win the click), then post-click experience signals that keep users and drive conversions — above-the-fold relevance and…

nowork-studio/notfair-plugin · 235 tokens

critical-code-reviewer

Rigorously review code or pull requests for correctness, security, accessibility, maintainability, tests, and edge cases. Use when users request a critical code review, want a guided walkthrough of findings, need implementer-facing feedback, or want to prepare, create, or submit a GitHub pull request review.

posit-dev/skills · 67 tokens

shiny-bslib

Build modern Shiny dashboards and applications using bslib (Bootstrap 5). Use when creating new Shiny apps, modernizing legacy apps (fluidPage, fluidRow/column, tabsetPanel, wellPanel, shinythemes), or working with bslib page layouts, grid systems, cards, value boxes, navigation, sidebars, filling layouts, theming…

posit-dev/skills · 107 tokens