granola
Original:🇺🇸 English
Translated
11 scripts
This skill should be used when importing, listing, or exporting Granola meeting recordings and transcripts. Queries Granola's local cache and API to list meetings, extract transcripts, and export to Obsidian notes in Fathom-compatible format.
2installs
Sourceglebis/claude-skills
Added on
NPX Install
npx skill4agent add glebis/claude-skills granolaTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Granola Meeting Importer
Query Granola's local data (cache + API) to list meetings, view transcripts, and export to Obsidian vault in the same format as the Fathom skill.
Prerequisites
- Granola desktop app installed and authenticated (macOS)
- No additional dependencies required (uses stdlib only)
Usage
bash
python3 ~/.claude/skills/granola/scripts/granola.py <command> [options]Commands
| Command | Description |
|---|---|
| List all meetings from local cache |
| Show meeting details (by ID prefix or title substring) |
| Get transcript (local cache, falls back to API) |
| Export meeting to Obsidian note (Fathom-compatible format) |
| List meetings via Granola API (may show more than cache) |
Options
| Option | Applies to | Description |
|---|---|---|
| list, transcript | Output format (default: text) |
| transcript, export | Skip API fallback, use only cached data |
| export | Obsidian vault path (default: ~/Brains/brain) |
| export | Custom output file path |
| api-list | Max results (default: 50) |
| api-list | Pagination offset |
Examples
List meetings
bash
python3 ~/.claude/skills/granola/scripts/granola.py list
python3 ~/.claude/skills/granola/scripts/granola.py list --format jsonExport to Obsidian
bash
python3 ~/.claude/skills/granola/scripts/granola.py export bbeba240
python3 ~/.claude/skills/granola/scripts/granola.py export "Подкаст"Get transcript
bash
python3 ~/.claude/skills/granola/scripts/granola.py transcript bbeba240
python3 ~/.claude/skills/granola/scripts/granola.py transcript "Подкаст" --format jsonOutput Format
Exported notes match Fathom skill format for consistency:
markdown
---
granola_id: <uuid>
title: "Meeting Title"
date: YYYY-MM-DD
participants: ['Name 1', 'Name 2']
duration: HH:MM
source: granola
---
# Meeting Title
## Summary
{AI-generated summary if available}
## Notes
{Markdown notes if available}
## Transcript
**Speaker Name**: What they said...Files saved as:
YYYYMMDD-meeting-title-slug.mdData Sources
The script reads from two local sources:
- Cache file: (currently v6) -- metadata for all meetings, transcripts for active/recent meetings only. The script auto-detects the latest version.
~/Library/Application Support/Granola/cache-v*.json - API token: -- WorkOS bearer token for API calls (auto-refreshed when app is open, ~6h expiry)
~/Library/Application Support/Granola/supabase.json
See for full schema documentation.
references/cache-structure.mdKnown Limitations
- Transcript content is sparse in cache -- only the most recent/active meeting typically has a full transcript locally. Older ones require API fetch.
- No per-utterance speaker names -- Granola only provides (microphone vs system audio). The export assigns the meeting creator to microphone utterances and "Other" to system audio.
source - Notes/summaries often empty -- Granola stores rich content server-side; the local cache has stubs. The API also returns empty for personal (non-workspace) docs.
- Token expiry -- if the Granola app hasn't been open recently, the token may be expired. Open the app to refresh.
Integration
- transcript-analyzer: After export, run transcript-analyzer on the output file for deeper analysis
- Fathom skill: Granola exports use the same frontmatter and transcript format as Fathom exports, so downstream tools work with both