sprint-review

sprint-review is a skill for Claude Code from felipecabargas/gambit. It costs 155 tokens per session (2,212 once invoked), scanned A, original, MIT.

A sprint-review report writer that turns completed work from an iteration—a fixed period of development—into a stakeholder summary. It focuses on outcomes and progress rather than a raw list of tasks.

In plain words
What is it for?
Use it to recap a sprint, document shipped work, summarize results for stakeholders, and prepare a professional retrospective report.
Why use it?
It gives product managers, leaders, and other teams a concise account of what was delivered and why it matters.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the gambit plugin — 13 skills, 4 agents shipped together

Good fit Use it to recap a sprint, document shipped work, summarize results for stakeholders, and prepare a professional retrospective report.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/felipecabargas/gambit/sprint-review
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.

Any agent
npx skills add felipecabargas/gambit --skill sprint-review
Clone the repo
git clone --depth 1 https://github.com/felipecabargas/gambit

Made for: Claude Code.

Or install gambit, the plugin that ships this one along with the rest of its 13 skills, 4 agents.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/felipecabargas/gambit/sprint-review/github.svg)](https://agentmods.dev/skills/felipecabargas/gambit/sprint-review)
Your own site
<a href="https://agentmods.dev/skills/felipecabargas/gambit/sprint-review"><img src="https://agentmods.dev/badge/skills/felipecabargas/gambit/sprint-review/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for sprint-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/felipecabargas/gambit/sprint-review"><img src="https://agentmods.dev/badge/skills/felipecabargas/gambit/sprint-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 155 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,212 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00155 $0.02212
Opus 5 $0.00077 $0.01106
Sonnet 5 $0.00031 $0.00442
Haiku 4.5 $0.00015 $0.00221

Measured 9d ago against content hash 82b0492db5de, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

sprint-review 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 9d 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.

skills/sprint-review/SKILL.md · 165 lines

How it starts

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

Sprint Review Generator

You are acting as a seasoned Product Manager who writes clear, data-driven sprint reviews. Your job is to turn a list of completed work into a polished stakeholder document — one that leadership can scan in 90 seconds and trust because it speaks in results, not activity.

Bias toward action: don't ask, infer. If you have enough information to write a good review, write it. Use what the user gave you. Fill gaps with reasonable inferences and flag them at the end. Only ask a question if something truly critical is missing and you can't make a reasonable assumption (e.g., you have no idea what the sprint goal was and it's not inferable from the tickets).

Step 1: Extract what you have

Take stock of what the user provided:

  • Sprint identifier — name, number, or dates. Infer from context if needed ("April 14–25 sprint" → Sprint, April 14–25).
  • Team name — if not provided, omit it or use the domain (e.g., "Checkout team" inferred from ticket prefixes like CHK-).
  • Sprint goal — if not stated, infer a plausible one from the pattern of completed work. Flag it: "Goal inferred from tickets — let me know if this is off."
  • Data source — the user will either paste a list, mention JIRA/GitHub, or have a connected MCP. Accept whatever format arrives: ticket IDs, bullet points, a paragraph, a table, anything.
    • If a JIRA or Atlassian MCP is connected, fetch the sprint's completed issues directly using the sprint name/ID the user provides.
    • If GitHub is mentioned, pull merged PRs or closed issues from the specified repo and time range.
    • If it's a plain list, use it as-is.
  • Story points — many teams don't track them. If they're not in the input, don't ask and don't invent them. The metrics section works fine without them.

Git history scan (automatic, if no ticket list provided): If the user hasn't pasted tickets or mentioned a JIRA/GitHub source, silently run:

# Try sprint window from user input, fall back to last 2 weeks
git log --merges --oneline --since="2 weeks ago" 2>/dev/null | head -40
# Also try: since last tag
LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null) && [ -n "$LAST_TAG" ] && git log --merges --oneline ${LAST_TAG}..HEAD 2>/dev/null | head -40

Read the full file on GitHub · 165 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. 9d ago First seen · 165 lines · 155 tokens per session scan A 82b0492db5de

Subscribe to this mod's changes

sprint-review is a skill published in the GitHub repository felipecabargas/gambit (2 stars, last pushed 3mo ago), licensed MIT. It adds 155 tokens to every session and 2,212 once invoked, about $0.0008 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 skills, from other repositories

seo-page

Single-page SEO audit: deep content quality evaluation using Google's E-E-A-T framework, Helpful Content guidelines, on-page SEO factors, search intent alignment, technical signals, and readability analysis. Fetches GSC performance data for that specific page, crawls the live HTML, evaluates metadata, schema markup…

nowork-studio/notfair-plugin · 229 tokens

gemini

Cross-model second opinion from Google Gemini — a different AI reviewing the same changes, with deep Google ecosystem knowledge. Three modes: review (pass/fail gate for Google Ads campaigns, SEO metadata, or code), challenge (adversarial stress-test that tries to break your changes), and consult (open Q&A with Gemini…

nowork-studio/notfair-plugin · 184 tokens

google-ads

Manage Google Ads — performance, keywords, bids, budgets, negatives, campaigns, ads, search terms, QS, location targeting, bulk operations, experiments, asset management, portfolio bidding, offline conversions. Use for any mention of Google Ads, CPA, ROAS, ad spend, or campaign settings.

nowork-studio/notfair-plugin · 64 tokens

geo-optimizer

Generative Engine Optimization (GEO) — make content rank in AI search answers from ChatGPT, Claude, Perplexity, Gemini, and Google AI Overviews. Audits existing content, rewrites for AI citation, and produces per-engine strategy. Use when asked to "optimize for AI search", "rank in ChatGPT", "GEO audit", "improve AI…

nowork-studio/notfair-plugin · 190 tokens

schema-markup-generator

Generate JSON-LD structured data markup for rich results in Google Search. Supports FAQ, HowTo, Article, Product, LocalBusiness, and multi-type schemas. Validates against Google requirements and provides implementation guidance. Use when asked to "add schema markup", "generate structured data", "JSON-LD", "rich…

nowork-studio/notfair-plugin · 99 tokens

google-ads-landing

Score and diagnose Google Ads landing pages. Use when asked to audit a landing page, check landing page quality, diagnose high-CTR but low-conversion-rate ad groups, improve Quality Score's Landing Page Experience component, or compare an ad group's messaging against its landing page. Trigger on "landing page audit"…

nowork-studio/notfair-plugin · 121 tokens