granola-incident-runbook

1
1
Source

Incident response procedures for Granola meeting capture issues. Use when handling meeting capture failures, system outages, or urgent troubleshooting situations. Trigger with phrases like "granola incident", "granola outage", "granola emergency", "granola not recording", "granola down".

Install

mkdir -p .claude/skills/granola-incident-runbook && curl -L -o skill.zip "https://mcp.directory/api/skills/download/6877" && unzip -o skill.zip -d .claude/skills/granola-incident-runbook && rm skill.zip

Installs to .claude/skills/granola-incident-runbook

About this skill

Granola Incident Runbook

Overview

Standard operating procedures for Granola incidents — from individual recording failures to organization-wide outages. Covers triage, remediation, communication, escalation, and post-incident review. Designed for IT admins, team leads, and individual users.

Prerequisites

  • Granola admin access (for org-level incidents)
  • Bookmark status.granola.ai for service status
  • Internal communication channel identified (#granola-support or similar)

Instructions

Step 1 — Triage: Assess Severity

# Quick status check
curl -s "https://status.granola.ai/api/v2/status.json" 2>/dev/null | python3 -c "
import json, sys
try:
    data = json.load(sys.stdin)
    indicator = data.get('status', {}).get('indicator', 'unknown')
    desc = data.get('status', {}).get('description', 'Unknown')
    print(f'Status: {indicator} — {desc}')
except:
    print('Cannot reach status page — possible network issue')
" || echo "Network error — check internet connection"
SeverityDescriptionResponse TimeExample
P1 CriticalOrg-wide outage, data loss riskImmediateGranola service down, no one can record
P2 HighMultiple users affected< 1 hourRecording fails for a team, sync broken
P3 MediumSingle user issue< 4 hoursOne person's transcription stopped
P4 LowMinor issue, workaround exists< 24 hoursUI glitch, slow processing

Scope assessment questions:

  1. Is it just you, or are others affected too? → Ask in #granola-support
  2. Is status.granola.ai showing an incident? → P1/P2 if yes
  3. Was it working earlier today? → Recent change (OS update, permissions) likely
  4. Which platform? (Zoom/Meet/Teams) → Platform-specific audio routing

Step 2 — Remediation by Incident Type


Incident: "Meeting Not Recording"

Severity: P3 (single user) or P2 (team-wide)

Immediate actions:

  1. Click Granola menu bar icon > Start Recording (manual override)
  2. If manual start fails:
    • Check that the meeting has audio playing
    • Verify Granola is running: pgrep -l Granola
    • Restart: right-click menu bar icon > Restart Granola

Root cause investigation:

  • Calendar event has a video conferencing link (Zoom/Meet/Teams)
  • Calendar is connected in Settings > Calendar
  • Microphone permission granted
  • Screen & System Audio Recording permission granted (macOS)
  • Not running conflicting audio software (Loopback, BlackHole)

Backup: Take manual notes. After fixing, re-record the next meeting.


Incident: "Transcription Stops Mid-Meeting"

Severity: P3

Immediate actions:

  1. Check: is the computer awake? (Sleep kills transcription)
  2. Right-click Granola icon > Restart Granola
  3. Reopen your note — transcription may resume
  4. If using Bluetooth: switch to wired audio or built-in speakers

Root cause: Granola stops transcription after ~15 minutes of no detected audio. Bluetooth devices can cause intermittent dropouts.


Incident: "Enhancement/Processing Failed"

Severity: P3

Immediate actions:

  1. Wait 15 minutes — long meetings take longer to process
  2. Check internet connectivity
  3. Check status.granola.ai for service issues
  4. Restart Granola and reopen the note
  5. Click Enhance Notes again

If still failing after 30 minutes: The transcript was captured but enhancement may be queued. Submit support ticket with the meeting date/time.


Incident: "Integration Not Syncing" (Slack/Notion/HubSpot)

Severity: P3

Immediate actions:

  1. Settings > Integrations > check the target integration status
  2. Disconnect and reconnect the integration
  3. Re-share the note manually
  4. For Zapier: check Zap history at zapier.com for errors

Common causes:

IntegrationLikely CauseFix
SlackBot removed from channel/invite @Granola in the channel
NotionDatabase deletedReconnect (new database created)
HubSpotOAuth token expiredReconnect in Settings
ZapierConnection expiredRe-authenticate Granola in Zapier

Incident: "Granola Service Outage" (P1)

Severity: P1 Critical

Immediate actions:

  1. Confirm at status.granola.ai
  2. Switch to backup note-taking immediately:
    • Open a text editor or Google Doc
    • Take manual notes for active meetings
    • Notes can be combined with future Granola captures manually
  3. Communicate to your team via Slack:
:rotating_light: Granola is currently experiencing a service outage.

Status: https://status.granola.ai
Impact: Meeting recordings and AI enhancement are unavailable.

Workaround: Take notes manually in Google Docs or your preferred editor.
I'll update when service is restored.

Next update: [time + 30 min]
  1. Subscribe to status updates at status.granola.ai
  2. Resume normal operation when status returns to Operational

Step 3 — Escalation Path

Level 1: User Self-Service
  → Restart Granola, check permissions, verify audio
  → Time: 5 minutes

Level 2: IT Support / Team Admin
  → Run debug bundle (granola-debug-bundle)
  → Check org-wide status, verify SSO/SCIM
  → Time: 15-30 minutes

Level 3: Granola Support
  → Submit ticket at help.granola.ai
  → Attach debug bundle
  → Enterprise: Priority support, dedicated contact
  → Time: 1-24 hours depending on severity

Level 4: Granola Engineering (P1 only)
  → Escalated by Granola Support for service outages
  → Status page updates provided by Granola team

Step 4 — Post-Incident Review

After resolution, document:

## Post-Incident Report

**Date:** YYYY-MM-DD
**Severity:** P1/P2/P3/P4
**Duration:** [start time] — [resolution time]
**Impact:** [# users affected, # meetings missed]

**Timeline:**
- HH:MM — Issue first reported
- HH:MM — Triage and severity assigned
- HH:MM — Workaround communicated
- HH:MM — Root cause identified
- HH:MM — Fix applied / service restored

**Root Cause:** [description]
**Resolution:** [what fixed it]
**Prevention:** [what to change to prevent recurrence]
**Action Items:**
- [ ] [who] [what] [by when]

Output

  • Incident triaged and severity assigned
  • Remediation applied or workaround enabled
  • Stakeholders notified with status updates
  • Post-incident review documented with prevention actions

Error Handling

ScenarioFirst Response
Can't reach status.granola.aiCheck your internet; try from phone network
Restart doesn't fix recordingForce quit (pkill -9 Granola), clear caches, relaunch
Multiple users reporting same issueLikely P1/P2 — check status page, post to team Slack
Issue persists after all troubleshootingCreate debug bundle, submit to [email protected]

Resources

Next Steps

Proceed to granola-data-handling for data export, retention, and GDPR compliance.

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.

11340

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.

9033

automating-mobile-app-testing

jeremylongshore

This skill enables automated testing of mobile applications on iOS and Android platforms using frameworks like Appium, Detox, XCUITest, and Espresso. It generates end-to-end tests, sets up page object models, and handles platform-specific elements. Use this skill when the user requests mobile app testing, test automation for iOS or Android, or needs assistance with setting up device farms and simulators. The skill is triggered by terms like "mobile testing", "appium", "detox", "xcuitest", "espresso", "android test", "ios test".

18828

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.

5519

designing-database-schemas

jeremylongshore

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

12516

optimizing-sql-queries

jeremylongshore

This skill analyzes and optimizes SQL queries for improved performance. It identifies potential bottlenecks, suggests optimal indexes, and proposes query rewrites. Use this when the user mentions "optimize SQL query", "improve SQL performance", "SQL query optimization", "slow SQL query", or asks for help with "SQL indexing". The skill helps enhance database efficiency by analyzing query structure, recommending indexes, and reviewing execution plans.

5513

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.

1,6851,430

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."

1,2711,335

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.

1,5441,153

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.

1,359809

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.

1,265728

pdf-to-markdown

aliceisjustplaying

Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.

1,495685