sprint-report
Generate a sprint status report for schook. Default is --table.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate a sprint status report for schook. Default is --table.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
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.
| 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 | 🚀 |