jeremylongshore

granola-local-dev-loop

@jeremylongshore/granola-local-dev-loop
jeremylongshore
1,004
123 forks
Updated 1/18/2026
View on GitHub

Integrate Granola meeting notes into your local development workflow. Use when setting up development workflows, accessing notes programmatically, or syncing meeting outcomes with project tools. Trigger with phrases like "granola dev workflow", "granola development", "granola local setup", "granola developer", "granola coding workflow".

Installation

$skills install @jeremylongshore/granola-local-dev-loop
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Pathplugins/saas-packs/granola-pack/skills/granola-local-dev-loop/SKILL.md
Branchmain
Scoped Name@jeremylongshore/granola-local-dev-loop

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

skills list

Skill Instructions


name: granola-local-dev-loop description: | Integrate Granola meeting notes into your local development workflow. Use when setting up development workflows, accessing notes programmatically, or syncing meeting outcomes with project tools. Trigger with phrases like "granola dev workflow", "granola development", "granola local setup", "granola developer", "granola coding workflow". allowed-tools: Read, Write, Edit, Bash(curl:*), Grep version: 1.0.0 license: MIT author: Jeremy Longshore jeremy@intentsolutions.io

Granola Local Dev Loop

Overview

Integrate Granola meeting notes into your local development workflow for seamless project management.

Prerequisites

  • Granola installed and configured
  • Zapier account (for automation)
  • Project management tool (Jira, Linear, GitHub Issues)
  • Local development environment

Instructions

Step 1: Export Notes Workflow

Configure automatic export of meeting notes:

  1. Open Granola Settings
  2. Go to Integrations > Zapier
  3. Connect your Zapier account
  4. Create a Zap: "New Granola Note" trigger

Step 2: Set Up Local Sync

Create a local directory for meeting notes:

# Create meeting notes directory
mkdir -p ~/dev/meeting-notes

# Create sync script
cat > ~/dev/scripts/sync-granola-notes.sh << 'EOF'
#!/bin/bash
# Sync Granola notes to local project

NOTES_DIR="$HOME/dev/meeting-notes"
PROJECT_DIR="$1"

if [ -z "$PROJECT_DIR" ]; then
    echo "Usage: sync-granola-notes.sh <project-dir>"
    exit 1
fi

# Copy relevant notes to project docs
cp -r "$NOTES_DIR"/*.md "$PROJECT_DIR/docs/meetings/" 2>/dev/null

echo "Synced meeting notes to $PROJECT_DIR/docs/meetings/"
EOF

chmod +x ~/dev/scripts/sync-granola-notes.sh

Step 3: Integrate with Git Workflow

# Add meeting notes to .gitignore if sensitive
echo "docs/meetings/*.md" >> .gitignore

# Or track action items only
cat > docs/meetings/README.md << 'EOF'
# Meeting Notes

Action items and decisions from team meetings.
Full notes available in Granola app.
EOF

Step 4: Create Action Item Extractor

#!/usr/bin/env python3
# extract_action_items.py

import re
import sys

def extract_actions(note_file):
    with open(note_file, 'r') as f:
        content = f.read()

    # Find action items section
    actions = re.findall(r'- \[ \] (.+)', content)

    for action in actions:
        print(f"TODO: {action}")

if __name__ == "__main__":
    extract_actions(sys.argv[1])

Output

  • Local meeting notes directory structure
  • Sync script for project integration
  • Action item extraction workflow
  • Git-integrated note tracking

Workflow Example

1. Attend sprint planning meeting
   Granola captures notes automatically

2. Notes sync to local directory
   ~/dev/meeting-notes/2025-01-06-sprint-planning.md

3. Extract action items
   python extract_action_items.py notes/sprint-planning.md

4. Create tickets automatically
   ./create-tickets.sh TODO.md

5. Reference in commits
   git commit -m "feat: implement login - per meeting 2025-01-06"

Error Handling

ErrorCauseSolution
Sync FailedZapier disconnectedReconnect Zapier integration
Notes Not AppearingExport delayWait 2-5 minutes after meeting
Parsing ErrorsNote format changedUpdate extraction regex
Permission DeniedDirectory accessCheck file permissions

Resources

Next Steps

Proceed to granola-sdk-patterns for advanced Zapier automation patterns.

More by jeremylongshore

View all
oauth-callback-handler
1,004

Oauth Callback Handler - Auto-activating skill for API Integration. Triggers on: oauth callback handler, oauth callback handler Part of the API Integration skill category.

rabbitmq-queue-setup
1,004

Rabbitmq Queue Setup - Auto-activating skill for Backend Development. Triggers on: rabbitmq queue setup, rabbitmq queue setup Part of the Backend Development skill category.

model-evaluation-suite
1,004

evaluating-machine-learning-models: This skill allows Claude to evaluate machine learning models using a comprehensive suite of metrics. It should be used when the user requests model performance analysis, validation, or testing. Claude can use this skill to assess model accuracy, precision, recall, F1-score, and other relevant metrics. Trigger this skill when the user mentions "evaluate model", "model performance", "testing metrics", "validation results", or requests a comprehensive "model evaluation".

neural-network-builder
1,004

building-neural-networks: This skill allows Claude to construct and configure neural network architectures using the neural-network-builder plugin. It should be used when the user requests the creation of a new neural network, modification of an existing one, or assistance with defining the layers, parameters, and training process. The skill is triggered by requests involving terms like "build a neural network," "define network architecture," "configure layers," or specific mentions of neural network types (e.g., "CNN," "RNN," "transformer").