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

granola-migration-deep-dive格兰诺拉麦片迁移深入研究

Agent Skill

granola-migration-deep-dive 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

517

周安装

22

GitHub Stars

2,124

下载量

181
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill granola-migration-deep-dive

简介

granola-migration-deep-dive 用于查找、检索和筛选相关信息,支持基于关键词快速定位内容。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的研究检索场景。
  • 通过 npx skills add 从 GitHub 仓库安装并使用。
  • 安装前应确认权限范围、维护状态及是否触发联网或文件读写。
  • 建议结合原始 README 继续核验具体用法和功能边界。

SKILL.md

Granola Migration Deep Dive

Overview

Comprehensive guide for migrating to Granola from competing meeting note tools. Covers source-specific export procedures, historical data preservation, parallel-run strategy, team transition, and cutover execution. Granola's key differentiator — no bot joins meetings — means the migration also changes the user experience fundamentally.

Prerequisites

  • Access to source tool with export capability
  • Granola workspace configured (see granola-install-auth)
  • Migration timeline agreed with stakeholders
  • Budget approved for Granola licenses

Instructions

Step 1 — Assess Migration Scope

## Migration Assessment

Source tool: [Otter.ai / Fireflies / Fathom / tl;dv / Manual / Other]
Total meetings in source: [____]
Date range: [____] to [____]
Active users to migrate: [____]
Integrations to recreate: [Slack, Notion, CRM, etc.]
Historical data priority: [Archive all / Selective / Fresh start]
Target cutover date: [____]
Parallel run duration: [1 week / 2 weeks]

Step 2 — Source-Specific Export

From Otter.ai

  • Export format: TXT, SRT (subtitles), PDF
  • Bulk export: Otter Pro/Business: Settings > Export > Download All
  • Limitations: Free plan only exports individual notes
  • Key data: Transcripts with timestamps, speaker labels, action items

From Fireflies.ai

  • Export format: TXT, JSON, PDF, SRT
  • Bulk export: Admin > Data Management > Export
  • Limitations: Custom fields may not export
  • Key data: Transcripts, AI summaries, custom topics

From Fathom

  • Export format: Markdown, CSV, video clips
  • Bulk export: Settings > Data > Export All
  • Limitations: Video clips don't transfer
  • Key data: Meeting summaries, action items, highlights

From tl;dv

  • Export format: TXT, video recordings
  • Bulk export: Settings > Data Export
  • Limitations: AI highlights may not transfer
  • Key data: Transcripts, timestamps, meeting recordings

From Manual Notes (Google Docs, Notion, Confluence)

  • Already in accessible format
  • No export needed — archive in place
  • Focus on establishing the Granola workflow going forward

Step 3 — Choose Migration Strategy

StrategyWhen to UseData HandlingEffort
Fresh Start<100 historical meetings, or meetings have low reference valueArchive source data externally, start fresh in GranolaLow
Selective Migration100-1000 meetings, some have ongoing reference valueExport key meetings (client calls, decisions, contracts)Medium
Full ArchiveEnterprise with compliance requirements, everything must be searchableExport all data, archive in Notion/Drive/cloud storageHigh

Recommended for most teams: Fresh Start or Selective. Granola doesn't import historical data from other tools — there's no import feature. Historical data lives in your archive (Notion, Google Drive, local files).

Step 4 — Archive Historical Data

For important historical meetings, archive before cutting over:

#!/usr/bin/env python3
"""Organize exported meeting notes for archival."""
import os
from pathlib import Path

EXPORT_DIR = Path("~/Downloads/otter-export").expanduser()  # Adjust for your source
ARCHIVE_DIR = Path("~/Documents/meeting-archive").expanduser()

# Create organized archive structure
categories = {
    "client": ["client", "customer", "deal", "sales", "demo"],
    "engineering": ["sprint", "standup", "architecture", "review", "retro"],
    "product": ["product", "prd", "design", "feedback", "roadmap"],
    "leadership": ["all-hands", "board", "strategy", "planning"],
    "general": [],  # catch-all
}

ARCHIVE_DIR.mkdir(parents=True, exist_ok=True)
for cat in categories:
    (ARCHIVE_DIR / cat).mkdir(exist_ok=True)

for file in EXPORT_DIR.glob("*.txt"):
    filename_lower = file.name.lower()
    placed = False
    for cat, keywords in categories.items():
        if any(kw in filename_lower for kw in keywords):
            dest = ARCHIVE_DIR / cat / file.name
            file.rename(dest)
            placed = True
            break
    if not placed:
        (ARCHIVE_DIR / "general" / file.name).rename(file)

print(f"Archived to {ARCHIVE_DIR}")

Alternatively, upload the archive to Notion or Google Drive for team-wide searchability.

Step 5 — Parallel Run (2 Weeks)

Run both tools simultaneously to build confidence:

Week 1: Dual recording

  • Keep source tool active (bot still joins or captures)
  • Enable Granola on all meetings (system audio capture)
  • Compare output quality daily:
MetricSource ToolGranolaWinner
Transcription accuracy___%___%
Action item detection___/total___/total
Summary quality___/5___/5
Processing time___ min___ min
User experience (no bot)N/AYesGranola

Week 2: Granola primary

  • Keep source tool as backup only (disable auto-record if possible)
  • All sharing and distribution via Granola integrations
  • Team members report any quality issues

Step 6 — Cutover Execution

Cutover day checklist:

  • Final export from source tool (last day of data)
  • Verify archive is complete and accessible
  • Disable source tool recording/bot
  • Remove source tool bot from calendar (if applicable)
  • Cancel source tool subscription (save on unused billing)
  • Announce to team via email/Slack:
Subject: Meeting Notes Migration Complete — Granola is Now Primary

Team,

As of today, we've completed our migration to Granola for meeting notes.

What's changed:
- No more [Otter/Fireflies/etc.] bot joining meetings
- Granola captures audio directly from your device (no bot visible to participants)
- Notes are auto-enhanced with AI summaries and action items

What you need to do:
1. Ensure Granola is running on your device
2. Verify your calendar is connected (Settings > Calendar)
3. Check that microphone + Screen & System Audio permissions are granted

Historical notes: Archived at [Notion link / Drive folder]
Support: Post in #granola-support

Thank you for the smooth transition!
  • Monitor for 3 days:

- Capture rate (% of meetings recorded) - Support ticket volume - User feedback - Integration sync health

Step 7 — Post-Migration Optimization

After 1 week on Granola exclusively:

  • Configure templates for each meeting type (see granola-core-workflow-a)
  • Set up Zapier automation for recurring workflows
  • Create custom recipes for team-specific post-meeting tasks
  • Establish folder structure matching team workflow
  • Delete source tool accounts and data (if no longer needed)

Key Differences from Bot-Based Tools

FeatureBot-Based (Otter, Fireflies, tl;dv)Granola
Meeting joinBot joins as participantNo bot — system audio capture
Participant awareness"Bot is recording" bannerNo banner (still announce recording for consent)
Platform supportPlatform-specific integrationsAny platform (captures system audio)
Typed notesSeparate appBuilt-in notepad merges with transcript
EnhancementAuto-generatedUser-controlled (click Enhance)
TemplatesLimited29 built-in + custom
ChatLimited or noneFull Granola Chat with Recipes
Built-in CRMNoPeople & Companies

Output

  • Source data exported and archived
  • Parallel run completed with quality validation
  • Team migrated and recording in Granola
  • Source tool deactivated and subscription cancelled
  • Historical data accessible in archive

Error Handling

ErrorCauseFix
Source export incompleteFree plan limits bulk exportUpgrade source plan temporarily for export, then cancel
Team resistance to changeComfort with existing toolShare quality comparison data from parallel run
Missing historical contextNo import feature in GranolaPoint team to archived data (Notion/Drive)
Audio quality different than botSystem audio vs. platform APIOptimize audio setup (see granola-performance-tuning)
Low adoption post-migrationSetup issuesRun drop-in support sessions, share quick-start guide

Resources

Next Steps

After migration, explore granola-performance-tuning to optimize output quality.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.81%
按下载量换算63

Claude

30.9%
按下载量换算56

Cursor

18.18%
按下载量换算33

Gemini CLI

9.23%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills