sprint

sprint is a command for Claude Code from killvxk/pm-skills-zh. It costs 21 tokens per session (1,576 once invoked), scanned A, original, MIT.

A set of workflows for a Sprint, a short, planned period of team work. It covers planning the work, reviewing what happened in a retrospective, and writing release notes that explain changes to users or colleagues.

In plain words
What is it for?
Use it for planning meetings, retrospectives based on team feedback or Sprint data, and release notes based on tickets, change logs, or product requirements.
Why use it?
It helps teams account for available time, choose realistic work, identify dependencies and risks, learn from the previous Sprint, and communicate completed changes.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Part of the pm-execution plugin — 15 skills, 10 commands shipped together

Good fit Use it for planning meetings, retrospectives based on team feedback or Sprint data, and release notes based on tickets, change logs, or product requirements.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/killvxk/pm-skills-zh/sprint
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.

Clone the repo
git clone --depth 1 https://github.com/killvxk/pm-skills-zh

Made for: Claude Code.

Or install pm-execution, the plugin that ships this one along with the rest of its 15 skills, 10 commands.

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

README.md
[![agentmods](https://agentmods.dev/badge/commands/killvxk/pm-skills-zh/sprint.svg)](https://agentmods.dev/commands/killvxk/pm-skills-zh/sprint)
Your own site
<a href="https://agentmods.dev/commands/killvxk/pm-skills-zh/sprint"><img src="https://agentmods.dev/badge/commands/killvxk/pm-skills-zh/sprint.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,576 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.00021 $0.01576
Opus 5 $0.00010 $0.00788
Sonnet 5 $0.00004 $0.00315
Haiku 4.5 $0.00002 $0.00158

Measured 8d ago against content hash 96e018965245, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

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

pm-execution/commands/sprint.md · 194 lines

How it starts

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

/sprint -- Sprint 全生命周期

覆盖 Sprint(冲刺)全生命周期的三种模式:plan(规划)用于 Sprint 计划会,retro(回顾)用于回顾会,release-notes(发布说明)用于发布沟通。

Invocation(调用示例)

/sprint plan 2 周 Sprint,4 名工程师,聚焦结账流程优化
/sprint retro [粘贴团队反馈或 Sprint 数据]
/sprint release-notes [粘贴工单、变更日志或 PRD]
/sprint                    # 询问当前所处阶段

Modes(模式)


Plan Mode(规划模式)

通过容量估算、故事选取和风险识别,为 Sprint 计划会做准备。

Workflow(工作流程)

Step 1:收集 Sprint 背景信息

  • Sprint 时长(1 周或 2 周)
  • 团队组成(工程师、设计师、QA——及各自可用时间)
  • Sprint 目标或聚焦方向
  • 待考虑的待办事项(粘贴、上传或描述)
  • 上一个 Sprint 的遗留事项
  • 已知中断因素(假期、值班、会议)

Step 2:估算容量

应用 sprint-plan 技能:

  • 扣除会议、值班、PTO(带薪休假)后,计算可用的工程工时/故事点
  • 根据历史数据(如有提供)或行业标准(理论容量的 70%)应用速率调整
  • 展示每位团队成员的容量明细

Step 3:选取并排序故事

  • 推荐哪些故事在容量范围内可完成
  • 标注依赖链(A 必须在 B 开始前完成)
  • 识别风险:规格不清晰的故事、有外部依赖的故事或需要设计输入的故事
  • 平衡快速见效的小任务与较大工作项
  • 确保每个故事都有验收标准

Step 4:生成 Sprint 计划

## Sprint 计划:[Sprint 名称/编号]

**时长**: [日期范围]
**Sprint 目标**: [一句话描述]
**团队**: [成员及可用时间]

### 容量
| 成员 | 可用天数 | 故事点/工时 | 备注 |
|------|---------|-----------|------|

**总容量**: [X] 故事点/工时
**推荐承诺量**: [Y] 故事点/工时(含缓冲)

### 已选故事
| # | 故事 | 故事点 | 负责人 | 依赖项 | 风险 |
|---|------|--------|-------|-------|------|

### Sprint 风险
1. [风险] — 缓解措施:[行动]

### 完成标准(Definition of Done)
- [ ] 代码已评审
- [ ] 测试通过
- [ ] 已部署到预发布环境
- [ ] QA 已审批
- [ ] 文档已更新(如适用)

Retro Mode(回顾模式)

组织结构化的回顾会,产出可落地的改进措施。

Workflow(工作流程)

Step 1:收集 Sprint 反馈

接受以下输入:

  • 团队反馈(从问卷、Slack 或协作文档粘贴)
  • Sprint 指标(速率、缺陷数、故障数)
  • 用户自己的观察

询问:"你偏好哪种回顾格式?"

  • Start/Stop/Continue(开始/停止/继续)(简单快速)
  • 4Ls(Liked 喜欢、Learned 学到、Lacked 缺少、Longed for 期望)
  • 帆船模型(Wind 风=助力、Anchor 锚=阻力、Rocks 礁石=风险、Island 岛屿=目标)

Step 2:分析与结构化

应用 retro 技能:

  • 按所选框架对反馈进行分类
  • 识别主题和规律
  • 区分表象与根因
  • 突出值得庆祝的亮点

Step 3:生成回顾会摘要

## Sprint 回顾会:[Sprint 名称]

**日期**: [今天]
**格式**: [Start/Stop/Continue | 4Ls | 帆船模型]
**参与者**: [如已知]

### 做得好的方面
[按主题分组,附支撑证据]

### 做得不好的方面
[按主题分组,附根因分析]

### 关键洞察
[2-3 个浮现出的规律]

### 行动项
| # | 行动内容 | 负责人 | 截止日期 | 优先级 |
|---|--------|-------|---------|--------|

### 本 Sprint 指标
| 指标 | 本 Sprint | 上 Sprint | 趋势 |
|------|---------|---------|------|

Read the full file on GitHub · 194 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. 8d ago First seen · 194 lines · 21 tokens per session scan A 96e018965245

Subscribe to this mod's changes

sprint is a command published in the GitHub repository killvxk/pm-skills-zh (154 stars, last pushed 5mo ago), licensed MIT. It adds 21 tokens to every session and 1,576 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.