granola — community granola, claude-code-obsidian-starter, community, ide skills

v1.0.0

Über diesen Skill

Perfect for Local Data Analysis Agents needing direct access to meeting notes and transcripts. Query and sync Granola meetings to Obsidian vault. Use when user mentions Granola, meeting transcripts, or wants to sync meeting notes. Reads from local cache - no API needed.

ArtemXTech ArtemXTech
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
9/11
Quality Score
57
Canonical Locale
en
Detected Body Locale
en

Perfect for Local Data Analysis Agents needing direct access to meeting notes and transcripts. Query and sync Granola meetings to Obsidian vault. Use when user mentions Granola, meeting transcripts, or wants to sync meeting notes. Reads from local cache - no API needed.

Warum diese Fähigkeit verwenden

Empowers agents to query and sync Granola meeting notes to Obsidian vaults using Python scripts, leveraging local cache files like `cache-v3.json` for real-time updates and transcripts with timestamps.

Am besten geeignet für

Perfect for Local Data Analysis Agents needing direct access to meeting notes and transcripts.

Handlungsfähige Anwendungsfälle for granola

Syncing meeting notes to Obsidian vaults for project management
Analyzing real-time transcripts with timestamps for conversation insights
Automating updates from local Granola cache for team collaboration

! Sicherheit & Einschränkungen

  • Requires local access to Granola cache files
  • No API calls, relies on direct local file reading
  • Python 3.x required for script execution

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is granola?

Perfect for Local Data Analysis Agents needing direct access to meeting notes and transcripts. Query and sync Granola meetings to Obsidian vault. Use when user mentions Granola, meeting transcripts, or wants to sync meeting notes. Reads from local cache - no API needed.

How do I install granola?

Run the command: npx killer-skills add ArtemXTech/claude-code-obsidian-starter. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for granola?

Key use cases include: Syncing meeting notes to Obsidian vaults for project management, Analyzing real-time transcripts with timestamps for conversation insights, Automating updates from local Granola cache for team collaboration.

Which IDEs are compatible with granola?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for granola?

Requires local access to Granola cache files. No API calls, relies on direct local file reading. Python 3.x required for script execution.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add ArtemXTech/claude-code-obsidian-starter. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use granola immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

granola

Install granola, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Granola Skill

Query and sync Granola AI meeting notes to Obsidian vault.

How It Works

Granola stores everything locally at ~/Library/Application Support/Granola/cache-v3.json:

  • Documents (meetings with title, notes, people)
  • Transcripts (real-time, with timestamps and source)
  • Updates in real-time as you record

No API calls needed - reads directly from local cache.

Quick Start

bash
1# List all meetings 2python3 .claude/skills/granola/scripts/granola.py list 3 4# Get specific meeting with transcript 5python3 .claude/skills/granola/scripts/granola.py get <id> 6 7# Sync new meetings to vault 8python3 .claude/skills/granola/scripts/granola.py sync 9 10# Sync specific meeting 11python3 .claude/skills/granola/scripts/granola.py sync --id <id>

Commands

list

List all Granola meetings with sync status.

bash
1python3 .claude/skills/granola/scripts/granola.py list 2python3 .claude/skills/granola/scripts/granola.py list --limit 5

Output:

[✓] 2026-01-09  Team Sync - Weekly
    ID: abc123...
    Transcript: 450 segments, ~86 min

[ ] 2026-01-10  Team Standup
    ID: def456...
    Transcript: 120 segments, ~15 min
  • [✓] = already synced to vault
  • [ ] = not synced yet

get

View full meeting details and transcript.

bash
1python3 .claude/skills/granola/scripts/granola.py get <id> 2python3 .claude/skills/granola/scripts/granola.py get <id> --no-transcript

sync

Sync meetings to Meetings/ as structured Markdown.

bash
1# Sync new meetings only 2python3 .claude/skills/granola/scripts/granola.py sync 3 4# Sync specific meeting 5python3 .claude/skills/granola/scripts/granola.py sync --id <id> 6 7# Re-sync all (overwrites existing) 8python3 .claude/skills/granola/scripts/granola.py sync --all

Output Format

Synced meetings are saved to Meetings/ with this structure:

markdown
1--- 2type: granola-meeting 3date: 2026-01-09 4time: "19:30" 5duration_min: 86 6granola_id: abc123... 7people: 8 - "[[Sarah Chen]]" 9topics: [] 10status: raw 11--- 12 13# Meeting Title 14 15## Notes 16 17(Your notes from Granola) 18 19## Transcript 20 21[19:30:45] 🎤 Hey, how's it going? 22[19:30:48] 🎤 Great to meet you...

Transcript icons:

  • 🎤 = microphone (you)
  • 🔊 = system audio (others on call)

Workflow

  1. Record meeting in Granola (real-time transcription)
  2. Sync to vault: python3 .claude/skills/granola/scripts/granola.py sync
  3. Process meeting: Extract action items, update people notes
  4. Mark as processed: Change status: raw to status: processed

Querying with Bases

Use Granola.base to query synced meetings:

ViewFilter
RecentLast 7 days
Needs Processingstatus = raw
By PersonGrouped by people field

Data Structure

Local cache: ~/Library/Application Support/Granola/cache-v3.json

cache (JSON string) → state →
  ├── documents: {id: {title, notes_plain, notes_markdown, people, created_at}}
  └── transcripts: {id: [{text, source, start_timestamp, end_timestamp}]}

Transcript segment:

json
1{ 2 "text": "Hey, how's it going?", 3 "source": "microphone", 4 "start_timestamp": "2026-01-09T19:30:45.123Z", 5 "end_timestamp": "2026-01-09T19:30:48.456Z" 6}

Tips

  • Real-time access: Cache updates as you record - can query mid-meeting
  • Free tier hack: Sync hourly to bypass 7-day history limit
  • No auth needed: Uses local files, not API

Verwandte Fähigkeiten

Looking for an alternative to granola or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Erzeugen Sie anpassbare Widget-Plugins für das Prompts.Chat-Feed-System

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Das React-Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensor und dynamische neuronale Netze in Python mit starker GPU-Beschleunigung

98.6k
0
Entwickler