Gbrain briefing
Compile daily briefing with meeting context, active deals, and citation tracking
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/briefing" ~/.claude/skills/garrytan-gbrain-briefing && rm -rf "$T"
manifest:
skills/briefing/SKILL.mdsource content
Briefing Skill
Compile a daily briefing from brain context.
Filing rule: When the briefing creates or updates brain pages, follow
.skills/_brain-filing-rules.md
Contract
- Every fact in the briefing includes an inline
citation.[Source: slug, updated DATE] - Meeting participants are resolved against the brain; gaps are explicitly flagged.
- Active deals and action items include deadlines and recency context.
- The briefing is read-only: no brain pages are created or modified unless the user explicitly requests it.
- Stale alerts surface pages relevant to today's context, not just all stale pages.
Phases
- Today's meetings. For each meeting on the calendar:
- Search gbrain for each participant by name
- Read their pages from gbrain for compiled_truth context
- Summarize: who they are, recent timeline, relationship to you
- Active deals. List deal pages in gbrain filtered to active status:
- Deadlines approaching in the next 7 days
- Recent timeline entries (last 7 days)
- Time-sensitive threads. Open items from timeline entries:
- Items with deadlines in the next 48 hours
- Follow-ups that are overdue
- Recent changes. Pages updated in the last 24 hours:
- What changed and why (read timeline entries from gbrain)
- People in play. List person pages in gbrain sorted by recency:
- Updated in last 7 days
- Have high activity (many recent timeline entries)
- Stale alerts. From gbrain health check:
- Pages flagged as stale that are relevant to today's meetings
GBrain-Native Context Loading
Before generating any briefing, load context from gbrain systematically.
Before a meeting
For every attendee on the calendar invite:
-- find their brain pagegbrain search "<attendee name>"
-- load compiled truth, recent timeline, relationship contextgbrain get <slug>- If no page exists, note the gap ("No brain page for Sarah Chen -- consider enrichment")
Before an email reply
Before drafting or triaging any email:
-- load sender contextgbrain search "<sender name>"- Read their compiled truth to understand who they are, what they care about, and your relationship history. This turns a cold reply into an informed one.
Daily briefing queries
Run these queries to populate the briefing sections:
-- deal pipeline snapshotgbrain query "active deals status"
-- recent meeting pages with insightsgbrain query "meetings this week"
-- open threads and action itemsgbrain query "pending commitments follow-ups"
-- people in playgbrain search --type person --sort updated --limit 10
Output Format
DAILY BRIEFING -- [date] ======================== MEETINGS TODAY - [time] [meeting name] Participants: [name] (slug: people/name, [key context]) ACTIVE DEALS - [deal name] -- [status], deadline: [date] Recent: [latest timeline entry] ACTION ITEMS - [item] -- due [date], related to [slug] RECENT CHANGES (24h) - [slug] -- [what changed] PEOPLE IN PLAY - [name] -- [why they're active]
Back-Linking During Briefing
If the briefing creates or updates any brain pages (e.g., new meeting prep pages, updated entity pages), the back-linking iron law applies: every entity mentioned must have a back-link from their page. See
skills/_brain-filing-rules.md.
Citation in Briefings
When presenting facts from brain pages, include inline citations:
- "Jane is CTO of Acme [Source: people/jane-doe, updated 2026-04-01]"
- This lets the user trace any claim back to the brain page and assess freshness
Anti-Patterns
- Briefing without brain queries. Never generate a briefing from memory alone; always query gbrain for current data.
- Uncited facts. Every claim must include
. A fact without a citation is unverifiable.[Source: slug, updated DATE] - Stale context presented as current. If a page hasn't been updated in 30+ days, flag the staleness explicitly rather than presenting it as fresh.
- Modifying brain pages unprompted. The briefing is read-only by default. Do not create or update pages unless the user explicitly requests it.
- Ignoring coverage gaps. When a meeting participant has no brain page, say so. Silence about gaps hides ignorance.
Tools Used
- Search gbrain by name (query)
- Read a page from gbrain (get_page)
- List pages in gbrain by type (list_pages)
- Check gbrain health (get_health)
- View timeline entries in gbrain (get_timeline)