Use when you have a written implementation plan to execute in a separate session with review checkpoints
npx skills add graemerycyk/openpmkit --skill "pm-sprint-review"
Install specific skill from multi-skill repository
# Description
Generate sprint review packs with completed work, metrics, demos, and stakeholder updates
# SKILL.md
name: pm-sprint-review
description: Generate sprint review packs with completed work, metrics, demos, and stakeholder updates
metadata: {"pmkit":{"emoji":"๐","category":"agile","schedule":"0 14 * * 5"}}
Sprint Review Pack
Generate sprint review packs with completed work, metrics, demos, and stakeholder updates.
Overview
Synthesize sprint data into a clear, stakeholder-friendly summary for sprint review presentations.
Tools
generate_sprint_review
Generate a complete sprint review pack.
Input:
{
"sprintName": "Sprint 42",
"teamName": "Product Team",
"projectKey": "ACME"
}
Output: Markdown pack with:
- Sprint summary (2-3 sentence overview)
- Key accomplishments (top 3-5 deliverables with business impact)
- Metrics dashboard:
- Velocity (points completed vs committed)
- Bug count and resolution rate
- Customer-facing vs internal work ratio
- Demo highlights (features ready to demo with talking points)
- Blockers & learnings (what slowed us down, what we learned)
- Customer impact (feedback received, how it influenced work)
- Next sprint preview (what's coming up)
get_completed_stories
Fetch completed Jira stories for the sprint.
Input:
{
"sprintName": "Sprint 42",
"projectKey": "ACME"
}
get_sprint_metrics
Fetch sprint velocity and metrics.
Input:
{
"sprintName": "Sprint 42",
"includeHistory": true
}
get_blockers
Fetch blockers and impediments from the sprint.
Input:
{
"sprintName": "Sprint 42"
}
get_customer_feedback_sprint
Fetch customer feedback received during the sprint.
Input:
{
"sprintStartDate": "2026-01-13",
"sprintEndDate": "2026-01-27"
}
Schedule
Default: Fridays at 2:00 PM (0 14 * * 5)
Output
Markdown file saved to: pmkit/sprint-review/{timestamp}/{sprint-name}.md
SIEM telemetry saved to: pmkit/sprint-review/{timestamp}/telemetry.json
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.