bootstrap

A one-time setup skill that adds Sprint's plan→implement→review workflow to a Git repository. Git is the version-control system used to track code changes.

In plain words
What is it for?
It is for preparing a repository with Git hooks, configuration, and starter files so the workflow can run on commits.
Why use it?
It removes the need to install the workflow files and Git hooks by hand, while avoiding silent overwrites of existing files.

Skill for Claude CodeCodex

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

Made for: Claude Code, Codex.

Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,086 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 2 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.00048 $0.03086
Opus 5 $0.00024 $0.01543
Sonnet 5 $0.00010 $0.00617
Haiku 4.5 $0.00005 $0.00309

Measured yesterday against content hash 5c66a48effc8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade D, and why

bootstrap scanned grade D with 2 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 yesterday.

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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

If `$ROOT/.claude/settings.json` is missing, create one with a small allowlist that lets the

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

"deny": ["Bash(git push *)", "Bash(git reset --hard *)", "Bash(git rebase *)", "Bash(rm -rf *)"]
skills/bootstrap/SKILL.md · 184 lines

How it starts

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

You are installing the Sprint plan→implement→review workflow into the user's repo. This is a one-time, idempotent scaffold. Never overwrite an existing file silently.

0. Locate the plugin templates

The templates live at ${CLAUDE_PLUGIN_ROOT}/templates — i.e. the plugin as installed, never a development checkout. Set:

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"; }
ROOT="$(git rev-parse --show-toplevel)"   # must be a git repo; if not, offer: git init

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). If $ROOT isn't a git repo, stop and offer to run git init first (the chain needs git hooks).

1. Detect the project type → propose config defaults

Inspect the repo root and pick sensible sprint.conf values:

Marker file Language SPRINT_TEST_CMD SPRINT_VENV
pyproject.toml / setup.py Python .venv/bin/python -m pytest {path} -q (or python -m pytest {path} -q if no .venv) .venv (if it exists) else empty
package.json Node npm test (or pnpm test / yarn test per lockfile) empty
go.mod Go go test ./... empty
Cargo.toml Rust cargo test empty

Read the full file on GitHub · 184 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. yesterday First seen · 184 lines · 0 tokens per session scan D 5c66a48effc8

Subscribe to this mod's changes

bootstrap 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 3,086 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it D with 2 findings (reads agent configuration directories, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories