glebis/granola
This skill should be used when importing, listing, or exporting Granola meeting recordings and transcripts. Queries Granola's Personal API to list meetings, extract transcripts, and export to Obsidian notes in Fathom-compatible format.
npx skills add https://github.com/glebis/claude-skills --skill granola
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: Sessions/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/exportTake glebis/granola from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.