sprint-close

sprint-close is a skill for Claude Code from Stanshy/AgentHub. It costs 18 tokens per session (488 once invoked), scanned A, original, MIT.

A sprint closing workflow for merging a completed sprint branch into the project’s base branch, creating a release tag, and removing merged branches.

In plain words
What is it for?
Use it after all sprint tasks and quality gates pass to verify task status, merge the sprint, tag the release, clean up merged task branches, and show a summary.
Why use it?
It prevents closing a sprint while tasks are unfinished and keeps the repository’s branches organized. It also leaves a named tag for the release.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: positional $N argument.

Good fit Use it after all sprint tasks and quality gates pass to verify…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/stanshy/agenthub/sprint-close
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 Stanshy/AgentHub --skill sprint-close
Clone the repo
git clone --depth 1 https://github.com/Stanshy/AgentHub

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/stanshy/agenthub/sprint-close.svg)](https://agentmods.dev/skills/stanshy/agenthub/sprint-close)
Your own site
<a href="https://agentmods.dev/skills/stanshy/agenthub/sprint-close"><img src="https://agentmods.dev/badge/skills/stanshy/agenthub/sprint-close.svg" alt="Measured on agentmods" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 488 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.00018 $0.00488
Opus 5 $0.00009 $0.00244
Sonnet 5 $0.00004 $0.00098
Haiku 4.5 $0.00002 $0.00049

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

Security

Grade A, and why

sprint-close 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 7d 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.

.knowledge/company/skill-templates/sprint-close/SKILL.md · 61 lines

What it actually says

Sprint 結案

老闆 + PM 確認所有 Gate 通過後執行,將 sprint branch merge 回 base branch。

使用方式

/sprint-close <sprint-number>

參數

  • $0: Sprint 編號(如 1

執行步驟

  1. 確認所有任務已完成: 使用 Glob tool 搜尋 .tasks/sprint-$0/*.md,用 Read tool 逐一讀取,確認所有任務 | 狀態 | 欄位均為 done。 若有任一非 done → 列出未完成任務,停止執行。

  2. 讀取 base branch: 使用 Glob tool 搜尋 proposal/sprint$0-dev-plan.md,用 Read tool 讀取,找到 | Base Branch | 欄位取得 base branch 名稱(如 mainmaster)。

  3. 切換並 merge

    git checkout {base-branch}
    git merge --no-ff sprint-$0 -m "release: sprint-$0 結案"
    
  4. 建立 Tag

    git tag sprint-$0-release
    
  5. 清理已 merge 的 task branches

    git branch --merged {base-branch} | grep "task/s$0-" | xargs git branch -d
    

    只刪除已完整 merge 進 base branch 的 task branches,未 merge 的保留並輸出警告。

  6. 刪除 sprint branch

    git branch -d sprint-$0
    
  7. 輸出結案摘要

✅ Sprint $0 結案完成

Base Branch:{base-branch}
Tag:sprint-$0-release
清理 branches:{已刪除的 branch 列表,或「無」}

git log --oneline -5 顯示最近 commit:
{輸出}
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. 7d ago First seen · 61 lines · 18 tokens per session scan A d95da0e8487e

Subscribe to this mod's changes

sprint-close is a skill published in the GitHub repository Stanshy/AgentHub (201 stars, last pushed 5mo ago), licensed MIT. It adds 18 tokens to every session and 488 once invoked, about $0.0001 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.