一键导入
sprint-report
Sprint health report — progress, burn rate, blockers, at-risk tickets, carry-over risk, and team workload.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Sprint health report — progress, burn rate, blockers, at-risk tickets, carry-over risk, and team workload.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Weekly backlog audit — field completeness, staleness tiers, and duplicate detection. Run during grooming to clean up the backlog.
Creates a JIRA Bug with steps to reproduce, expected/actual behavior, and fix criteria. Activates when users ask to create a bug report, file a bug, or report an issue.
Creates a JIRA Epic with scope, success criteria, and child story breakdown. Activates when users ask to create an epic.
Creates a JIRA Story with user story format, acceptance criteria, and technical notes. Activates when users ask to create a story or user story.
Creates a JIRA Task for tech debt, infrastructure, documentation, or spike work. Activates when users ask to create a task, spike, tech debt ticket, or infrastructure work.
Daily briefing — sprint progress, new tickets, and recent comments in one report. Run this to get oriented at the start of the day.
| name | sprint-report |
| description | Sprint health report — progress, burn rate, blockers, at-risk tickets, carry-over risk, and team workload. |
| allowed-tools | ["mcp__atlassian__jira_search","mcp__atlassian__jira_get_issue","mcp__atlassian__jira_get_agile_boards","mcp__atlassian__jira_get_sprints_from_board","mcp__atlassian__jira_get_sprint_issues","mcp__atlassian__jira_get_board_issues","mcp__atlassian__jira_batch_get_changelogs","mcp__atlassian__jira_get_issue_dates"] |
| argument-hint | [project-key] |
Comprehensive sprint health report. Read-only — surfaces issues, never modifies tickets. Uses mcp__atlassian__* MCP tools exclusively (not jira-cli).
$1 (optional): Project key. Defaults to HYPERFLEET.| Field ID | Name | Notes |
|---|---|---|
customfield_10028 | Story Points | The story points field for this instance |
If the field has no value, treat the issue as 0 story points and note it in the report.
Important: Pass the fields parameter on every issue query:
fields: "summary,description,issuetype,status,priority,labels,assignee,reporter,created,updated,components,customfield_10028"
mcp__atlassian__jira_get_agile_boards to find the board for the projectmcp__atlassian__jira_get_sprints_from_board to find the active sprint (state = "active")mcp__atlassian__jira_get_sprint_issues to pull all issues in the active sprintmcp__atlassian__jira_batch_get_changelogs on sprint issues to detect recent status transitions (last 24h)Identify items likely to spill into the next sprint:
Report: total items at risk of carry-over, total story points at risk.
From the changelog data, surface:
## Sprint Report: [Sprint Name]
**Day [X] of [Y]** | [start] - [end] | [days remaining] days left
### Progress
| Status | Issues | Points |
|--------|--------|--------|
| Done | X | Y |
| In Progress | X | Y |
| To Do | X | Y |
| **Total** | **X** | **Y** |
Progress: [=========> ] X% (by points)
Burn rate: X pts/day (need Y pts/day to finish on time)
### Risks
- [PROJ-123] Blocked: [summary] — blocked for X days
- [PROJ-456] Stale: [summary] — in progress for X days, no movement
- [PROJ-789] Unassigned: [summary] — X points at risk
- Scope creep: X issues added after sprint start
### Carry-Over Risk
- Items likely to spill: X
- Story points at risk: X pts
| Ticket | Summary | Pts | Status | Why |
|--------|---------|-----|--------|-----|
| PROJ-123 | [Summary] | 8 | To Do | Large, no activity |
| PROJ-456 | [Summary] | 5 | In Progress | Stale 4 days |
### Team Workload
| Assignee | Assigned | Done | Remaining |
|----------|----------|------|-----------|
| Name | X pts | Y pts| Z pts |
### Key Movements (last 24h)
- [PROJ-123] moved to Done (X pts)
- [PROJ-456] moved to In Progress
- [PROJ-789] added to sprint (scope change)
### Recommendations
- [Actionable item for the team — e.g., "Unblock PROJ-123 to recover 8 pts"]
- [Rebalance suggestion if workload is skewed]
- [Scope discussion if burn rate is behind]