Access Granola meeting transcripts and notes.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install granola或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install granola⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/granola/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: granola description: Access Granola meeting transcripts and notes. homepage: https://granola.ai metadata: {"clawdbot":{"emoji":"🥣","requires":{"bins":["python3"]}}} ---
Access Granola meeting transcripts, summaries, and notes.
Granola stores meetings in the cloud. To access them locally:
pip install requests
python ~/path/to/clawdbot/skills/granola/scripts/sync.py ~/granola-meetings
clawdbot_cron({
action: "add",
job: {
name: "Granola Sync",
description: "Sync Granola meetings to local disk",
schedule: { kind: "cron", expr: "0 */6 * * *", tz: "America/New_York" },
sessionTarget: "isolated",
wakeMode: "now",
payload: {
kind: "agentTurn",
message: "Run the Granola sync: python {skillsDir}/granola/scripts/sync.py ~/granola-meetings",
deliver: false
}
}
})
The sync script reads auth from ~/Library/Application Support/Granola/supabase.json (created when you sign into Granola on macOS).
After sync, each meeting is a folder:
~/granola-meetings/
{meeting-id}/
metadata.json - title, date, attendees
transcript.md - formatted transcript
transcript.json - raw transcript data
document.json - full API response
notes.md - AI summary (if available)
List recent meetings:
for d in $(ls -t ~/granola-meetings | head -10); do
jq -r '"\(.created_at[0:10]) | \(.title)"' ~/granola-meetings/$d/metadata.json 2>/dev/null
done
Search by title:
grep -l "client name" ~/granola-meetings/*/metadata.json | while read f; do
jq -r '.title' "$f"
done
Search transcript content:
grep -ri "keyword" ~/granola-meetings/*/transcript.md
Meetings on a specific date:
for d in ~/granola-meetings/*/metadata.json; do
if jq -e '.created_at | startswith("2026-01-03")' "$d" > /dev/null 2>&1; then
jq -r '.title' "$d"
fi
done
安装 Granola Meeting Transcripts 后,可以对 AI 说这些话来触发它
Help me get started with Granola Meeting Transcripts
Explains what Granola Meeting Transcripts does, walks through the setup, and runs a quick demo based on your current project
Use Granola Meeting Transcripts to access Granola meeting transcripts and notes
Invokes Granola Meeting Transcripts with the right parameters and returns the result directly in the conversation
What can I do with Granola Meeting Transcripts in my documents & notes workflow?
Lists the top use cases for Granola Meeting Transcripts, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/granola/ 目录(个人级,所有项目可用),或 .claude/skills/granola/(项目级)。重启 AI 客户端后,用 /granola 主动调用,或让 AI 根据上下文自动发现并使用。
Granola Meeting Transcripts 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Granola Meeting Transcripts 可免费安装使用。请查阅仓库了解许可证信息。
Access Granola meeting transcripts and notes.
Granola Meeting Transcripts 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my documents & notes tasks using Granola Meeting Transcripts
Identifies repetitive steps in your workflow and sets up Granola Meeting Transcripts to handle them automatically