sprint-plan

sprint-plan is a skill for Claude Code, Codex from asysta-act/agent-flow. It costs 16 tokens per session (4,670 once invoked), scanned C, original, MIT.

A sprint-planning tool that selects backlog issues using priority and team-capacity limits. A sprint is a planned period of development work, and a backlog is the list of unfinished issues or tasks.

In plain words
What is it for?
Use it to plan the next sprint or a full release plan, preview the result, optionally update the issue tracker, and dispatch selected implementation or bug-fixing work.
Why use it?
It helps turn a list of issues into a workload the team can realistically complete, instead of choosing work without considering capacity.

Skill for Claude CodeCodex

Part of the agent-flow plugin — 17 skills, 17 agents shipped together

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

Made for: Claude Code, Codex.

Or install agent-flow, the plugin that ships this one along with the rest of its 17 skills, 17 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 sprint-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/asysta-act/agent-flow/sprint-plan.svg)](https://agentmods.dev/skills/asysta-act/agent-flow/sprint-plan)
Your own site
<a href="https://agentmods.dev/skills/asysta-act/agent-flow/sprint-plan"><img src="https://agentmods.dev/badge/skills/asysta-act/agent-flow/sprint-plan.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,670 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 3 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.1 $0.00016 $0.04670
Opus 5 $0.00008 $0.02335
Sonnet 5 $0.00003 $0.00934
Haiku 4.5 $0.00002 $0.00467

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

Security

Grade C, and why

sprint-plan scanned grade C with 3 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.

Asks the agent to reveal its instructionsmediumSystem prompt leakage

Directions to print, repeat or translate the system prompt extract configuration the operator did not intend to expose.

Display prompt:

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

| YouTrack | `curl -X POST {instance}/api/issues/{ID} -H "Authorization: Bearer $YOUTRACK_TOKEN" -H "Content-Type: application/json" -d '{"customFields":[{"name":"{sprint_field}","$type":"SingleEnumIssueCustomField","val

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

| YouTrack | `curl -X POST {instance}/api/issues/{ID} -H "Authorization: Bearer $YOUTRACK_TOKEN" -H "Content-Type: application/json" -d '{"customFields":[{"name":"{sprint_field}","$type":"SingleEnumIssueCustomField","val
skills/sprint-plan/SKILL.md · 345 lines

How it starts

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

Sprint Plan

Input: $ARGUMENTS = optional flags (--all, --apply, --dry-run, --limit <N>, --yolo)

Flag Parsing

Parse $ARGUMENTS:

  • --all: Plan ALL sprints (release plan), not just the next one
  • --apply: After planning, dispatch /agent-flow:implement-feature or /agent-flow:fix-bugs per selected issue
  • --dry-run: Display plan only, no tracker writes, no execution dispatch
  • --limit <N>: Override Max issues config value (valid range: 1–50; out of range → clamp with WARN)
  • --yolo: Auto-approve Gate 1 and Gate 3 (Gate 2 ALWAYS blocks — even in --yolo)

--yolo does NOT imply --apply. Explicit --yolo --apply is required for full automation. --dry-run overrides --apply (if both present, dry-run wins — no tracker writes, no execution).

Configuration

Read Automation Config from CLAUDE.md section ## Automation Config. Follow ../../core/config-reader.md.

Required:

  • Issue Tracker: Type, Instance, Project, Bug query

Sprint Planning section (REQUIRED for sprint-plan — see Cold-start rules if absent):

  • Sprint duration (default: 2 weeks)
  • Capacity unit (default: story-points)
  • Team capacity (default: none)
  • Velocity target (default: none)
  • Sprint field (default: tracker-dependent)
  • Mode (default: suggest)
  • Max issues (default: 20)
  • Epic template (default: none)

If ### Sprint Planning section is absent: run in suggest mode with cold-start warnings at every gate. Do NOT block — planning still proceeds with effective_capacity = null (unconstrained).

Optional:

  • Feature Workflow: Feature query (combined with Bug query for issue fetch)
  • Metrics: Output (path to metrics report; default: ./reports/metrics.md)
  • Agent Overrides: Path (default: customization/)
  • Build & Test: Build command, Test command (required only if --apply)

Config validation rules:

  • Sprint duration: must be 1 week, 2 weeks, 3 weeks, or 4 weeks. Other values: WARN, use 2 weeks.
  • Capacity unit: must be story-points or hours. Other values: WARN, use story-points.
  • Team capacity: must be positive integer. 0 treated as unconfigured.
  • Velocity target: must be positive integer. If Velocity target > Team capacity (both set): WARN "Velocity target ({V}) exceeds Team capacity ({C}). Using Team capacity." Use Team capacity.
  • Mode: must be suggest or apply. Other values: WARN, use suggest.
  • Max issues: must be integer 1–50. Out of range: clamp to [1, 50] with WARN.
  • Epic template: file path. If set but file not found: WARN, use built-in template.

Read the full file on GitHub · 345 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 · 345 lines · 16 tokens per session scan C 5772fa0b5a37

Subscribe to this mod's changes

sprint-plan is a skill published in the GitHub repository asysta-act/agent-flow (12 stars, last pushed 2mo ago), licensed MIT. It adds 16 tokens to every session and 4,670 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 3 findings (asks the agent to reveal its instructions, sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.