sprint-summary

sprint-summary is a skill for Claude Code, Codex from hoangsonww/Claude-Code-Agent-Monitor. It costs 64 tokens per session (685 once invoked), scanned A, original, MIT.

A sprint report for Claude Code activity, grouping work by project and summarizing costs, tokens, subagents, speed, and tool use. A sprint is a defined period used to plan and review development work.

In plain words
What is it for?
Use it to review project deliverables, development hours, cost, completion, sessions per day, token efficiency, subagent results, and tool diversity.
Why use it?
It gives you one view of what happened during a sprint and how that work compares with an earlier period.

Skill for Claude CodeCodex

Written for Claude Code and Codex: $ARGUMENTS substitution, but also agents/openai.yaml present. Also seen: mentions subagents; mentions Claude Code.

Part of the ccam-productivity plugin — 6 skills, 3 commands, 2 agents shipped together

Good fit Use it to review project deliverables, development hours, cost, completion, sessions per day, token efficiency, subagent results, and tool diversity.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hoangsonww/claude-code-agent-monitor/sprint-summary
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 hoangsonww/Claude-Code-Agent-Monitor --skill sprint-summary
Clone the repo
git clone --depth 1 https://github.com/hoangsonww/Claude-Code-Agent-Monitor

Made for: Claude Code, Codex.

Or install ccam-productivity, the plugin that ships this one along with the rest of its 6 skills, 3 commands, 2 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-summary

README.md
[![agentmods](https://agentmods.dev/badge/skills/hoangsonww/claude-code-agent-monitor/sprint-summary/github.svg)](https://agentmods.dev/skills/hoangsonww/claude-code-agent-monitor/sprint-summary)
Your own site
<a href="https://agentmods.dev/skills/hoangsonww/claude-code-agent-monitor/sprint-summary"><img src="https://agentmods.dev/badge/skills/hoangsonww/claude-code-agent-monitor/sprint-summary/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-summary

Your own site · 80×15
<a href="https://agentmods.dev/skills/hoangsonww/claude-code-agent-monitor/sprint-summary"><img src="https://agentmods.dev/badge/skills/hoangsonww/claude-code-agent-monitor/sprint-summary.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 685 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00064 $0.00685
Opus 5 $0.00032 $0.00342
Sonnet 5 $0.00013 $0.00137
Haiku 4.5 $0.00006 $0.00068

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

Security

Grade A, and why

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

plugins/ccam-productivity/skills/sprint-summary/SKILL.md · 79 lines

How it starts

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

Sprint Summary

Generate a sprint summary from Claude Code Agent Monitor data.

Input

The user provides: $ARGUMENTS

This may be:

  • A sprint duration: "last 2 weeks", "last 10 days"
  • A date range: "2025-03-31 to 2025-04-13"
  • "current sprint" (default: last 14 days)

Procedure

  1. Fetch sprint data from http://localhost:4820:

    • GET /api/sessions?limit=500 — all sessions in range (default sort: most recently updated first)
    • GET /api/analytics — aggregated metrics
    • GET /api/pricing/cost — total costs
    • For high-value sessions: GET /api/events?session_id={id} — event details
  2. Compile sprint summary:

    🎯 Sprint Overview

    • Sprint period: [start] to [end]
    • Total sessions: N (completed: N, errored: N, abandoned: N)
    • Total development hours with Claude Code: N
    • Total cost: $X.XX
    • Overall completion rate: N%

    📦 Deliverables

    Group sessions by working directory (project):

    • Project A (/path/to/project)
      • N sessions, N hours, key activities
    • Project B (/path/to/other)
      • N sessions, N hours, key activities

    📊 Velocity Metrics

    Metric Sprint Previous Sprint Trend
    Sessions/day N N ↑/↓
    Avg session duration Nm Nm ↑/↓
    Cost/session $N $N ↑/↓
    Tokens/session N N ↑/↓
    Completion rate N% N% ↑/↓

    🛠 Technology Breakdown

    • Models used with distribution percentages
    • Top 15 tools by usage with category grouping
    • Subagent utilization rate

    ⚡ Efficiency Analysis

    • Token efficiency: cache hit rate, compaction frequency
    • Cost per completed task
    • Time-to-first-output (avg across sessions)
    • Error recovery rate (sessions that recovered from errors)

    🔄 Retrospective Data Points

    • What went well: Highest-efficiency sessions, best completion rates
    • What could improve: Most expensive sessions, highest error rates
    • Action items: Data-driven suggestions for next sprint

Read the full file on GitHub · 79 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 79 lines · 64 tokens per session scan A 417f27e91c29

Subscribe to this mod's changes

sprint-summary is a skill published in the GitHub repository hoangsonww/Claude-Code-Agent-Monitor (991 stars, last pushed 4d ago), licensed MIT. It adds 64 tokens to every session and 685 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

git-flow

Use when committing, branching, opening PRs, or deciding merge/branch strategy.

fusengine/agents · 20 tokens

radin-execute

Work through a project's whole backlog: prioritize every task, execute each via a sub-agent, commit after each. Use when the user wants the entire backlog processed ("work through my backlog"), not one named task. Delegates all implementation to sub-agents; clarifies ambiguity by asking the user rather than guessing.

shortcuts/radin · 71 tokens

radin-record

Log feedback, bugs, follow-ups, or ideas raised mid-session as structured backlog entries, so they survive past the conversation. Use for /radin-record, "log this to the backlog", "add as follow-up/bug/idea", "record what we just found", "note this for later", "add findings to backlog". Triggers even on vague asks…

shortcuts/radin · 99 tokens

radin-show

Print the current project's backlog to the terminal. Use for /radin-show, "show me the backlog", "what's in the backlog", "list backlog items", "print the backlog".

shortcuts/radin · 44 tokens

managing-product

Extracts product requirements and produces a PRD. Use when a user wants to build software and needs to define what to build before architecture or implementation, when scoping an MVP, or when translating a vague idea into a buildable specification.

isvlasov/rageatc-oss · 52 tokens

orchestrating-work

Principles for multi-agent workflow execution. Use when coordinating agents, accepting or rejecting agent work, executing producer-critic cycles, or running any multi-phase orchestrated task.

isvlasov/rageatc-oss · 39 tokens