sprint-planner

sprint-planner is a skill for Claude Code from matteocervelli/llms. It costs 20 tokens per session (5,630 once invoked), scanned A, original, MIT.

A sprint-planning assistant that chooses work for a fixed development period based on team capacity, priorities, dependencies, and a reserved buffer.

In plain words
What is it for?
It helps create sprint plans, check whether dependencies are ready, select backlog stories, update their status, and optionally sync a GitHub milestone.
Why use it?
It reduces guesswork when deciding how much work a team can take on and catches stories that are blocked or make the plan infeasible.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/generate_story_from_yaml.py --story-id US-0001.

Good fit It helps create sprint plans, check whether dependencies are ready, select backlog stories, update their status, and optionally sync a GitHub milestone.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/matteocervelli/llms
agentmods
npx agentmods add skills/matteocervelli/llms/sprint-planner

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/matteocervelli/llms/sprint-planner"><img src="https://agentmods.dev/badge/skills/matteocervelli/llms/sprint-planner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,630 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.00020 $0.05630
Opus 5 $0.00010 $0.02815
Sonnet 5 $0.00004 $0.01126
Haiku 4.5 $0.00002 $0.00563

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

Security

Grade A, and why

sprint-planner 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 6d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/move_to_sprint.sh, scripts/sync_github.sh), 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.

.archive/user-story-system/.claude/skills/sprint-planner/SKILL.md · 830 lines

How it starts

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

Sprint Planner Skill

You are a sprint planning specialist. You help teams plan sprints by selecting stories based on capacity, dependencies, priorities, and team constraints.

Purpose

Create optimal sprint plans by:

  • Loading eligible backlog stories
  • Checking dependency readiness
  • Fitting stories to team capacity
  • Respecting priority order
  • Managing capacity buffer
  • Validating sprint feasibility
  • Moving stories to sprint status
  • Optionally syncing with GitHub milestones

Activation

This skill is activated when users want to plan a sprint:

  • "Plan a sprint with 40 story points"
  • "What stories fit in our sprint?"
  • "Create sprint plan for 2 weeks"
  • "Select stories for next sprint"

Workflow

Phase 1: Gather Sprint Parameters

Goal: Understand sprint constraints and team capacity.

  1. Ask for Capacity (if not provided):

    📋 Sprint Planning
    
    What is your sprint capacity?
    
    Options:
    - Story points: (e.g., 40)
    - Team size + velocity: (e.g., 3 developers × 13 pts/dev = 39)
    - Use default: 40 points (from config)
    
    Enter capacity:
    
  2. Confirm Sprint Details:

    📋 Sprint Configuration
    
    **Capacity**: 40 story points
    **Buffer**: 20% (8 points reserved)
    **Available**: 32 story points for stories
    **Duration**: 2 weeks (default)
    **Start**: January 6, 2025 (Monday)
    **End**: January 17, 2025 (Friday)
    
    Proceed with planning? (yes/no/modify)
    
  3. Load Configuration:

    # From .claude/skills/user-story-generator/config/automation-config.yaml
    sprint:
      default_capacity: 40
      default_duration: 2  # weeks
      buffer_percentage: 20
      velocity_calculation: "average_last_3"
    

Phase 2: Load Eligible Stories

Goal: Find stories that could be included in sprint.

  1. Find Backlog Stories:

    # Stories with status: backlog or ready
    grep -l "status: backlog\|status: ready" stories/yaml-source/US-*.yaml
    
  2. Parse Story Details: For each story, extract:

    • Story ID
    • Title
    • Story points
    • Priority
    • Dependencies (blocked_by)
    • Status
    • Tags

Read the full file on GitHub · 830 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. 6d ago First seen · 830 lines · 20 tokens per session scan A 7ee2131f6088

Subscribe to this mod's changes

sprint-planner is a skill published in the GitHub repository matteocervelli/llms (25 stars, last pushed 3mo ago), licensed MIT. It adds 20 tokens to every session and 5,630 once invoked, about $0.0001 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-03.

Related

Other skills, from other repositories