granola-migration-deep-dive

0
0
Source

Deep dive migration guide from other meeting note tools to Granola. Use when migrating from Otter.ai, Fireflies, Fathom, or other tools, planning data migration, or executing transition strategies. Trigger with phrases like "migrate to granola", "switch to granola", "granola from otter", "granola from fireflies", "granola migration".

Install

mkdir -p .claude/skills/granola-migration-deep-dive && curl -L -o skill.zip "https://mcp.directory/api/skills/download/5979" && unzip -o skill.zip -d .claude/skills/granola-migration-deep-dive && rm skill.zip

Installs to .claude/skills/granola-migration-deep-dive

About this skill

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.

svg-icon-generator

jeremylongshore

Svg Icon Generator - Auto-activating skill for Visual Content. Triggers on: svg icon generator, svg icon generator Part of the Visual Content skill category.

6814

d2-diagram-creator

jeremylongshore

D2 Diagram Creator - Auto-activating skill for Visual Content. Triggers on: d2 diagram creator, d2 diagram creator Part of the Visual Content skill category.

2412

performing-penetration-testing

jeremylongshore

This skill enables automated penetration testing of web applications. It uses the penetration-tester plugin to identify vulnerabilities, including OWASP Top 10 threats, and suggests exploitation techniques. Use this skill when the user requests a "penetration test", "pentest", "vulnerability assessment", or asks to "exploit" a web application. It provides comprehensive reporting on identified security flaws.

379

designing-database-schemas

jeremylongshore

Design and visualize efficient database schemas, normalize data, map relationships, and generate ERD diagrams and SQL statements.

978

performing-security-audits

jeremylongshore

This skill allows Claude to conduct comprehensive security audits of code, infrastructure, and configurations. It leverages various tools within the security-pro-pack plugin, including vulnerability scanning, compliance checking, cryptography review, and infrastructure security analysis. Use this skill when a user requests a "security audit," "vulnerability assessment," "compliance review," or any task involving identifying and mitigating security risks. It helps to ensure code and systems adhere to security best practices and compliance standards.

86

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

965

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

643969

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

591705

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

318399

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

340397

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

452339

fastapi-templates

wshobson

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

304231

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.