/briefing
Executive daily briefing aggregating reports from all agents into decision-focused summary. Triggers: briefing, daily summary, status across system, executive update.
$ npx -y skills add softspark/ai-toolkit --skill briefing --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/briefing
Context preview
The summary Claude sees to decide when to auto-load this skill.
Executive daily briefing aggregating reports from all agents into decision-focused summary. Triggers: briefing, daily summary, status across system, executive update.
SKILL.md
briefing.SKILL.mdname: briefing
description: "Executive daily briefing aggregating reports from all agents into decision-focused summary. Triggers: briefing, daily summary, status across system, executive update."
effort: medium
disable-model-invocation: true
agent: chief-of-staff
context: fork
allowed-tools: Read, Grep, Glob
Briefing Command
Triggers the Chief of Staff to generate an executive summary.
Usage
/briefing [period]
# Example: /briefing today
# Example: /briefing week
/briefing --tokens [--since 7d|24h|30m]
# Reports real session token usage from Claude Code JSONL.
Protocol
1. **Collect**: Gather logs from `kb/learnings/`, `maintenance/` logs, and recent runs. 2. **Synthesize**: Group by category (Ops, Strategy, Actions). 3. **Filter**: Remove low-priority success logs. 4. **Present**: Render the Daily Brief.
Example
## Daily Brief — 2026-04-23
### Ops
- night-watch: 3 dep updates shipped, 1 rolled back (breaking change in `x-pkg@2.0`)
- health: all green except `mailpit` (degraded, non-critical)
### Strategy
- predict: new PR #42 overlaps with in-flight refactor in `/src/auth`
### Actions needed
- Review rollback from night-watch (ETA: 5 min)
- Decide on `x-pkg` pin strategy (open question on GitHub #41)
Rules
- **MUST** stay under 200 words unless the user explicitly asks for more detail
- **MUST** lead with decision-relevant facts, not chronology — "what should I act on" before "what happened"
- **NEVER** invent agent activity — report only what the logs show; absence of logs means "no data", not "nothing happened"
- **CRITICAL**: separate Ops (what ran) from Strategy (what was decided) from Actions (what needs a human) — mixing them defeats the brief
- **MANDATORY**: when no material activity exists for a category, omit the category heading instead of writing "none"
Gotchas
- `kb/learnings/` often mixes drafts with completed entries. Filter by frontmatter `status: final` or by filename convention before aggregating.
- `maintenance/` branch logs from `/night-watch` use a different format (Shift Report markdown) than agent run logs. Do not concatenate blindly — parse each source separately and normalize.
- "Recent runs" without an explicit time bound defaults to **everything** on some log backends. Always pass `--since` or a date filter, or you will read a week into yesterday's memory.
- Successful runs outnumber interesting runs by an order of magnitude. Aggressively filter green/noop entries — they are the signal's noise floor.
Token Receipts
The `--tokens` flag reports real token usage parsed from Claude Code session JSONL — not estimates. Useful for:
- Verifying `output-mode: concise` actually reduces tokens vs default sessions
- Spotting expensive runs before they show up on the bill
- Capturing a baseline before changing prompts or skills
Underlying script: `scripts/session_token_stats.py`.
# Aggregate current session
python3 scripts/session_token_stats.py --json
# Statusline-friendly one-line output
python3 scripts/session_token_stats.py --statusline
# Trend vs baseline
python3 scripts/session_token_stats.py --statusline --baseline ~/.softspark/ai-toolkit/baseline.json
Status line (installed by default in v3.2.0+)
`ai-toolkit install` wires `~/.claude/settings.json` to `app/hooks/ai-toolkit-statusline.sh`. The hook reads native Claude Code statusLine stdin (no session JSONL parsing) and renders one line:
➜ <dir> git:(branch) ✗ ████░░░░░░ 43% ↑6.5k ↓252k effort:xhigh <model>
Segments left to right:
- `➜ <dir>` — current directory basename
- `git:(branch) ✗` — git branch + dirty marker
- 10-cell **progress bar** for context-window usage. Color tiers: green `<70%`, orange `70–89%`, red `≥90%`
- `↑in ↓out` — token arrows. Green up = input (upload), red down = output (download). Both cumulative across the session.
- `effort:level` — Claude Code effort level (low / medium / high / xhigh)
- model name
Custom statusLine entries you set yourself (without the `_source: ai-toolkit` tag) are preserved untouched on install.
Opt-outs (no reinstall required):
- `AI_TOOLKIT_STATUSLINE_DISABLE=1` — silence the line entirely
- `AI_TOOLKIT_STATUSLINE_NO_TOKENS=1` — hide token arrows segment
- `AI_TOOLKIT_STATUSLINE_NO_GIT=1` — hide git segment
- `AI_TOOLKIT_STATUSLINE_NO_EFFORT=1` — hide effort level segment
- `AI_TOOLKIT_STATUSLINE_NO_COLOR=1` — disable ANSI colors
- `AI_TOOLKIT_STATUSLINE_SHOW_COST=1` — append Claude Code's reported cost (`cost.total_cost_usd`)
- `AI_TOOLKIT_STATUSLINE_DUMP=1` — write received stdin to `/tmp/cc-statusline-input.json` (debug)
Save a baseline
python3 scripts/session_token_stats.py --json | jq '.totals' > ~/.softspark/ai-toolkit/baseline.json
export AI_TOOLKIT_STATUSLINE_BASELINE=~/.softspark/ai-toolkit/baseline.json
The statusline then renders trend arrows (↑ / ↓) against that baseline.
When NOT to Use
- For a specific production incident — use `/workflow incident-response`
- For one-agent activity detail — read that agent's logs directly (`kb/learnings/<agent>/`)
- For planning future work — use `/plan` or `/prd-to-plan`
- For a technical system-up/down status — use `/health`
- When no agents have produced logs in the window — say so and stop; do not pad
Read more
name: briefing description: "Executive daily briefing aggregating reports from all agents into decision-focused summary. Triggers: briefing, daily summary, status across system, executive update." effort: medium disable-model-invocation: true agent: chief-of-staff context: fork allowed-tools: Read, Grep, Glob
Briefing Command
Triggers the Chief of Staff to generate an executive summary.
Usage
/briefing [period] # Example: /briefing today # Example: /briefing week /briefing --tokens [--since 7d|24h|30m] # Reports real session token usage from Claude Code JSONL.
Protocol
1. **Collect**: Gather logs from `kb/learnings/`, `maintenance/` logs, and recent runs. 2. **Synthesize**: Group by category (Ops, Strategy, Actions). 3. **Filter**: Remove low-priority success logs. 4. **Present**: Render the Daily Brief.
Example
## Daily Brief — 2026-04-23 ### Ops - night-watch: 3 dep updates shipped, 1 rolled back (breaking change in `x-pkg@2.0`) - health: all green except `mailpit` (degraded, non-critical) ### Strategy - predict: new PR #42 overlaps with in-flight refactor in `/src/auth` ### Actions needed - Review rollback from night-watch (ETA: 5 min) - Decide on `x-pkg` pin strategy (open question on GitHub #41)
Rules
- **MUST** stay under 200 words unless the user explicitly asks for more detail
- **MUST** lead with decision-relevant facts, not chronology — "what should I act on" before "what happened"
- **NEVER** invent agent activity — report only what the logs show; absence of logs means "no data", not "nothing happened"
- **CRITICAL**: separate Ops (what ran) from Strategy (what was decided) from Actions (what needs a human) — mixing them defeats the brief
- **MANDATORY**: when no material activity exists for a category, omit the category heading instead of writing "none"
Gotchas
- `kb/learnings/` often mixes drafts with completed entries. Filter by frontmatter `status: final` or by filename convention before aggregating.
- `maintenance/` branch logs from `/night-watch` use a different format (Shift Report markdown) than agent run logs. Do not concatenate blindly — parse each source separately and normalize.
- "Recent runs" without an explicit time bound defaults to **everything** on some log backends. Always pass `--since` or a date filter, or you will read a week into yesterday's memory.
- Successful runs outnumber interesting runs by an order of magnitude. Aggressively filter green/noop entries — they are the signal's noise floor.
Token Receipts
The `--tokens` flag reports real token usage parsed from Claude Code session JSONL — not estimates. Useful for:
- Verifying `output-mode: concise` actually reduces tokens vs default sessions
- Spotting expensive runs before they show up on the bill
- Capturing a baseline before changing prompts or skills
Underlying script: `scripts/session_token_stats.py`.
# Aggregate current session python3 scripts/session_token_stats.py --json # Statusline-friendly one-line output python3 scripts/session_token_stats.py --statusline # Trend vs baseline python3 scripts/session_token_stats.py --statusline --baseline ~/.softspark/ai-toolkit/baseline.json
Status line (installed by default in v3.2.0+)
`ai-toolkit install` wires `~/.claude/settings.json` to `app/hooks/ai-toolkit-statusline.sh`. The hook reads native Claude Code statusLine stdin (no session JSONL parsing) and renders one line:
➜ <dir> git:(branch) ✗ ████░░░░░░ 43% ↑6.5k ↓252k effort:xhigh <model>
Segments left to right:
- `➜ <dir>` — current directory basename
- `git:(branch) ✗` — git branch + dirty marker
- 10-cell **progress bar** for context-window usage. Color tiers: green `<70%`, orange `70–89%`, red `≥90%`
- `↑in ↓out` — token arrows. Green up = input (upload), red down = output (download). Both cumulative across the session.
- `effort:level` — Claude Code effort level (low / medium / high / xhigh)
- model name
Custom statusLine entries you set yourself (without the `_source: ai-toolkit` tag) are preserved untouched on install.
Opt-outs (no reinstall required):
- `AI_TOOLKIT_STATUSLINE_DISABLE=1` — silence the line entirely
- `AI_TOOLKIT_STATUSLINE_NO_TOKENS=1` — hide token arrows segment
- `AI_TOOLKIT_STATUSLINE_NO_GIT=1` — hide git segment
- `AI_TOOLKIT_STATUSLINE_NO_EFFORT=1` — hide effort level segment
- `AI_TOOLKIT_STATUSLINE_NO_COLOR=1` — disable ANSI colors
- `AI_TOOLKIT_STATUSLINE_SHOW_COST=1` — append Claude Code's reported cost (`cost.total_cost_usd`)
- `AI_TOOLKIT_STATUSLINE_DUMP=1` — write received stdin to `/tmp/cc-statusline-input.json` (debug)
Save a baseline
python3 scripts/session_token_stats.py --json | jq '.totals' > ~/.softspark/ai-toolkit/baseline.json export AI_TOOLKIT_STATUSLINE_BASELINE=~/.softspark/ai-toolkit/baseline.json
The statusline then renders trend arrows (↑ / ↓) against that baseline.
When NOT to Use
- For a specific production incident — use `/workflow incident-response`
- For one-agent activity detail — read that agent's logs directly (`kb/learnings/<agent>/`)
- For planning future work — use `/plan` or `/prd-to-plan`
- For a technical system-up/down status — use `/health`
- When no agents have produced logs in the window — say so and stop; do not pad
Professional-grade AI coding toolkit with multi-platform support. Machine-enforced safety, 109 skills, 44 agents, expanded lifecycle hooks, persona presets, experimental opt-in plugin packs, and benchmark tooling — works with Claude Code, Claude Chat/Cowork,
Repo: softspark/ai-toolkit
Other skills on ai-toolkit.
- /ai-toolkit-rules
Mandatory engineering, security, testing, git, performance, quality, and response rules. Claude MUST load this skill for every technical, coding, debugging, review, architecture, DevOps, data, or file-editing task in Chat or Cowork.
Open skill - /mem-search
Search past coding sessions using natural language. Finds relevant observations, decisions, and context from previous work.
Open skill - /a11y-validate
Accessibility validator: WCAG 2.1 AA, EN 301 549, EAA. Triggers: a11y, accessibility, WCAG, EAA, ARIA, contrast, keyboard, screen reader.
Open skill - /agent-creator
Creates new specialized agents with frontmatter, tools, delegation. Triggers: new agent, create agent, agent scaffold, specialized agent.
Open skill - /analyze
Analyzes code quality, complexity, patterns across codebase. Triggers: quality report, hotspot scan, code analysis, architecture signal.
Open skill - /api-patterns
REST/GraphQL API design: naming, versioning, pagination, idempotency, OpenAPI. Triggers: API design, REST, GraphQL, OpenAPI, Swagger, idempotency, rate limit.
Open skill

