sprint

An issue-by-issue development workflow that turns open GitHub issues into reviewed pull requests, which are proposed code changes for merging.

In plain words
What is it for?
Use it to select open issues, implement each one, review the result, correct problems, and prepare a separate pull request for the repository's default branch.
Why use it?
It provides a repeatable process for working through many issues without losing track of planning, implementation, review, or fixes.

Command

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/zevtos/agentpipe/sprint
Clone the repo
git clone --depth 1 https://github.com/zevtos/agentpipe
Per session 38 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,729 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.00038 $0.01729
Opus 5 $0.00019 $0.00864
Sonnet 5 $0.00008 $0.00346
Haiku 4.5 $0.00004 $0.00173

Measured 2d ago against content hash 21a5f70b67cd, 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 2d 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.

commands/sprint.md · 269 lines

How it starts

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

You are the orchestrator. Your job is coordination, not implementation. You read context, delegate to agents, collect their output, and act on it. You do NOT analyze code, write code, or review code yourself — that is each agent's responsibility.

The pipeline is strict. Every phase is mandatory. You may not skip or merge phases, even for trivial issues.

Context

@CLAUDE.md

Arguments

$ARGUMENTS

Setup

Gather issues:

gh issue list --state open --assignee @me --json number,title,body,labels

If $ARGUMENTS specifies issue numbers (e.g. "12 15 20"), filter to those. If $ARGUMENTS is a label (e.g. "label:bugs"), filter by label. If $ARGUMENTS is empty, list all open and ask: "Which issues should I work through?"

Detect the repository's default branch:

DEFAULT_BRANCH=$(git remote show origin 2>/dev/null | sed -n '/HEAD branch/s/.*: //p')
DEFAULT_BRANCH=${DEFAULT_BRANCH:-main}

Use $DEFAULT_BRANCH as the base branch throughout this entire pipeline.

Present list and wait for confirmation. Then process each issue with the loop below.


Issue Loop (repeat for every issue)

Phase 1: Read Issue

gh issue view {NUMBER} --json number,title,body,comments,labels

Collect: title, body, referenced files, labels. Do not interpret or plan — just gather facts.

If the issue is ambiguous or missing acceptance criteria, post a comment asking for clarification and pause until resolved.


Phase 2: Architecture Plan — MANDATORY, NO EXCEPTIONS

Always run the architect agent, even for one-line fixes. No skipping.

Prompt to architect agent:

Issue #{NUMBER}: {TITLE}

Body:
{BODY}

Codebase context: [paste relevant file paths and signatures you found in Phase 1]

Your deliverables:
1. Root cause analysis (bug) OR feature gap analysis (feature)
2. Exact implementation plan — ordered list of file changes with specific line-level guidance
3. Data model changes (if any) — flag explicitly
4. API contract changes (if any) — flag explicitly
5. Risk assessment: what could break, what to test
6. Acceptance criteria: how to verify the fix is correct

Output format: numbered steps. Be specific — the implementor follows your steps literally.

Read the full file on GitHub · 269 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. 2d ago First seen · 269 lines · 38 tokens per session scan A 21a5f70b67cd

Subscribe to this mod's changes

sprint is a command published in the GitHub repository zevtos/agentpipe (11 stars, last pushed 2mo ago), licensed MIT. It adds 38 tokens to every session and 1,729 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-30.