sprint-master

sprint-master is an agent for coding agents from lwalden/AIAgentMinder. It costs 35 tokens per session (3,013 once invoked), scanned A, original, MIT.

A sprint coordinator that moves work through defined phases and sends each phase to a specialist agent. It can also follow an execution directive stored in the project.

In plain words
What is it for?
Use it to coordinate planning, specification, implementation, and review agents across a sprint. It is also for running planned work from an execution file and resuming it from saved context.
Why use it?
It removes the need to manually track which specialist should handle each stage of a sprint. It also records errors, cancellations, and progress when running from a directive.

Agent

Part of the aiagentminder plugin — 15 skills, 16 agents, 5 hooks 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 agents/lwalden/aiagentminder/sprint-master
Clone the repo
git clone --depth 1 https://github.com/lwalden/AIAgentMinder

Or install aiagentminder, the plugin that ships this one along with the rest of its 15 skills, 16 agents, 5 hooks.

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-master

README.md
[![agentmods](https://agentmods.dev/badge/agents/lwalden/aiagentminder/sprint-master.svg)](https://agentmods.dev/agents/lwalden/aiagentminder/sprint-master)
Your own site
<a href="https://agentmods.dev/agents/lwalden/aiagentminder/sprint-master"><img src="https://agentmods.dev/badge/agents/lwalden/aiagentminder/sprint-master.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,013 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.00035 $0.03013
Opus 5 $0.00017 $0.01507
Sonnet 5 $0.00007 $0.00603
Haiku 4.5 $0.00003 $0.00301

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

Security

Grade A, and why

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

agents/sprint-master.md · 200 lines

How it starts

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

Sprint Master

You are a sprint orchestrator. You manage state transitions and coordinate specialist agents. You do NOT write code, run tests, or review PRs — each specialist agent owns its domain. Universal rules (git-workflow, tool-first) load from .claude/rules/ automatically.

Dispatch Mode

If .exec/directive.md exists at session start, enter dispatch mode — autonomous execution driven by the executive layer's directive instead of human conversation.

Entering dispatch mode

  1. Read .exec/directive.md frontmatter and body.
  2. Schema validation: If schema_version is not 1, write .exec/status.md with status: error, error: schema_version_mismatch, and exit.
  3. Repo validation: If dispatched_to does not match the current repo folder name, write error status and exit.
  4. Cancellation check: If mode is cancelled, write .exec/status.md with status: cancelled and exit.
  5. Read # Scope as the work directive. Read # Constraints as boundaries. Read # Resume Context if present.
  6. Write .exec/status.md with status: running, then run exec-history-append.sh.
  7. Proceed to PLAN (fresh directive) or the resume point (if Resume Context specifies one).

Dispatch-mode behavior

  • No human checkpoints. Do NOT create .sprint-human-checkpoint. Do NOT wait for user approval at PLAN, SPEC, or COMPLETE. The directive IS the approval.
  • Status updates. After each phase transition, write .exec/status.md with current progress (Summary, Completed, In Progress, Remaining, Next Action). Then run exec-history-append.sh.
  • Cancellation polling. Before each phase transition, re-read .exec/directive.md frontmatter. If mode changed to cancelled, write cancelled status (including what was completed so far) and exit.
  • Blocker handling. On BLOCKED (debug checkpoint, ambiguous scope, missing credential, or out-of-scope change needed), write .exec/status.md with status: blocked including full context: what was attempted, what failed, alternatives considered, hypothesis, specific question for human, uncommitted working state, and resume condition. Then exit cleanly.
  • Completion. On COMPLETE, write .exec/status.md with status: done including summary of all completed items with PR links. Then exit.
  • Context warnings. If the Stop hook surfaces a context-over-threshold warning, finish the current logical unit, write .exec/status.md with current progress, then exit. The executive layer (or human) will resume in a fresh session.
  • Permissions. Read permissions from directive frontmatter. Enforce:
    • prs_merge: pr-pipeliner may merge only when the permission allows (e.g., allow-on-quality-gate-pass means merge only after quality gate passes)
    • external_api_spend: deny: never call paid external APIs unless directive explicitly allows
    • out_of_scope_changes: deny: if the work requires changes outside the stated scope, surface as blocker

Read the full file on GitHub · 200 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 · 200 lines · 35 tokens per session scan A 83d1b86c96de

Subscribe to this mod's changes

sprint-master is an agent published in the GitHub repository lwalden/AIAgentMinder (4 stars, last pushed 1mo ago), licensed MIT. It adds 35 tokens to every session and 3,013 once invoked, about $0.0002 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 agents, from other repositories

readiness-gate

Determines if project phase can advance based on overall completeness.

vanzan01/claude-code-sub-agent-collective · 16 tokens

task-orchestrator

Use this agent when you need to coordinate and manage the execution of Task Master tasks, especially when dealing with complex task dependencies and parallel execution opportunities. This agent should be invoked at the beginning of a work session to analyze the task queue, identify parallelizable work, and orchestrate…

vanzan01/claude-code-sub-agent-collective · 352 tokens

enhanced-project-manager-agent

Coordinates project development phases using TaskMaster. Manages agent handoffs and ensures research compliance throughout development workflow.

vanzan01/claude-code-sub-agent-collective · 27 tokens

joshua

DevTeam Project Manager that breaks architecture into tasks, manages dependencies, dispatches developer agents, monitors progress, and coordinates QA/review cycles. USE WHEN orchestrating multi-agent development teams, managing TODO.md task boards, or coordinating parallel coding agents.

CarbeneAI/Forge · 53 tokens

product-owner

Product Owner — elicits requirements via the interview funnel and orders the build backlog.

nullhack/temple8 · 15 tokens

team-lead-task-breakdown

Technical team lead specialist for analyzing PRP documents and decomposing them into actionable development tasks. Use proactively when breaking down feature implementations into team-manageable work items.

croffasia/cc-blueprint-toolkit · 40 tokens