plan

A feature-planning guide for understanding a software feature before building it. It covers requirements, data, system layers, and the order of implementation.

In plain words
What is it for?
Use it to plan new or substantial features, especially those with several data sources or complicated user flows.
Why use it?
It prevents different parts of a feature from being designed in isolation, reducing mismatches, missing pieces, and rework.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/launch52-ai/flutter-template/plan
Any agent
npx skills add launch52-ai/flutter-template --skill plan
Clone the repo
git clone --depth 1 https://github.com/launch52-ai/flutter-template

Made for: Claude Code, Codex.

Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,825 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00050 $0.01825
Opus 5 $0.00025 $0.00912
Sonnet 5 $0.00010 $0.00365
Haiku 4.5 $0.00005 $0.00183

Measured 2d ago against content hash 8dfcf58ff389, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 2d 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.

.claude/skills/plan/SKILL.md · 234 lines

How it starts

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

Plan - Feature Planning & Specification

Comprehensive feature planning that understands the WHOLE feature before any implementation begins. Creates a specification document that provides full context to all other skills.

Why Planning First?

Without planning, each skill works in isolation:

  • /feature-init creates scaffolds without knowing API structure
  • /api creates data layer without knowing what UI needs
  • Screens get built without knowing what data is available
  • Result: Mismatches, rework, incomplete interfaces

With planning:

  • Domain models match both API structure AND UI needs
  • Repository interfaces have exactly the methods required
  • Data sources are properly identified upfront
  • Implementation order prevents circular dependencies
  • Result: Clean, complete, working feature

When to Use This Skill

  • Always before creating a new feature
  • When adding significant functionality to existing features
  • When the feature involves multiple data sources
  • When the feature has complex user flows
  • User asks to "plan", "design", or "architect" a feature

Workflow

Phase 1: Discovery

Ask comprehensive questions covering:

  • Overview (name, purpose, users)
  • Domain model (entities, fields, relationships)
  • Data sources (API, Supabase, local storage)
  • User flows (screens, navigation, actions)
  • Business rules (validation, computed properties)
  • Edge cases (empty, offline, cancelled)

See: questions.md for the complete question bank.

Phase 2: Design

Based on discovery, design each layer:

Domain Layer:

  • Define entities with all fields and types
  • Define repository interface with all needed methods
  • Identify enums and value objects

Data Layer:

  • Identify all data sources
  • Design DTOs/Models for each source
  • Plan error handling strategy
  • Design caching/offline strategy if needed

Presentation Layer:

  • Define each screen's purpose and data requirements
  • Define state types for each screen
  • Define provider methods
  • Plan navigation flow
  • Add "Notes for Design" with constraints (NOT layout)

Read the full file on GitHub · 234 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. 2d ago First seen · 234 lines · 50 tokens per session scan A 8dfcf58ff389

Subscribe to this mod's changes

plan is a skill published in the GitHub repository launch52-ai/flutter-template (2 stars, last pushed 6mo ago), licensed MIT. It adds 50 tokens to every session and 1,825 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