meeting-context
Original:🇺🇸 English
Translated
Use when the user asks about meetings, meeting history, decisions made in meetings, action items from discussions, or what was discussed. Triggers on phrases like "what was decided", "meeting about", "action items from", "what happened in the meeting", "meeting notes", "transcript", "who attended", or when needing context from past conversations and discussions.
9installs
Sourcegleanwork/claude-plugins
Added on
NPX Install
npx skill4agent add gleanwork/claude-plugins meeting-contextTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Meeting Context via Glean
When users need information from meetings - past discussions, decisions, action items, or transcripts - use Glean's meeting lookup.
Tool Naming
See the skill for Glean MCP tool naming conventions. Tools follow the pattern where the server name is dynamic. Use whatever Glean server is available in your tool list.
glean-tools-guidemcp__glean_[server-name]__[tool]When This Applies
Use this approach when users ask:
- "What was decided in the [topic] meeting?"
- "What action items came out of [meeting]?"
- "When did we discuss [topic]?"
- "What meetings did I miss [time period]?"
- "Who attended [meeting]?"
- "What was said about [topic] in recent meetings?"
Primary Tool
Use the Glean tool with natural language queries.
meeting_lookupQuery Syntax
Important: meeting_lookup works best with natural language queries. Date filter syntax does NOT work reliably.
# By topic and time (natural language)
meeting_lookup "quarterly planning last week"
# With specific participants
meeting_lookup "standup with John Smith"
meeting_lookup "participants:\"John Smith\" topic:\"standup\""
# Get transcript content
meeting_lookup "team sync last week extract_transcript:\"true\""
# Today's meetings
meeting_lookup "my meetings today"
# Past week
meeting_lookup "meetings past week"Date Filtering
Use natural language for dates:
- "last week", "past 2 weeks", "yesterday", "today", "tomorrow"
- "meetings since Monday", "standups this month"
Inline date filters do NOT work reliably:
- - Date math is ignored
after:now-1w - - ISO dates return no results
after:YYYY-MM-DD - - Simple keywords don't work as filter values
after:yesterday
Filters that do work:
- - Filter by attendees
participants:"name" - - Filter by meeting topic
topic:"subject" - - Include transcript content
extract_transcript:"true"
When to Extract Transcripts
Add when you need:
extract_transcript:"true"- Specific quotes or statements
- Detailed discussion content
- Action item context
- Decision rationale
Skip transcripts for:
- Just listing meetings
- Checking attendees
- Quick time/date lookup
What to Extract from Meetings
When analyzing meeting content, focus on:
- Decisions made - What was agreed? By whom?
- Action items - Tasks assigned, owners, deadlines
- Open questions - Unresolved items
- Key discussion points - Important debates or context
Relationship to Commands
For comprehensive meeting workflows, suggest:
- - Prepare for an upcoming meeting
/glean-meetings:meeting-prep <meeting> - - Catch up on missed meetings and more
/glean-meetings:catch-up <period>