| name | briefing |
| argument-hint | [report [period]] | verify | current | worktrees | [summary] | stop | next |
| description | Generate a project briefing: worktree status, open checkboxes, recent commits. Modes: summary (default), report, verify, current, worktrees. Period: 1h, 6h, 24h, 2d, 7d. |
/briefing ā Project Status Briefing
Gather project state and present a structured briefing.
Runtime Check
Before executing any mode, determine which runtime is available for the
briefing helper script:
-
Try node scripts/briefing.cjs first (preferred).
-
If node is not found, try python3 scripts/briefing.py (fallback).
-
If neither node nor python3 is available, output a clear error and stop:
/briefing requires Node.js or Python 3. Install one and ensure it's on PATH.
Use the detected runtime for all node scripts/briefing.cjs commands below.
If using the Python fallback, substitute python3 scripts/briefing.py wherever
the instructions say node scripts/briefing.cjs.
Argument Parsing
Parse $ARGUMENTS to determine mode, options, and optional schedule:
$ARGUMENTS = "" ā mode: summary
$ARGUMENTS = "summary" ā mode: summary
$ARGUMENTS = "report" ā mode: report, period: 24h
$ARGUMENTS = "report 7d" ā mode: report, period: 7d
$ARGUMENTS = "verify" ā mode: verify
$ARGUMENTS = "current" ā mode: current
$ARGUMENTS = "worktrees" ā mode: worktrees
$ARGUMENTS = "stop" ā meta: cancel scheduled briefings
$ARGUMENTS = "next" ā meta: show next scheduled briefing
$ARGUMENTS = "report 24h every day at 9am" ā mode: report, schedule
Period shorthand: 1h, 6h, 24h (default), 1d, 2d, 7d
Schedule detection: If $ARGUMENTS contains every <SCHEDULE>, strip the schedule
portion and handle scheduling separately (see Scheduling section below).
Mode Dispatch
CRITICAL: "Present verbatim" means OUTPUT EVERY LINE. Do not summarize,
collapse, truncate, or rephrase script output. The script's formatting IS
the presentation ā it was designed to be read directly. If the output is 50
lines, show 50 lines. The user wants to SEE the data, not hear about it.
Past failure: agent received 45 lines of worktree status and collapsed it
to a 4-line summary, hiding actionable details like which logs need
extraction and which commits are unlanded.
summary (default ā empty or unrecognized arguments)
Quick terminal-only triage view. The helper outputs pre-formatted text.
node scripts/briefing.cjs summary --since=<period>
Present the output verbatim ā it is already formatted with three buckets:
- NEEDS ATTENTION ā worktrees needing review, unchecked checkboxes, uncommitted files
- LANDED SINCE LAST 24H ā recent commits grouped by conventional type
- IN FLIGHT ā possibly-active worktrees, stash entries
- QUIET ā count of landed/empty worktrees (no action needed)
- WARNINGS ā staleness warnings if applicable
report
Generate a detailed markdown report and write it to reports/.
node scripts/briefing.cjs report --since=<period>
The helper writes the file directly and prints its path. Report includes:
- Summary counts (commits, worktrees, checkboxes)
- Needs Attention section with review checklists
- Landed on Main table
- Worktree Status table
- In Progress section
Checkbox state from earlier same-day reports is preserved automatically.
Present: "Report written to: <path>" with a brief summary of key findings.
verify
Purpose: show the user everything they need to verify, with links to
open the reports directly. This is a sign-off dashboard ā the user reads
this, clicks through, checks items off, done.
This mode is NOT about worktrees. Do not mention worktrees, do not
suggest the user verify worktrees before landing, do not include worktree
counts or status. Worktrees are for /briefing worktrees. Verify is
exclusively about report checkboxes ā [ ] items in verification reports,
fix reports, and plan reports that need human sign-off.
Step 1 ā Gather data
node scripts/briefing.cjs verify
The script output includes both report sign-off data and worktree data.
Use both ā report checkboxes are the primary output, worktrees needing
verification are secondary (see "Worktree verification items" below).
Step 2 ā Read the actual report files
The script gives file paths and counts. That's not enough ā the user needs
to see the actual checkbox text. For each report file with unchecked items,
READ the file and extract every [ ] line with its surrounding context
(the heading it's under, any verification instructions).
Step 3 ā Build the output with links
Get the dev server port:
bash scripts/port.sh
For each report file, construct a viewer URL:
http://localhost:<port>/viewer/?file=<path>
Present the output in this format:
Pending sign-offs: N items across M reports
FIX_REPORT.md ā 33 items
http://localhost:8080/viewer/?file=FIX_REPORT.md
UI / UX Fixes:
[ ] Block Rotation ā right-click, select Rotate, check ports
[ ] Tooltip positioning ā hover near canvas edge, verify no clipping
Simulation Fixes:
[ ] Solver tolerance ā run voltage-divider, verify output within 1e-6
reports/plan-block-expansion.md ā 9 items
http://localhost:8080/viewer/?file=reports/plan-block-expansion.md
Phase 1:
[ ] IfBlock visible in Block Explorer
[ ] If/IfAction wiring works on canvas
VERIFICATION_REPORT.md ā 2 items
http://localhost:8080/viewer/?file=VERIFICATION_REPORT.md
[ ] Variable viewer panel sign-off
[ ] Toolstrip button sign-off
Key formatting rules:
- The terminal output is a DIRECTORY, not a replica. Show the report name,
item count, viewer URL, and section summaries ā not every checkbox line.
The user clicks through to the report to do the actual sign-off work.
- Group by report file, with section summaries (e.g., "UI / UX Fixes: 5
items", "Simulation: 3 items")
- The viewer URL is the actionable part ā make it prominent
Worktree verification items
If the script's output includes worktrees needing verification before
landing, include them ā they ARE verification items. But flag them as
unusual: a worktree needing user verification at /briefing verify time
means /run-plan or /fix-issues didn't complete its verification phase.
ā Worktree needing verification (suggests incomplete skill run):
agent-a5217dbd (SLX Export Phase 1) ā 6 commits, not yet verified/landed
This surfaces the problem rather than hiding it.
Empty state: ALL CLEAR ā no pending sign-off items.
current
Show what's actively in flight right now.
node scripts/briefing.cjs current
Present the output verbatim. Sections:
- POSSIBLY ACTIVE ā worktrees modified in last 2 hours
- FINISHED, NOT LANDED ā worktrees with commits, inactive > 2h
- EMPTY WORKTREES ā zero commits, safe to remove
- UNCOMMITTED ON MAIN ā modified/deleted/untracked file counts
- STASH ā git stash entries or "(empty)"
- LONG-RUNNING BRANCHES ā named worktrees with commits ahead of main
worktrees
Detailed worktree analysis with cleanup readiness. Read-only ā shows what's
safe to remove but does not remove anything.
node scripts/briefing.cjs worktrees-status
Present the output verbatim. Sections:
- SAFE TO REMOVE ā empty worktrees or all commits verified on main, no unextracted logs. Includes copy-pasteable
git worktree remove commands.
- NEEDS LOG EXTRACTION FIRST ā commits are on main but
.claude/logs/ has modified files. Shows which logs need extraction and how.
- NOT SAFE ā has commits not found on main. Shows unlanded commit list.
- NAMED / LONG-RUNNING ā named worktrees (physics module, etc.), never auto-remove.
- ORPHANED ā directories on disk but not registered with
git worktree list.
Important: Always extract logs before removing any worktree. Logs document how work was done ā they are part of the project, not disposable artifacts.
Data Gathering
The agent runs node scripts/briefing.cjs <subcommand> and captures stdout.
| Subcommand | Output | Description |
|---|
worktrees | JSON | All worktrees with classification |
checkboxes | JSON | Unchecked [ ] items from report files |
commits | JSON | Categorized commits on main |
summary | Text | Pre-formatted three-bucket triage view |
report | File | Writes markdown report, prints path |
verify | Text | Pre-formatted verification checklist |
current | Text | Pre-formatted in-flight status |
worktrees-status | Text | Cleanup readiness report |
Worktree Categories
Each worktree is classified into exactly one category:
landed-full ā .landed file with status: full (all commits on main)
landed-partial ā .landed file with status: partial (some commits skipped)
done-needs-review ā No .landed, has commits, inactive > 2 hours
possibly-active ā No .landed, modified within last 2 hours
empty ā No .landed, zero commits ahead of main
named ā Not an agent-* worktree (e.g., physics module)
orphaned ā Directory exists on disk but not in git worktree list
Scheduling
The /briefing skill supports recurring execution via cron.
Setting a Schedule
If $ARGUMENTS contains every <SCHEDULE>:
- Strip the schedule portion from arguments to get the base mode
- Create a cron using CronCreate:
install_command: /briefing <base-mode-args>
schedule: parsed from <SCHEDULE> (e.g., "day at 9am" ā 0 9 * * *)
- Present confirmation with session-scope warning:
Scheduled: /briefing <mode> runs every <schedule>
WARNING: This schedule is tied to this session. If the session ends, the schedule is lost.
stop ā Cancel Scheduled Briefings
- List crons with CronList
- Filter for briefing-related crons (install_command starts with
/briefing)
- Delete each with CronDelete
- Confirm: "Cancelled N briefing schedule(s)."
next ā Show Next Fire Times
- List crons with CronList
- Filter for briefing-related crons
- Show each with its next fire time
- If none: "No briefing schedules active."
Common Schedules
| Input | Cron | Description |
|---|
every hour | 0 * * * * | Top of every hour |
every 2h | 0 */2 * * * | Every 2 hours |
every day at 9am | 0 9 * * * | Daily at 9 AM |
every weekday at 9am | 0 9 * * 1-5 | Weekdays at 9 AM |
Report Template Reference
The report subcommand writes this markdown structure:
# Briefing Report ā YYYY-MM-DD HH:MM ET
Period: <since> -> now
## Summary
- N commits landed on main
- N worktrees: X need review, Y in flight, Z landed
- N unchecked sign-off items across M reports
## Needs Attention
### [ ] Review: <worktree-name> (N commits)
Commits:
- `hash` subject
Last modified: <relative time>
### [ ] Sign-off: <report-file> (N unchecked items)
- [ ] item text (line NN)
## Landed on Main
| Type | Hash | Subject | Date |
|------|------|---------|------|
## Worktree Status
| Worktree | Category | Commits | Last Modified | Notes |
|----------|----------|---------|---------------|-------|
## In Progress
| Worktree | Commits | Last Modified | Summary |
|----------|---------|---------------|---------|
Checkboxes marked [x] in earlier same-day reports are preserved in new reports.
Staleness Warnings
The summary subcommand appends warnings when:
- No briefing report has ever been generated
- The most recent briefing report is older than 48 hours
- A
done-needs-review worktree is older than 7 days (stale)
Z Skills Update Check
If a Z Skills repo clone exists (zskills/ in project root, or
/tmp/zskills), the summary and report modes should check for
upstream updates:
ZSKILLS_DIR=""
[ -d zskills/.git ] && ZSKILLS_DIR=zskills
[ -d /tmp/zskills/.git ] && ZSKILLS_DIR=/tmp/zskills
if [ -n "$ZSKILLS_DIR" ]; then
git -C "$ZSKILLS_DIR" fetch --dry-run 2>&1 | grep -qE '^\s+[a-f0-9]+\.\.[a-f0-9]+' && echo "updates available"
fi
If updates are available, append to the output:
Z Skills: updates available (/update-zskills)
Edge Cases
- Orphaned worktrees ā directories in
.claude/worktrees/ or worktrees/ not
registered with git worktree list. Shown with orphaned category.
- Missing
reports/ directory ā created automatically when writing a report.
- Recency filter ā checkbox scanning only checks files modified in last 30 days
(or top 10 most recent briefing files) to avoid scanning stale history.