/capture-meeting
Process meeting notes or transcript to extract decisions, commitments, and insights. Use when user shares transcript or says "capture this meeting", "here are my notes from the call". See also: `meeting-prep` for pre-call briefings; `follow-up-draft` for post-meeting emails.
$ npx -y skills add kbanc85/claudia --skill capture-meeting --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
/capture-meeting
Context preview
The summary Claude sees to decide when to auto-load this skill.
Process meeting notes or transcript to extract decisions, commitments, and insights. Use when user shares transcript or says "capture this meeting", "here are my notes from the call". See also: `meeting-prep` for pre-call briefings; `follow-up-draft` for post-meeting emails.
SKILL.md
capture-meeting.SKILL.mdname: capture-meeting
description: Process meeting notes or transcript to extract decisions, commitments, and insights. Use when user shares transcript or says "capture this meeting", "here are my notes from the call". See also: `meeting-prep` for pre-call briefings; `follow-up-draft` for post-meeting emails.
effort-level: medium
Capture Meeting
Process meeting notes or transcript to extract decisions, commitments, and insights.
Trigger
- "Here's a transcript from [client/person]"
- "Process these meeting notes"
- "Here are my notes from the call with [person]"
- "Capture this meeting"
- `/capture-meeting`
Input
User provides one of:
- Full transcript (from Otter, Granola, etc.)
- Meeting notes (manual)
- Voice memo summary
- Memory/verbal recap
Processing Steps
1. File the Source Material (MANDATORY)
**Always file the raw transcript/notes FIRST.** This is not optional. Source preservation creates provenance: every extracted fact can trace back to where it came from.
Call the `memory_file` MCP tool with:
- `filename`: "YYYY-MM-DD-[person]-[topic].md"
- `source_type`: "transcript"
- `summary`: "Brief 1-line summary of the meeting"
- `about`: ["participant1", "participant2"]
- `content`: The FULL raw transcript/notes text (do not summarize)
The file is automatically routed to the right folder:
- `people/sarah-chen/transcripts/2026-02-04-kickoff.md`
- `clients/acme-corp/transcripts/2026-02-04-quarterly.md`
**Even for brief notes:** If the user shared more than a few sentences, file it. Better to have it than wish you did.
2. Identify Participants
- Who was in the meeting?
- Which person files to update?
- Any new people to track?
3. Extract Key Information (Agent-Accelerated)
**Preferred: Dispatch Document Processor for extraction.** Instead of composing memory operations manually (which takes 2+ minutes of thinking time), dispatch the Document Processor agent (Haiku) with the transcript content and `extraction_type: "memory_operations"`. The agent returns ready-to-store operations in ~10-20 seconds.
**Agent pipeline workflow:**
1. Dispatch Document Processor (Haiku) with:
- The full transcript text
- extraction_type: "memory_operations"
- Context: participant names, meeting topic, date
2. Agent returns memory_operations[] array with:
- Facts, preferences, observations
- Commitments with deadlines
- Entity definitions
- Relationship links
3. Review agent output (judgment layer):
- Verify commitment wording is accurate
- Check importance scores are reasonable
- Confirm entity names match existing entities
- Adjust or remove any questionable extractions
4. Call the `memory_batch` MCP tool with the reviewed operations array
**Fallback: Manual extraction** (use when agent is unavailable or for very short notes)
**Decisions Made:**
- What was decided?
- Who made the decision?
- Any conditions or context?
**Commitments Created:**
- What did you promise? (→ `context/commitments.md`)
- What did they promise? (→ `context/waiting.md`)
- Deadlines (explicit or implied)
**Blockers Surfaced:**
- What's in the way?
- Who can unblock?
**Sentiment Signals:**
- Enthusiasm, concern, resistance
- Energy level
- Relationship health indicators
**Key Topics:**
- Main themes discussed
- Important context shared
4. Link Provenance
After extracting memories (facts, commitments) via the `memory_batch` or `memory_remember` MCP tools:
Call the `memory_file` MCP tool with the `memory_ids` parameter set to the IDs of the memories you extracted. This links the stored transcript to the memories extracted from it, creating the provenance chain: memory -> document -> file on disk.
Now the user can ask "where did you learn that Sarah prefers async communication?" and you can point to the exact transcript.
5. Downstream Updates
After extracting information, propagate changes to the files that depend on it. These updates ensure that summaries stay in sync with source material.
5a. Update person files
For each participant in the meeting:
1. Check if `people/[name-slug].md` exists 2. If it exists:
- Update "Last Contact" date to today
- Add this meeting to "Our History" or interaction log
- Update "Current Context" if new information was shared
- Add any new commitments to the person's section
3. If it does not exist and this person seems important (mentioned multiple times, has commitments, or has a working relationship):
- Offer to create a new person file: "I'd like to create a file for [person]. They [reason]. Should I?"
5b. Update commitment and waiting files
- Add new commitments to `context/commitments.md` (ask for confirmation on wording and deadline)
- Add new waiting items to `context/waiting.md`
- If memory MCP tools are available, also store via the `memory_remember` MCP tool
5c. Update workspace files (if applicable)
Check if this meeting belongs to an active workspace:
1. Does the meeting topic match a workspace in `workspaces/`? 2. Is a meeting participant associated with a workspace project?
If yes:
- File the meeting notes in `workspaces/[slug]/meetings/`
- Update `workspaces/[slug]/Dashboard.md` if the meeting changed project status or phase
- If the meeting created new deliverables or items, add them to the relevant workspace subdirectory
If no workspace match, file in the standard location per the document store routing.
6. Synthesize
Create a summary that captures:
- What happened (brief)
- What was decided
- What's next (actions)
- How it went (sentiment)
Output Format
**📋 Meeting Capture: [Meeting Name/Person]**
### [Date]
**Attendees:** [Names]
**Duration:** [Approximate]
**Context:** [Brief — what was this meeting about?]
### 📝 Summary
[2-3 sentence overview of what happened]
### 🔨 Decisions Made
- [Decision] — decided by [who]
- [Decision]
### ✅ Action Items
**You:**
- [ ] [Action] — by [date]
- [ ] [Action] — by [date]
**Them:**
-
Read more
name: capture-meeting description: Process meeting notes or transcript to extract decisions, commitments, and insights. Use when user shares transcript or says "capture this meeting", "here are my notes from the call". See also: `meeting-prep` for pre-call briefings; `follow-up-draft` for post-meeting emails. effort-level: medium
Capture Meeting
Process meeting notes or transcript to extract decisions, commitments, and insights.
Trigger
- "Here's a transcript from [client/person]"
- "Process these meeting notes"
- "Here are my notes from the call with [person]"
- "Capture this meeting"
- `/capture-meeting`
Input
User provides one of:
- Full transcript (from Otter, Granola, etc.)
- Meeting notes (manual)
- Voice memo summary
- Memory/verbal recap
Processing Steps
1. File the Source Material (MANDATORY)
**Always file the raw transcript/notes FIRST.** This is not optional. Source preservation creates provenance: every extracted fact can trace back to where it came from.
Call the `memory_file` MCP tool with:
- `filename`: "YYYY-MM-DD-[person]-[topic].md"
- `source_type`: "transcript"
- `summary`: "Brief 1-line summary of the meeting"
- `about`: ["participant1", "participant2"]
- `content`: The FULL raw transcript/notes text (do not summarize)
The file is automatically routed to the right folder:
- `people/sarah-chen/transcripts/2026-02-04-kickoff.md`
- `clients/acme-corp/transcripts/2026-02-04-quarterly.md`
**Even for brief notes:** If the user shared more than a few sentences, file it. Better to have it than wish you did.
2. Identify Participants
- Who was in the meeting?
- Which person files to update?
- Any new people to track?
3. Extract Key Information (Agent-Accelerated)
**Preferred: Dispatch Document Processor for extraction.** Instead of composing memory operations manually (which takes 2+ minutes of thinking time), dispatch the Document Processor agent (Haiku) with the transcript content and `extraction_type: "memory_operations"`. The agent returns ready-to-store operations in ~10-20 seconds.
**Agent pipeline workflow:**
1. Dispatch Document Processor (Haiku) with: - The full transcript text - extraction_type: "memory_operations" - Context: participant names, meeting topic, date 2. Agent returns memory_operations[] array with: - Facts, preferences, observations - Commitments with deadlines - Entity definitions - Relationship links 3. Review agent output (judgment layer): - Verify commitment wording is accurate - Check importance scores are reasonable - Confirm entity names match existing entities - Adjust or remove any questionable extractions 4. Call the `memory_batch` MCP tool with the reviewed operations array
**Fallback: Manual extraction** (use when agent is unavailable or for very short notes)
**Decisions Made:**
- What was decided?
- Who made the decision?
- Any conditions or context?
**Commitments Created:**
- What did you promise? (→ `context/commitments.md`)
- What did they promise? (→ `context/waiting.md`)
- Deadlines (explicit or implied)
**Blockers Surfaced:**
- What's in the way?
- Who can unblock?
**Sentiment Signals:**
- Enthusiasm, concern, resistance
- Energy level
- Relationship health indicators
**Key Topics:**
- Main themes discussed
- Important context shared
4. Link Provenance
After extracting memories (facts, commitments) via the `memory_batch` or `memory_remember` MCP tools:
Call the `memory_file` MCP tool with the `memory_ids` parameter set to the IDs of the memories you extracted. This links the stored transcript to the memories extracted from it, creating the provenance chain: memory -> document -> file on disk.
Now the user can ask "where did you learn that Sarah prefers async communication?" and you can point to the exact transcript.
5. Downstream Updates
After extracting information, propagate changes to the files that depend on it. These updates ensure that summaries stay in sync with source material.
5a. Update person files
For each participant in the meeting:
1. Check if `people/[name-slug].md` exists 2. If it exists:
- Update "Last Contact" date to today
- Add this meeting to "Our History" or interaction log
- Update "Current Context" if new information was shared
- Add any new commitments to the person's section
3. If it does not exist and this person seems important (mentioned multiple times, has commitments, or has a working relationship):
- Offer to create a new person file: "I'd like to create a file for [person]. They [reason]. Should I?"
5b. Update commitment and waiting files
- Add new commitments to `context/commitments.md` (ask for confirmation on wording and deadline)
- Add new waiting items to `context/waiting.md`
- If memory MCP tools are available, also store via the `memory_remember` MCP tool
5c. Update workspace files (if applicable)
Check if this meeting belongs to an active workspace:
1. Does the meeting topic match a workspace in `workspaces/`? 2. Is a meeting participant associated with a workspace project?
If yes:
- File the meeting notes in `workspaces/[slug]/meetings/`
- Update `workspaces/[slug]/Dashboard.md` if the meeting changed project status or phase
- If the meeting created new deliverables or items, add them to the relevant workspace subdirectory
If no workspace match, file in the standard location per the document store routing.
6. Synthesize
Create a summary that captures:
- What happened (brief)
- What was decided
- What's next (actions)
- How it went (sentiment)
Output Format
**📋 Meeting Capture: [Meeting Name/Person]** ### [Date] **Attendees:** [Names] **Duration:** [Approximate] **Context:** [Brief — what was this meeting about?] ### 📝 Summary [2-3 sentence overview of what happened] ### 🔨 Decisions Made - [Decision] — decided by [who] - [Decision] ### ✅ Action Items **You:** - [ ] [Action] — by [date] - [ ] [Action] — by [date] **Them:** -
Terminal-based AI chief of staff. Remembers relationships, tracks commitments, helps you think strategically. Runs on Claude Code.
Repo: kbanc85/claudia
Other skills on claudia.
- /auto-research
Iteratively improve a local artifact (draft, document, page) by running a hill-climbing loop. The user names the artifact, the evaluator, and the budget. Claudia edits the artifact, scores it, keeps it if better or reverts if worse, repeats. Use when user says "iterate on this",
Open skill - /brain-monitor
Launch the Brain Monitor TUI, a real-time terminal dashboard for watching Claudia's memory system. Triggers on "brain monitor", "show dashboard", "memory dashboard", "terminal brain". See also: `brain` for a 3D graph view in the browser.
Open skill - /brain
Launch the Brain Visualizer, a real-time 3D view of memory and relationships. Triggers on "show your brain", "visualize memory", "open the brain", "memory graph". See also: `brain-monitor` for a terminal dashboard alternative.
Open skill - /build-team
Propose a personalized team of specialized agents based on the user's profile, goals, and how they actually work. Runs the proposal through an independent Checker, gates on the user's approval, and applies with rollback. Use when the user says "build my team", "set up my
Open skill - /client-health
Health check across active client engagements showing status, deliverables, and concerns. Triggers on "how are my clients?", "client status", "client health check".
Open skill - /databases
View all Claudia memory databases, switch between them, manage isolation. Triggers on "which database?", "switch workspace", "show databases", "list databases".
Open skill

