| name | sb-meeting |
| description | Process a meeting transcript to extract action items (with owners and due dates), risks, follow-up questions, and a concise summary. Optionally record decisions and ingest the output into the vault. |
| disable-model-invocation | true |
| allowed-tools | Bash(.venv/bin/sb meeting *) Bash(.venv/bin/sb ingest *) Bash(.venv/bin/sb decisions *) |
| argument-hint | [--text "<transcript>" | --file <path>] [--title "<title>"] |
Meeting Copilot
Process the meeting transcript and produce a structured output.
Step 1 — Run meeting extraction
If a file path was passed:
.venv/bin/sb meeting extract --file "$ARGUMENTS" --json 2>/dev/null
If text was passed inline (or ask the user to paste it):
.venv/bin/sb meeting extract --text "$ARGUMENTS" --json 2>/dev/null
Step 2 — Present results
Format the JSON output as:
Summary
Action items
Risks
Follow-up questions
Step 3 — Decision extraction
If any decisions were made in the meeting, offer to run /sb-decision-extract on the summary.
Step 4 — Vault ingest
Offer to save the formatted meeting notes to vault/00_inbox/<title>.md and ingest them:
.venv/bin/sb ingest vault/00_inbox/<title>.md