Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

granola-data-handling格兰诺拉麦片数据处理

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

517

周安装

22

GitHub Stars

2,096

下载量

181
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:granola-data-handling(格兰诺拉麦片数据处理)
来源仓库:https://github.com/jeremylongshore/claude-code-plugins-plus-skills
仓库路径:skills/granola-data-handling
安装命令:
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill granola-data-handling
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill granola-data-handling

简介

granola-data-handling 用于辅助数据整理、表格处理和指标计算,支持 CSV/Excel 分析。

  • 适合清洗字段、汇总数据、发现异常或生成统计口径等数据处理场景。
  • 通过 npx skills add 从 GitHub 仓库安装并使用。
  • 使用时需确认数据来源、字段含义和时间范围,避免误用样本当全量。
  • 涉及敏感数据导出时应先确认脱敏方式和权限边界。

SKILL.md

Granola Data Handling

Overview

Manage data lifecycle for Granola meeting data: export, retention policies, GDPR/CCPA compliance, and long-term archival. Covers individual data rights, organizational policies, and automated archival workflows.

Prerequisites

  • Granola admin access (for retention policies)
  • Understanding of applicable regulations (GDPR, CCPA, SOC 2)
  • Export destination prepared (cloud storage, Notion, local)

Instructions

Step 1 — Understand Data Types and Sensitivity

Data TypeWhat It ContainsSensitivityStorage
Meeting NotesYour typed notes + AI-enhanced outputMediumGranola cloud + local cache
TranscriptsFull text transcription of audioHigh (verbatim speech)Granola cloud + local cache
AudioRaw meeting audioCriticalDeleted after transcription (not stored)
Attendee InfoNames, emails from calendar eventsPIIGranola cloud (People & Companies)
Calendar MetadataEvent titles, times, attendee listsLow-MediumSynced from Google/Outlook

Key fact: Granola does not store raw audio after transcription. This is a significant privacy advantage — there is no audio file to leak, export, or subpoena.

Step 2 — Export Meeting Data

Individual note export:

  1. Open the meeting note in Granola
  2. Click the ... menu > Copy (copies as Markdown)
  3. Paste into your target: Notion, Google Doc, text editor

Important limitation: Granola does not currently support bulk export, PDF export, or structured file download (JSON/CSV). The available options are:

  • Copy individual notes as text/Markdown
  • Share to Notion (one note at a time via native integration)
  • Share to Slack (one note at a time)
  • Enterprise API (read-only access to workspace notes)

Workaround for bulk access — local cache:

#!/usr/bin/env python3
"""Export Granola meetings from local cache to Markdown files."""
import json
from pathlib import Path
from datetime import datetime

CACHE_PATH = Path.home() / "Library/Application Support/Granola/cache-v3.json"
OUTPUT_DIR = Path.home() / "Desktop/granola-export"
OUTPUT_DIR.mkdir(exist_ok=True)

def export_from_cache():
    raw = json.loads(CACHE_PATH.read_text())
    state = json.loads(raw) if isinstance(raw, str) else raw
    data = state.get("state", state)
    docs = data.get("documents", {})

    exported = 0
    for doc_id, doc in docs.items():
        title = doc.get("title", "Untitled").replace("/", "-")
        created = doc.get("created_at", "unknown")[:10]
        content = doc.get("last_viewed_panel", {})

        # Extract text from ProseMirror content (simplified)
        text_parts = []
        if isinstance(content, dict):
            for node in content.get("content", []):
                if node.get("type") == "paragraph":
                    for child in node.get("content", []):
                        text_parts.append(child.get("text", ""))
                elif node.get("type") == "heading":
                    level = node.get("attrs", {}).get("level", 1)
                    prefix = "#" * level
                    for child in node.get("content", []):
                        text_parts.append(f"\n{prefix} {child.get('text', '')}\n")

        filename = f"{created}_{title[:60]}.md"
        filepath = OUTPUT_DIR / filename
        filepath.write_text(f"# {title}\n\nDate: {created}\n\n{''.join(text_parts)}")
        exported += 1

    print(f"Exported {exported} meetings to {OUTPUT_DIR}")

export_from_cache()

Enterprise API export:

# List all accessible notes (Enterprise plan required)
curl -s "https://api.granola.ai/v0/notes" \
  -H "Authorization: Bearer $GRANOLA_API_KEY" \
  -H "Content-Type: application/json" | python3 -c "
import json, sys
notes = json.load(sys.stdin).get('notes', [])
for note in notes[:10]:
    print(f\"{note.get('id', 'N/A')}: {note.get('title', 'Untitled')} ({note.get('created_at', 'N/A')})\")
print(f'Total accessible notes: {len(notes)}')
"

Step 3 — Configure Retention Policies

Settings > Data Retention (Business/Enterprise):

Data TypeRecommended RetentionRationale
Meeting notes1-2 yearsLong-term reference value
Transcripts90 daysStorage efficiency, lower PII risk
AudioDeleted after processingGranola default, not configurable
Attendee infoRetained with notesNeeded for People & Companies CRM

Per-workspace overrides (Enterprise):

  • HR workspace: 90-day notes, 30-day transcripts
  • Executive workspace: Custom (legal hold capable)
  • Sales workspace: 1-year notes, 90-day transcripts
  • Engineering workspace: 2-year notes, 90-day transcripts

Step 4 — GDPR Compliance

Required controls:

GDPR RightGranola Implementation
Right of Access (Art. 15)Export user's data via Settings > Data > Export or Enterprise API
Right to Erasure (Art. 17)Delete individual notes; request account deletion from Granola
Right to Data Portability (Art. 20)Copy notes as text, or use local cache export
Right to Object (Art. 21)AI training opt-out (Business/Enterprise)
Lawful BasisConsent (recording notice) or Legitimate Interest (employer's business ops)

Subject Access Request (SAR) handling:

## SAR Response Procedure

1. Receive SAR from data subject (30-day response deadline)
2. Verify identity of the requester
3. Search Granola for all notes containing the requester
   - People view: search by name/email
   - Enterprise API: query notes by attendee email
4. Export relevant notes (copy as text)
5. Redact third-party PII from the export
6. Deliver export to requester within 30 days
7. Document the SAR and response in compliance log

Data Processing Agreement:

  • Request DPA from Granola at security@granola.ai or via Settings
  • Required for any organization processing EU personal data
  • DPA covers Granola as a Data Processor

Step 5 — CCPA Compliance

For California consumer data:

  • Disclosure: Update your privacy policy to mention Granola as a meeting recording tool
  • Opt-out: Provide mechanism for meeting participants to opt out of recording
  • Deletion: Honor deletion requests by removing notes containing the individual

Step 6 — Archival Workflow

For long-term retention beyond Granola:

# Monthly archival via Zapier
Trigger: Schedule by Zapier — 1st of month

Step 1 — Granola: List notes from past month
  (via Enterprise API or folder trigger accumulation)

Step 2 — Google Drive: Create folder
  Name: "Meeting Archives / YYYY-MM"

Step 3 — Google Drive: Upload files
  Content: Note markdown for each meeting

Step 4 — Slack: Notify admin
  Message: "Monthly meeting archive created: X notes archived"

Alternative: local cache backup

# Backup local cache monthly
BACKUP_DIR="$HOME/backups/granola"
mkdir -p "$BACKUP_DIR"
cp "$HOME/Library/Application Support/Granola/cache-v3.json" \
   "$BACKUP_DIR/cache-v3-$(date +%Y%m%d).json"
echo "Granola cache backed up"

Output

  • Data export procedures documented and tested
  • Retention policies configured per workspace and data type
  • GDPR/CCPA compliance controls implemented
  • SAR handling procedure established
  • Archival workflow automated (monthly)

Error Handling

ErrorCauseFix
Cannot export notesNo bulk export featureUse local cache export script or Enterprise API
SAR deadline at riskNo process ownerAssign dedicated compliance contact
Retention policy not appliedEnterprise feature requiredUpgrade to Enterprise, or manually manage
Archive missing notesCache didn't contain all notesUse Enterprise API for complete workspace data
Deletion incompleteBackup retention periodAllow 30 days for Granola to purge from all backups

Resources

Next Steps

Proceed to granola-enterprise-rbac for role-based access control configuration.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.08%
按下载量换算63

Claude

27.55%
按下载量换算50

Cursor

18.17%
按下载量换算33

Gemini CLI

10.07%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills