sprint-report
Generate a sprint status report for schook. Default is --table.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Generate a sprint status report for schook. Default is --table.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Session initialization for the team-lead identity. Confirms identity and detects whether a full team restore is needed. Only run when ATM_IDENTITY=team-lead.
Orchestrate multi-sprint phases where chook (Codex) is the sole developer, with pipelined QA via quality-mgr teammate. Team-lead tracks findings and schedules fix passes.
Run the project-local Phase 3 schema drift workflow for approved hook fixtures and generate validated drift artifacts.
Based on SOC occupation classification
| name | sprint-report |
| description | Generate a sprint status report for schook. Default is --table. |
Build fenced JSON and pipe to the Jinja2 template. mode controls table vs detailed.
/sprint-report [--table | --detailed]
Default: --table
Use gh pr list to get current sprint PR state:
cd /Users/randlee/Documents/github/schook
gh pr list --state all --limit 20
For CI status on open PRs:
gh pr checks <PR_NUMBER>
Only drill into individual gh run view calls if you need failure details for a specific job.
The template path is relative โ must run from the schook repo root (not a worktree).
cd /Users/randlee/Documents/github/schook
echo '<json>' > /tmp/sprint-report.json
sc-compose render skills/sprint-report/report.md.j2 --var-file /tmp/sprint-report.json
{
"mode": "table",
"sprint_rows": "| S1 Baseline alignment | โ
| โ
| ๐ | #14 |\n| S2 Compliance hardening | โ
| โ
| ๐ | #15 |",
"integration_row": "| **integration/s7-baseline โ develop** | | โ | ๐ | โ |"
}
{
"mode": "detailed",
"sprint_rows": "Sprint: S1 Baseline alignment\nPR: #14\nQA: PASS โ\nCI: Merged to integration/s7-baseline โ\nโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ\nSprint: S2 Compliance hardening\nPR: #15\nQA: PASS โ (iter 3)\nCI: Running (1 pending)",
"integration_row": "Integration: integration/s7-baseline โ develop\nCI: Pending S6 merge"
}
| State | DEV | QA | CI |
|---|---|---|---|
| Assigned | ๐ฅ | ๐ฅ | |
| In progress | ๐ | ๐ | ๐ |
| Done/Pass | โ | โ | โ |
| Findings | ๐ฉ | ๐ฉ | |
| Fixing | ๐จ | ||
| Blocked | ๐ง | ||
| Fail | โ | ||
| Merged | ๐ | ||
| Ready to merge | ๐ |