Granola Meeting Transcripts技能使用说明
2026-04-01
新闻来源:网淘吧
围观:26
电脑广告
手机广告
格兰诺拉
访问格兰诺拉会议转录文本、摘要和笔记。
设置
格兰诺拉将会议存储在云端。要在本地访问它们:

- 安装依赖项:
pip install requests
- 运行初始同步:
python ~/path/to/clawdbot/skills/granola/scripts/sync.py ~/granola-meetings
- 通过clawdbot cron设置自动同步:
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
}
}
})
同步脚本从以下位置读取认证信息~/Library/Application Support/Granola/supabase.json(在macOS上登录格兰诺拉时创建)。
数据结构
同步后,每个会议都是一个文件夹:
~/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)
快捷命令
列出近期会议:
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
按标题搜索:
grep -l "client name" ~/granola-meetings/*/metadata.json | while read f; do
jq -r '.title' "$f"
done
搜索转录文本内容:
grep -ri "keyword" ~/granola-meetings/*/transcript.md
特定日期的会议:
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
注意事项
- 同步需要格兰诺拉桌面应用处于登录状态(以获取认证令牌)
- 令牌约6小时后过期;打开格兰诺拉应用以刷新令牌
- 仅限macOS(认证文件路径是macOS特有的)
- 对于多机设置,在一台机器上进行同步,然后使用rsync将文件夹同步到其他机器
文章底部电脑广告
手机广告位-内容正文底部
上一篇:Prompt Safe技能使用说明
下一篇:Asana (PAT)技能使用说明


微信扫一扫,打赏作者吧~