← 返回 Skills 市场
scald

Granola Meeting Transcripts

作者 scald · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
2252
总下载
3
收藏
8
当前安装
1
版本数
在 OpenClaw 中安装
/install granola
功能描述
Access Granola meeting transcripts and notes.
使用说明 (SKILL.md)

granola

Access Granola meeting transcripts, summaries, and notes.

Setup

Granola stores meetings in the cloud. To access them locally:

  1. Install dependencies:
pip install requests
  1. Run initial sync:
python ~/path/to/clawdbot/skills/granola/scripts/sync.py ~/granola-meetings
  1. Set up automatic sync via 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
    }
  }
})

The sync script reads auth from ~/Library/Application Support/Granola/supabase.json (created when you sign into Granola on macOS).

Data Structure

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)

Quick Commands

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

Notes

  • Sync requires the Granola desktop app to be signed in (for auth tokens)
  • Tokens expire after ~6 hours; open Granola to refresh them
  • macOS only (auth file path is macOS-specific)
  • For multi-machine setups, sync on one machine and rsync the folder to others
安全使用建议
This skill appears to do what it says (sync Granola meetings), but it reads a macOS auth file (~/Library/Application Support/Granola/supabase.json) that contains tokens. Before installing or scheduling the cron job: (1) open and review scripts/sync.py to confirm it only calls Granola/Supabase endpoints and does not exfiltrate data to unknown hosts; (2) ensure you are comfortable with the script having read access to supabase.json (back up and inspect that file first); (3) prefer running the script manually once to observe network activity, or run it in a restricted environment; (4) ask the publisher to update the manifest to declare the required config path/credentials and to document exactly which endpoints the script contacts. If you cannot inspect the script or get clarification, treat this as higher-risk and avoid installing or scheduling automatic sync.
功能分析
Type: OpenClaw Skill Name: granola Version: 1.0.0 The skill is designed to sync Granola meeting data locally. It reads authentication tokens from `~/Library/Application Support/Granola/supabase.json` (Granola's own auth file) and connects exclusively to `api.granola.ai` to fetch meeting data, which it then saves to a user-specified local directory. The `SKILL.md` instructs the agent to set up a `clawdbot_cron` job to periodically run the sync script, which is a form of persistence but directly aligned with the skill's stated purpose of keeping meeting data up-to-date. There is no evidence of data exfiltration to unauthorized endpoints, malicious execution, or prompt injection attempting to subvert the agent's behavior beyond its stated function.
能力评估
Purpose & Capability
The name/description (Granola meeting transcripts) align with the instructions to call a sync script and store meetings locally. However, the skill implicitly requires the Granola auth file at a macOS-specific path (~/Library/Application Support/Granola/supabase.json) even though the registry metadata lists no required config paths or credentials — that mismatch is noteworthy.
Instruction Scope
SKILL.md explicitly instructs running scripts/sync.py and reading a local supabase.json auth file. Reading that auth file is within the apparent purpose (to authenticate to Granola), but the instructions do not declare this config dependency in the manifest and do not show what the sync script does with the tokens (where it sends API requests, error handling, logging, or whether any data is forwarded elsewhere).
Install Mechanism
No install spec (instruction-only) — lowest install risk. SKILL.md asks the user to pip install 'requests' and run the provided Python script; that is a low-risk, typical dependency request. There is no remote download or archive extraction in the manifest.
Credentials
The skill requires access to a local auth file containing tokens but the manifest declares no required env vars or config paths. Access to a supabase.json with auth tokens is sensitive and should have been declared; the absence of declared credentials/config paths makes it unclear what secrets will be read and how they are used.
Persistence & Privilege
The skill itself is not marked 'always' and model invocation is not disabled. SKILL.md recommends setting up an automated clawdbot_cron job to run the sync periodically — that is a user-configured persistence mechanism (manual action by the user) rather than an implicit skill-level privilege, but it does increase how often the machine and tokens will be accessed if installed.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install granola
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /granola 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the Granola skill. - Provides local access to Granola meeting transcripts, notes, and summaries. - Includes setup instructions for dependency installation, manual sync, and automated sync using clawdbot cron. - Describes the local data structure after syncing meetings. - Offers bash commands for listing, searching, and filtering meetings. - Notes macOS authentication requirement and token refresh details.
元数据
Slug granola
版本 1.0.0
许可证
累计安装 8
当前安装数 8
历史版本数 1
常见问题

Granola Meeting Transcripts 是什么?

Access Granola meeting transcripts and notes. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2252 次。

如何安装 Granola Meeting Transcripts?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install granola」即可一键安装,无需额外配置。

Granola Meeting Transcripts 是免费的吗?

是的,Granola Meeting Transcripts 完全免费(开源免费),可自由下载、安装和使用。

Granola Meeting Transcripts 支持哪些平台?

Granola Meeting Transcripts 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Granola Meeting Transcripts?

由 scald(@scald)开发并维护,当前版本 v1.0.0。

💬 留言讨论