Pulls meeting recordings and transcripts from Granola's Personal API and exports them as Obsidian markdown files. You'll use this when you want your Granola meetings in the same format as Fathom exports, which means downstream analysis tools work with both. Three commands: list your meetings, show details with optional transcripts, and export to markdown with proper frontmatter. The catch is it only sees meetings after Granola finishes generating the AI summary, so nothing in progress. Requires a Business or Enterprise plan for API access, but once you've got that, it's just stdlib Python with your API key in a sops-encrypted env file.
npx -y skills add glebis/claude-skills --skill granola --agent claude-codeInstalls into .claude/skills of the current project.
Query Granola via Personal API to list notes, view transcripts, and export to Obsidian vault in the same format as the Fathom skill.
~/Brains/brain/.env.granola as GRANOLA_API_KEY=grn_...python3 ~/.claude/skills/granola/scripts/granola.py <command> [options]
| Command | Description |
|---|---|
list | List notes from Personal API |
show <note_id> | Show note details (summary, attendees, optionally transcript) |
export <note_id> | Export note to Obsidian markdown (Fathom-compatible format) |
| Option | Applies to | Description |
|---|---|---|
--format text|json | list, show | Output format (default: text) |
--after <ISO date> | list | Filter notes created after date |
--all | list | Paginate through all results |
--transcript | show | Include transcript in output |
--vault <path> | export | Obsidian vault path (default: ~/Brains/brain) |
--output <path> | export | Custom output file path |
python3 ~/.claude/skills/granola/scripts/granola.py list
python3 ~/.claude/skills/granola/scripts/granola.py list --format json
python3 ~/.claude/skills/granola/scripts/granola.py list --after 2026-05-01
python3 ~/.claude/skills/granola/scripts/granola.py show not_5FkswTp4Omkpm5
python3 ~/.claude/skills/granola/scripts/granola.py show not_5FkswTp4Omkpm5 --transcript --format json
python3 ~/.claude/skills/granola/scripts/granola.py export not_5FkswTp4Omkpm5
python3 ~/.claude/skills/granola/scripts/granola.py export not_5FkswTp4Omkpm5 --vault ~/Brains/brain
Exported notes match Fathom skill format for consistency:
---
granola_id: not_xxxx
title: "Meeting Title"
date: YYYY-MM-DD
participants: ['Name 1', 'Name 2']
duration: HH:MM
source: granola
---
# Meeting Title
## Summary
{AI-generated summary}
## Transcript
**Speaker Name**: What they said...
Files saved as: YYYYMMDD-meeting-title-slug.md
https://public-api.granola.ai/v1source (microphone vs speaker) and optional diarization_label. Export assigns meeting owner to microphone utteranceslist first to get not_xxxx IDs, then show/exportjuliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills