← ClaudeAtlas

sprint-snapshotlisted

Capture a point-in-time snapshot of a scrum team's current sprint board from Jira and render it into the Obsidian vault as (1) an Obsidian Canvas with sprint overview, team workload, kanban columns, and issue cards, (2) a companion markdown summary, and (3) an append-only JSONL trend log. Auto-detects sprint phase (start / week 1 / week 2 / week 3 / end) from today's date. Supports `--as-of <date>` for historical snapshots. Reuses obsidian-canvas / obsidian-vault / obsidian-markdown for vault writes and follows the issue-* skills' Jira context-gathering patterns. Use when user says "sprint snapshot", "snapshot the sprint", "capture sprint state", "sprint planner", "scrum board snapshot", or invokes /sprint-snapshot.
risadams/skills · ★ 2 · Testing & QA · score 66
Install: claude install-skill risadams/skills
# Sprint Snapshot Point-in-time snapshot of a scrum team's current sprint. Read-only across Jira. Writes three artifacts per run into the team's vault folder so progress can be tracked over time, scrum-of-scrums and end-of-sprint reporting become low-friction, and trends can be forecast. This skill is a Claude Code port of ``<scripts-repo>\Sprint-Planner.ps1`` + `<scripts-repo>\Get-Jira-Sprint-Planner.ps1` — same canvas layout, same output path convention, same JQL shape. See [REFERENCE.md](REFERENCE.md) for the canvas layout spec, JSONL schema, and matching algorithm. See [EXAMPLES.md](EXAMPLES.md) for invocation parity with the PS scripts. ## Quick start ```text /sprint-snapshot → Aurora, INC 28, current sprint, auto phase /sprint-snapshot Borealis → single team override /sprint-snapshot Aurora --sprint 2 --inc 28 → explicit sprint within increment /sprint-snapshot Aurora --as-of 2026-04-08 → historical snapshot (Jira `updated <= ...`) /sprint-snapshot Aurora --phase "week 1" → override the auto-derived phase ``` ## Parameters | Param | Default | Maps to PS | | :--- | :--- | :--- | | `Team` | from memory or prompt | `-Team` | | `Inc` | from sprint-config or prompt | `-Increment` | | `Sprint` | from sprint-config or prompt | `-Sprint` (1-4) | | `Phase` | auto-derived from today | `-Label` (`start`/`week 1`/`week 2`/`week 3`/`end`) | | `AsOf` | none | `-AsOf` | | `JQL` | auto-built (see P