Archive Meeting
Overview
Turn "there's a transcript somewhere" into structured, linked artifacts in the brain repo:
- •
Transcripts/YYYY-MM-DD/NN.md(imported transcript with frontmatter) - •
Executive Summaries/YYYY-MM-DD/NN.md(generated summary with frontmatter) - •
Meeting Notes/<target>/YYYY-MM-DD/NN.md(meeting notes with links and detailed notes) - •
Weekly Notes/Week of YYYY-MM-DD.mdcheckbox for the meeting marked as complete (if found) - •Pending
{{Meeting Notes/<target>}}placeholders replaced with wikilinks
Agent Responsibilities
The agent's job is simple: call the CLI. Everything else is handled automatically.
For interactive mode (recommended), just run:
archive-meeting \
--brain-dir ~/code/jonmagic/Brain \
--executive-summary-prompt-path ~/code/jonmagic/prompts/summarize/zoom-transcript-executive-summary.md \
--detailed-notes-prompt-path ~/code/jonmagic/prompts/summarize/transcript-meeting-notes.md
The CLI will use fzf to:
- •Select from recent meetings (Zoom folders + Teams VTTs)
- •Select from pending meeting note targets in weekly notes
Explicit Mode
If the user specifies the input and target:
archive-meeting \
--brain-dir ~/code/jonmagic/Brain \
--input "/path/to/transcript.vtt" \
--meeting-notes-target "jonmagic" \
--executive-summary-prompt-path ~/code/jonmagic/prompts/summarize/zoom-transcript-executive-summary.md \
--detailed-notes-prompt-path ~/code/jonmagic/prompts/summarize/transcript-meeting-notes.md
CLI Options
| Option | Required | Description |
|---|---|---|
--brain-dir | Yes | Path to Brain directory |
--input | No | Path to input (VTT file or Zoom folder). If omitted, uses fzf selection |
--meeting-notes-target | No | Meeting Notes target basename (e.g., "jonmagic"). If omitted, uses fzf selection |
--executive-summary-prompt-path | Yes | Path to prompt file for executive summary |
--detailed-notes-prompt-path | Yes | Path to prompt file for detailed notes |
--date | No | Override meeting date (YYYY-MM-DD). Defaults to file mtime |
--dry-run | No | Show what would be done without writing files |
Batch Workflow
For multiple meetings, call the CLI once per meeting with explicit arguments.
Prerequisites
The archive-meeting CLI from ~/code/jonmagic/scripts must be on PATH.
To verify:
which archive-meeting archive-meeting --help
If not available:
cd ~/code/jonmagic/scripts && bun install # Ensure ~/code/jonmagic/scripts/bin is on PATH
References
- •
references/formats.md— Zoom folder conventions and Teams VTT quirks - •
references/meeting_notes_routing.yml— manual overrides/aliases for Meeting Notes routing - •
assets/transcript-meeting-notes.prompt.md— prompt template for meeting notes (legacy) - •
assets/zoom-transcript-executive-summary.prompt.md— prompt template for executive summary (legacy)
Frontmatter
All output files should include YAML frontmatter. Generate a TID for each file:
node ~/.copilot/skills/frontmatter-add/scripts/generate-tid.js
Transcript files (Transcripts/YYYY-MM-DD/NN.md)
--- uid: <TID> type: transcript created: <meeting date ISO 8601> tags: [] links: related: [] ---
Executive summary files (Executive Summaries/YYYY-MM-DD/NN.md)
--- uid: <TID> type: executive.summary created: <meeting date ISO 8601> tags: [] links: source: [<transcript TID>] related: [] ---
Meeting notes files (Meeting Notes/<target>/YYYY-MM-DD/NN.md)
--- uid: <TID> type: meeting.note created: <meeting date ISO 8601> tags: [] links: source: [<transcript TID>] related: [] ---
The links.source field connects the executive summary and meeting notes back to the transcript they were generated from. If the CLI handles file creation, the agent should add frontmatter to any files that don't already have it.