Gbrain meeting-ingestion
install
source · Clone the upstream repo
git clone https://github.com/garrytan/gbrain
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/garrytan/gbrain "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/meeting-ingestion" ~/.claude/skills/garrytan-gbrain-meeting-ingestion && rm -rf "$T"
manifest:
skills/meeting-ingestion/SKILL.mdsource content
Meeting Ingestion Skill
Filing rule: Read
before creating any new page.skills/_brain-filing-rules.md
Contract
This skill guarantees:
- Meeting page created with attendees, summary, key decisions, action items
- EVERY attendee gets a people page (created or updated)
- EVERY company discussed gets entity propagation
- Timeline entries on ALL mentioned entities (timeline merge)
- Meeting is NOT fully ingested until enrich runs for every entity
- Back-links created bidirectionally
Iron Law: Back-Linking (MANDATORY)
Every attendee and company mentioned MUST get a back-link from their page to the meeting page. An unlinked mention is a broken brain.
Phases
Phase 1: Parse the transcript
Extract from the transcript:
- Attendees (names, roles if available)
- Date, time, duration
- Key topics discussed
- Decisions made
- Action items with owners
- Companies and projects mentioned
Phase 2: Create meeting page
# {Meeting Title} — {Date} **Attendees:** {list with links to people pages} **Date:** {YYYY-MM-DD} **Duration:** {if available} ## Summary {3-5 bullet key outcomes} ## Key Decisions {Decisions with context} ## Action Items {Tasks with owners and deadlines} ## Discussion Notes {Structured notes by topic}
Phase 3: Attendee enrichment (MANDATORY)
For EACH attendee:
— does a people page exist?gbrain search "{name}"- If NO → create via enrich skill (this is mandatory, not optional)
- If YES → update compiled truth with meeting context
- Add timeline entry on the person's page:
gbrain timeline-add <person-slug> <date> "Attended <meeting-title>"
Note (v0.10.1): Once the meeting page is written via
gbrain put, the
auto-link post-hook automatically creates attended links from the meeting
to each attendee whose page is referenced as [Name](people/slug). You don't
need to call gbrain link for attendees. You DO still need gbrain timeline-add
for dated events (auto-link only handles links, not timeline entries).
Phase 4: Entity propagation (MANDATORY)
For each company, project, or concept discussed:
- Check brain for existing page
- Create/update as needed
- Add timeline entry referencing the meeting
- Back-link from entity page to meeting page
Phase 5: Timeline merge
The same event appears on ALL mentioned entities' timelines. If Alice met Bob at Acme Corp, the event goes on Alice's page, Bob's page, AND Acme Corp's page.
Phase 6: Sync
gbrain sync to update the index.
Output Format
Meeting page created. Report: "Meeting ingested: {N} attendees enriched, {N} entities updated, {N} action items captured."
Anti-Patterns
- Creating the meeting page without enriching attendees
- Skipping entity propagation ("I'll do that later")
- Not merging timelines across all mentioned entities
- Creating attendee stubs without meaningful content
- Filing meeting pages without cross-linking to all participants