← ClaudeAtlas

roll-brieflisted

Owner-facing briefing generator. Summarizes what the agent has done since the last brief: completed US/FIX/REFACTOR, in-progress items, BACKLOG queue status, escalations requiring human attention, and a release-readiness verdict. Three trigger modes: auto on Feature completion, daily morning schedule, or manual $roll-brief invocation. Distinct from roll-.changelog (user-facing changelog) — this is an internal digest for the product owner.
seanyao/roll · ★ 13 · AI & Automation · score 83
Install: claude install-skill seanyao/roll
# Roll Brief > Follows the Architecture Constraints, Development Discipline, and Engineering > Common Sense defined in the project AGENTS.md. Owner-facing digest of autonomous agent activity. Gives the human everything needed to decide whether to cut a new release — without having to read every commit or diff. ## Distinct from roll-.changelog | | roll-brief | roll-.changelog | |--|-----------|----------------| | **Audience** | Product owner (internal) | End users (public) | | **Content** | All activity including REFACTOR, escalations, health signals | Only user-visible feature changes | | **Trigger** | Feature completion / daily / on-demand | Post-deploy | | **Tone** | Operational, candid | Product-facing, polished | ## Trigger Modes ### 1. Feature Completion (auto) Triggered by `roll-loop` when a set of related Stories under one Feature are all marked ✅ Done. The loop passes the Feature name as context. ### 2. Daily Morning (scheduled) Runs at a fixed time each morning (configurable in `~/.roll/config.yaml`). Covers all activity since the previous brief. ```yaml # ~/.roll/config.yaml brief: daily_time: "08:00" # local time timezone: "Asia/Shanghai" ``` ### 3. On-Demand ```bash $roll-brief # since last brief $roll-brief --since 2026-05-09 # since specific date $roll-brief --feature auth # scoped to one feature ``` ## Workflow ### Step 1 — Determine Scope ```bash # Find timestamp of last brief ls .roll/briefs/ | sort | tail -1 # Rea