sprint

sprint is a command for Claude Code from VelimirMueller/vlm-code-context-mcp. It costs 0 tokens per session (1,913 once invoked), scanned A, original, MIT.

A command for running a complete software sprint through planning, implementation, completion, rest, and the next sprint, using stored project data.

In plain words
What is it for?
It is for loading project context, planning tickets, assigning work, implementing changes, and reviewing the sprint afterward.
Why use it?
It keeps sprint work connected to previous plans, unfinished tasks, team workload, codebase context, and retrospective findings.

Command for Claude Code

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 commands/velimirmueller/vlm-code-context-mcp/sprint
Clone the repo
git clone --depth 1 https://github.com/VelimirMueller/vlm-code-context-mcp

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

README.md
[![agentmods](https://agentmods.dev/badge/commands/velimirmueller/vlm-code-context-mcp/sprint.svg)](https://agentmods.dev/commands/velimirmueller/vlm-code-context-mcp/sprint)
Your own site
<a href="https://agentmods.dev/commands/velimirmueller/vlm-code-context-mcp/sprint"><img src="https://agentmods.dev/badge/commands/velimirmueller/vlm-code-context-mcp/sprint.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,913 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.00000 $0.01913
Opus 5 $0.00000 $0.00957
Sonnet 5 $0.00000 $0.00383
Haiku 4.5 $0.00000 $0.00191

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

Security

Grade A, and why

sprint 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 4d 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/commands/sprint.md · 221 lines

How it starts

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

Sprint Lifecycle — Automated MCP Tool Chain

Run a complete sprint from planning to rest using code-context MCP tools. All data lives in context.db.

Phase Flow

planning → implementation → done → rest → (next sprint)

Step 0: Load Context (2 calls)

index_directory({ freshness_check: true })   # skip if <5 min old
get_resume_state()                           # single-call resume detection

Phase context — use load_phase_context() when entering each step

Step Call
Step 1 (Planning) load_phase_context({ phase: "tickets" })
Step 4 (Implementation) load_phase_context({ phase: "implementation", sprint_id, ticket_id })
Step 6 (Retrospective) load_phase_context({ phase: "retro", sprint_id })

Step 1: Gather Planning Context

Using data from Step 0, make informed decisions:

  • Use velocity trends to set realistic committed points
  • Use retro patterns to avoid past mistakes (e.g., "auth tickets were underestimated last sprint")
  • Use backlog to carry over unfinished work
  • Use agent workload to balance ticket assignment
  • Use mood trends to reduce load on burned-out agents
  • Use codebase context to inform ticket scoping — call get_file_context() for files related to planned work

Step 2: Create Sprint — start_sprint

One call creates the sprint + all tickets in planning phase:

start_sprint({
  name: "Sprint N — <descriptive name>",
  goal: "<one sentence, measurable>",
  milestone_id: <id>,
  velocity: <committed points based on velocity trends>,
  tickets: [
    { title: "...", description: "...", assigned_to: "<agent role>", story_points: N, priority: "P1" },
    ...
  ]
})

Rules:

  • Assign tickets to roles from list_agents() (developer, qa, product-owner, devops)
  • Total story points should match committed velocity
  • Every ticket needs story points and a priority (P0-P3)
  • Sprint goal must be measurable

Save the returned sprint_id — used in every subsequent call.

Read the full file on GitHub · 221 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. 4d ago First seen · 221 lines · 0 tokens per session scan A 0ba69c3995af

Subscribe to this mod's changes

sprint is a command published in the GitHub repository VelimirMueller/vlm-code-context-mcp (4 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,913 tokens. 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.