create-plans

create-plans is a skill for Claude Code from glittercowboy/taches-cc-resources. It costs 57 tokens per session (4,396 once invoked), scanned B, original, MIT.

A method for writing small, hierarchical project plans that an AI coding agent can execute independently. It breaks work into phases and tasks with clear checks for completion.

In plain words
What is it for?
Use it to turn a brief or roadmap into executable phase plans, split work into focused tasks, define verification criteria, and prepare context handoffs for later work.
Why use it?
It reduces oversized plans that become vague or harder to follow as the project grows, and keeps each piece small enough to review and verify.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions subagents; names the AskUserQuestion tool.

Part of the taches-cc-resources plugin — 12 skills, 19 commands, 3 agents shipped together

Good fit Use it to turn a brief or roadmap into executable phase plans, split work into focused tasks, define verification criteria, and prepare context handoffs for later work.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/glittercowboy/taches-cc-resources/create-plans
About the project

TÂCHES Claude Code Resources is a collection of custom commands, skills, and agents that structure Claude Code workflows such as planning, debugging, automation, and subagent creation. It is intended for developers who use Claude Code for real software projects. The catalogue entries are examples of the resources included in the collection.

glittercowboy/taches-cc-resources · 1,976 stars · on GitHub · youtube.com

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 glittercowboy/taches-cc-resources --skill create-plans
Clone the repo
git clone --depth 1 https://github.com/glittercowboy/taches-cc-resources

Made for: Claude Code.

Or install taches-cc-resources, the plugin that ships this one along with the rest of its 12 skills, 19 commands, 3 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 create-plans

README.md
[![agentmods](https://agentmods.dev/badge/skills/glittercowboy/taches-cc-resources/create-plans/github.svg)](https://agentmods.dev/skills/glittercowboy/taches-cc-resources/create-plans)
Your own site
<a href="https://agentmods.dev/skills/glittercowboy/taches-cc-resources/create-plans"><img src="https://agentmods.dev/badge/skills/glittercowboy/taches-cc-resources/create-plans/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 create-plans

Your own site · 80×15
<a href="https://agentmods.dev/skills/glittercowboy/taches-cc-resources/create-plans"><img src="https://agentmods.dev/badge/skills/glittercowboy/taches-cc-resources/create-plans.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,396 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00057 $0.04396
Opus 5 $0.00028 $0.02198
Sonnet 5 $0.00011 $0.00879
Haiku 4.5 $0.00006 $0.00440

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

Security

Grade B, and why

create-plans scanned grade B with 1 finding 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 10d 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.

Enumerates other installed skillsmediumAgent snooping

Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.

ls ~/.claude/skills/expertise/ 2>/dev/null
Origin

Copies of this mod

2 near-identical copies found in the catalogue:

skills/create-plans/SKILL.md · 489 lines

How it starts

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

<essential_principles>

When planning a phase, you are writing the prompt that will execute it.

The quality degradation curve:

  • 0-30% context: Peak quality (comprehensive, thorough, no anxiety)
  • 30-50% context: Good quality (engaged, manageable pressure)
  • 50-70% context: Degrading quality (efficiency mode, compression)
  • 70%+ context: Poor quality (self-lobotomization, rushed work)

Critical insight: Claude doesn't degrade at 80% - it degrades at ~40-50% when it sees context mounting and enters "completion mode." By 80%, quality has already crashed.

Solution: Aggressive atomicity - split phases into many small, focused plans.

Examples:

  • 01-01-PLAN.md - Phase 1, Plan 1 (2-3 tasks: database schema only)
  • 01-02-PLAN.md - Phase 1, Plan 2 (2-3 tasks: database client setup)
  • 01-03-PLAN.md - Phase 1, Plan 3 (2-3 tasks: API routes)
  • 01-04-PLAN.md - Phase 1, Plan 4 (2-3 tasks: UI components)

Each plan is independently executable, verifiable, and scoped to 2-3 tasks maximum.

Atomic task principle: Better to have 10 small, high-quality plans than 3 large, degraded plans. Each commit should be surgical, focused, and maintainable.

Autonomous execution: Plans without checkpoints execute via subagent with fresh context - impossible to degrade.

See: references/scope-estimation.md

Checkpoint types:

  • checkpoint:human-verify - Human confirms Claude's automated work (visual checks, UI verification)
  • checkpoint:decision - Human makes implementation choice (auth provider, architecture)

Rarely needed: checkpoint:human-action - Only for actions with no CLI/API (email verification links, account approvals requiring web login with 2FA)

Critical rule: If Claude CAN do it via CLI/API/tool, Claude MUST do it. Never ask human to:

  • Deploy to Vercel/Railway/Fly (use CLI)
  • Create Stripe webhooks (use CLI/API)
  • Run builds/tests (use Bash)
  • Write .env files (use Write tool)
  • Create database resources (use provider CLI)

Protocol: Claude automates work → reaches checkpoint:human-verify → presents what was done → waits for confirmation → resumes

See: references/checkpoints.md, references/cli-automation.md

During execution, deviations are handled automatically via 5 embedded rules:

  1. Auto-fix bugs - Broken behavior → fix immediately, document in Summary
  2. Auto-add missing critical - Security/correctness gaps → add immediately, document
  3. Auto-fix blockers - Can't proceed → fix immediately, document
  4. Ask about architectural - Major structural changes → stop and ask user
  5. Log enhancements - Nice-to-haves → auto-log to ISSUES.md, continue

No user intervention needed for Rules 1-3, 5. Only Rule 4 (architectural) requires user decision.

All deviations documented in Summary with: what was found, what rule applied, what was done, commit hash.

Result: Flow never breaks. Bugs get fixed. Scope stays controlled. Complete transparency.

Read the full file on GitHub · 489 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. 10d ago First seen · 489 lines · 57 tokens per session scan B c0adb5d8a791

Subscribe to this mod's changes

create-plans is a skill published in the GitHub repository glittercowboy/taches-cc-resources (1,976 stars, last pushed 5mo ago), licensed MIT. It adds 57 tokens to every session and 4,396 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (enumerates other installed skills). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

baby-sit

Monitor a GitHub pull request until CI is green, diagnose failures, and rerun only evidence-backed flaky GitHub Actions jobs.

langchain-ai/open-swe · 30 tokens

continual-learning

Nightly refinement of an existing per-repo review-style prompt using this reviewer's own finding outcomes. Read confirmed (resolved-by-commit / thumbs-up) and dismissed (thumbs-down) findings, promote the bug patterns the team actually fixes, demote the false-positive patterns, reconcile against the current prompt…

langchain-ai/open-swe · 89 tokens

Agentic UX Design - Relationship-Centric Interfaces

Design AI-first interfaces that build ongoing relationships through memory, trust evolution, and collaborative planning, not just isolated screen interactions.

bencium/bencium-marketplace · 33 tokens

claude-code-audit

Forensic audit of the user's recent Claude Code sessions to surface step-change workflow improvements — not marginal ones. Use when the user asks to "audit my Claude Code sessions", "analyze how I use Claude Code", "find patterns in my usage", "improve my Claude Code workflow", "review my sessions", "find leverage in…

petekp/claude-code-setup · 174 tokens

typography

Apply professional typography principles to create readable, hierarchical, and aesthetically refined interfaces. Use when setting type scales, choosing fonts, adjusting spacing, designing text-heavy layouts, implementing dark mode typography, or when asked about readability, font pairing, line height, measure…

petekp/claude-code-setup · 69 tokens

pumpfun

Complete PumpFun Protocol guide for building token launches, bonding curves, and AMM integrations on Solana. Covers Pump Program (token creation, buy/sell on bonding curves), PumpSwap AMM (liquidity pools, swaps), fee structures, creator fees, and SDK integration.

sendaifun/skills · 60 tokens