sprint-plan

A sprint-planning tool that turns an MVP idea into a prioritized feature list with explicit completion checks. An MVP is the smallest useful version of a product, and a sprint is a short, focused period of development.

In plain words
What is it for?
Use it to create a sprint manifest with priorities, a specification reference, tests for errors and unusual inputs, and one test showing each feature works through the full system.
Why use it?
It makes each feature's definition of done checkable instead of leaving completion to personal judgment. The plan records edge-case tests and an end-to-end integration test for every feature.

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/friedbotstudio/baseline/sprint-plan
Any agent
npx skills add friedbotstudio/baseline --skill sprint-plan
Clone the repo
git clone --depth 1 https://github.com/friedbotstudio/baseline

Made for: Claude Code, Codex.

Per session 93 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 885 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.00093 $0.00885
Opus 5 $0.00046 $0.00443
Sonnet 5 $0.00019 $0.00177
Haiku 4.5 $0.00009 $0.00089

Measured 2d ago against content hash 011418d202fd, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

sprint-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.

The scan reads SKILL.md. This mod also ships 1 executable file (validate-manifest.mjs), 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.

.claude/skills/sprint-plan/SKILL.md · 64 lines

How it starts

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

sprint-plan — author a sprint manifest with per-feature done-criteria

sprint-plan turns an MVP vision into a sprint manifest: a prioritized list of features, each carrying the done-criteria that make "done" mechanically checkable. The manifest is the input contract for sprint-oracle, which fails a sprint until every feature meets its criteria. This is Slice A of the mvp-sprint-parallel-cycles epic — the completeness half of the parallel-sprint goal (a sprint can be fast yet provably not partial).

What the manifest is

A JSON document (template-manifest.json is the shape). Each feature declares three done-criteria dimensions so completeness is a grep, not a judgment call:

  • done_record — a reference proving the feature is specified (a spec AC id, e.g. AC-012). Non-empty.
  • edge_tests — names of tests covering error / empty / edge states. A non-empty array.
  • wiring_test — the name of one integration test exercising the feature end-to-end.
{
  "sprint": "<sprint name>",
  "features": [
    {
      "id": "search",
      "priority": "P0",
      "done_record": "AC-012",
      "edge_tests": ["search_empty_query", "search_unicode"],
      "wiring_test": "search_end_to_end"
    }
  ]
}

The test-tag convention (how sprint-oracle resolves the names)

A named test counts toward a feature only when the test file tags it. Immediately above the test('<name>', …) call, place:

// @sprint-feature:<feature-id> @kind:edge|wiring|happy
test('<name>', () => { /* … */ });

sprint-oracle builds a map of testName → {feature, kind} from these tags and resolves each manifest reference against it. A test tagged @kind:happy does not satisfy an edge or wiring requirement — that is the deliberate, mechanical line (no script can prove a test is semantically an edge case; the tag is the author's crisp claim, and the oracle verifies the claim resolves).

How to use

  1. Decompose the MVP vision into features. Decide priority (P0/P1/…) per feature — scoping, not implementation.
  2. For each feature, name its done_record (the spec AC it traces to), the edge_tests it must carry, and its wiring_test.
  3. Write the manifest (default location: .claude/state/sprint/<sprint>/manifest.json, gitignored runtime state).
  4. Validate the shape before handing it to the oracle:

Read the full file on GitHub · 64 lines

Files

What ships with it

2 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 · 64 lines · 93 tokens per session scan A 011418d202fd

Subscribe to this mod's changes

sprint-plan is a skill published in the GitHub repository friedbotstudio/baseline (11 stars, last pushed 6d ago), licensed Apache-2.0. It adds 93 tokens to every session and 885 once invoked, about $0.0005 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-30.