jira-sprint-review-prep

Compile Jira sprint data into sprint review agendas and release notes.

2|Updated Feb 14, 2026
One-click install
npx skills add https://github.com/Gamaroff/agent-skills --skill jira-sprint-review-prep-gamaroff
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: jira-sprint-review-prep
Source: https://github.com/Gamaroff/agent-skills/tree/main/skills/jira-sprint-review-prep
Command: npx skills add https://github.com/Gamaroff/agent-skills --skill jira-sprint-review-prep-gamaroff

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Preparing for a Sprint Review ceremony means manually pulling completed issues, checking Definition of Done compliance, auditing mid-sprint scope creep, and formatting an agenda or release notes — repetitive administrative work this Skill automates against the Jira REST and Agile APIs. ## Core Features & Use Cases - Sprint data compilation: Fetches sprint metadata and all issues (paginated, with changelog) and normalizes them into a JSON document classifying done vs. open work via localization-safe status categories. - Scope creep audit: Detects issues added to the sprint after its start date by inspecting changelog events, and reports committed vs. mid-sprint velocity separately. - DoD compliance check: Flags Done issues missing a resolution or QA approval with inline warnings, without blocking the agenda. - Two output formats: Renders the same data as a three-section sprint review agenda or as stakeholder-facing release notes. - Use Case: Before your sprint review, ask the agent to prepare the agenda — it resolves the active sprint, compiles the data, and produces a markdown agenda with velocity metrics, shipped increments, uncompleted work, and a scope creep audit. ## Quick Start Ask the agent to prepare the sprint review agenda for the active sprint on your Jira board, or pass a specific sprint ID to generate release notes instead.

Frequently Asked Questions about jira-sprint-review-prep

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate a sprint review agenda from Jira automatically?▼

Run the data compilation script with a sprint ID, then pipe the JSON output into the agenda formatter. The result is a markdown agenda with shipped increments, uncompleted work, a scope creep audit, and committed versus total velocity metrics.

How to generate release notes from a Jira sprint?▼

Pipe the compiled sprint JSON into the release notes formatter instead of the agenda script. It emits a stakeholder-facing changelog listing only shipped items, flagging mid-sprint additions and marking Definition of Done failures with a warning symbol.

How does the skill detect mid-sprint scope creep in Jira?▼

It inspects each issue's changelog for Sprint field events that added the sprint ID after the sprint start date. Issues assigned before the sprint started are excluded, and re-added issues are flagged as creep on the re-add.

What Jira custom fields are required for story points and QA approval?▼

The scripts need JIRA_SP_FIELD and JIRA_QA_FIELD environment variables set to your tenant's custom field IDs. Bundled discovery scripts list candidate fields from the Jira field metadata endpoint, since the defaults rarely match real tenants.

Why is mid-sprint detection disabled for some sprints?▼

Detection requires the sprint's startDate to compare changelog timestamps against. If the sprint was never started and startDate is null, the scripts disable creep detection with a warning rather than produce false positives.

Does the DoD audit block the sprint review agenda?▼

No, the audit is informational only. Issues failing the default rules — missing resolution or missing QA approval — are marked inline with a warning, but the agenda and release notes are always generated.