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.
npx agentmods add skills/leonhoffmann86/team-sprint/updatenpx skills add leonhoffmann86/team-sprint --skill updategit clone --depth 1 https://github.com/leonhoffmann86/team-sprintWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00048 | $0.01385 |
| Opus 5 | $0.00024 | $0.00692 |
| Sonnet 5 | $0.00010 | $0.00277 |
| Haiku 4.5 | $0.00005 | $0.00138 |
Grade A, and why
update 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.
How it starts
The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are updating the vendored Sprint chain in already-bootstrapped repos from the
freshly-installed plugin templates. The plugin ships the canonical agents/ + .mcp.json
(those auto-update with the plugin); this command refreshes the vendored copies that the
headless git-hook path depends on, plus the stage scripts and hooks.
Only refresh logic. Never touch the user's config or content: leave sprint.conf,
TODO.md, DONE.md, AGENT_LOG.md, AGENTS.md, CLAUDE.md and .gitignore alone.
0. Locate templates + the target repo(s)
Templates come from the plugin as installed — never from a development checkout:
TPL="${CLAUDE_PLUGIN_ROOT:-}/templates"
# Fallback when CLAUDE_PLUGIN_ROOT is unset (e.g. skill executed manually): resolve the
# INSTALLED plugin from the marketplace cache — most recently installed version wins.
[ -d "$TPL" ] || TPL="$(ls -dt "$HOME"/.claude/plugins/cache/*/sprint/*/templates 2>/dev/null | head -1)"
[ -d "${TPL:-}" ] || { echo "sprint is not installed. Run:
claude plugin marketplace add leonhoffmann86/team-sprint
claude plugin install sprint@team-sprint"; }
REG="${XDG_CONFIG_HOME:-$HOME/.config}/sprint/registry" # one repo path per line
If neither resolves, stop with that install instruction. Do NOT search the filesystem
for a plugin source tree and do NOT accept a git checkout of the plugin repo as $TPL —
only the installed (versioned) copy is a valid template source (see docs/DISTRIBUTION.md).
- No argument → operate on the current repo only:
ROOT="$(git rev-parse --show-toplevel)". --all→ read$REG(if present) and operate on each listed path that is still a git repo with ascripts/sprint-lib.sh(i.e. actually bootstrapped). Report missing/!bootstrapped entries and skip them. If$REGis absent, tell the user no repos are registered and that/sprint:bootstraprecords repos there (see step 4).
1. Refresh the logic files (overwrite — these are NOT user-owned)
For each target ROOT, copy over (overwrite) ONLY:
cp "$TPL/scripts/sprint-lib.sh" "$ROOT/scripts/sprint-lib.sh"
cp "$TPL/scripts/sprint-plan.sh" "$ROOT/scripts/sprint-plan.sh"
cp "$TPL/scripts/sprint-implement.sh" "$ROOT/scripts/sprint-implement.sh"
cp "$TPL/scripts/sprint-review.sh" "$ROOT/scripts/sprint-review.sh"
cp "$TPL/scripts/sprint-gate.sh" "$ROOT/scripts/sprint-gate.sh"
cp "$TPL/githooks/post-commit" "$ROOT/.githooks/post-commit"
cp "$TPL/githooks/README.md" "$ROOT/.githooks/README.md"
mkdir -p "$ROOT/.claude/agents"
cp "$TPL"/.claude/agents/*.md "$ROOT/.claude/agents/"
chmod +x "$ROOT/.githooks/post-commit" "$ROOT"/scripts/sprint-*.sh
For .mcp.json: if the repo's file is identical to a prior template version, overwrite it; if the
user has customized it (extra servers), merge the codegraph server in rather than clobbering —
show the diff and confirm. Before overwriting any file that the user may have hand-edited, show a
diff and ask.
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.
- 2d ago First seen · 87 lines · 48 tokens per session scan A 249ad6adcedb
update is a skill published in the GitHub repository leonhoffmann86/team-sprint (1 stars, last pushed 2mo ago), licensed MIT. It adds 48 tokens to every session and 1,385 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.
Other skills, from other repositories
develop-web-game
Use when Codex is building or iterating on a web game (HTML/JS) and needs a reliable development + testing loop: implement small changes, run a Playwright-based test script with short input bursts and intentional pauses, inspect screenshots/text, and review console errors with rendergametotext.
stock-explorer
A Yahoo Finance (yfinance) powered financial analysis tool. Get real-time quotes, generate technical indicator reports (RSI/MACD/Bollinger/VWAP/ATR), summarize fundamentals, and run a one-shot report that outputs a text summary.
model-compatibility
Model family compatibility matrix covering loaders, resolutions, samplers, CFG, VAE, ControlNet, and LoRA compatibility for SD 1.5, SDXL, Flux, SD3, and video models.
civitai
Discover Civitai models with the BUILT-IN downloadmodel action:"searchcivitai" and install/generate them locally. Find a checkpoint/LoRA/embedding on Civitai, download it into ComfyUI, and use its trigger words. Optionally pair the official Civitai MCP for community features (images browsing, posting, collections).
trace
Dispatch trace subagent to investigate unknown issues — reproduces, traces, and reports root cause for fix handoff.
cross-task-learner
Enable agent loops to learn from similar past tasks and share patterns across loops.