From granola-pack
Handle Granola webhook events and build event-driven automations. Use when building custom integrations, processing meeting events, or creating real-time notification systems. Trigger with phrases like "granola webhooks", "granola events", "granola triggers", "granola real-time", "granola callbacks".
How this skill is triggered — by the user, by Claude, or both
Slash command
/granola-pack:granola-webhooks-eventsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Build event-driven automations using Granola's Zapier webhooks and event triggers for real-time meeting note processing.
| Event | Description | Key Data |
|---|---|---|
| New Note Created | Notes ready after meeting | Full note, attendees, actions |
| Note Updated | Notes manually edited | Changes diff |
| Note Shared | Notes shared with others | Share details |
Configure Granola trigger in Zapier. Select events to listen for. Get webhook URL for custom endpoints.
Create endpoint that receives events, validates them, and routes to appropriate processors (task creation, notifications, CRM updates).
Filter by meeting type (title keywords), content (has action items), and attendees (external vs internal).
Implement exponential backoff with 3 retries. Send failures to dead letter queue for manual review.
See detailed implementation for event payload schemas, Express.js/Python handlers, filtering patterns, and monitoring metrics.
| Error | Cause | Solution |
|---|---|---|
| Missed events | Endpoint down | Use reliable hosting, add health monitoring |
| Duplicate processing | Retry delivery | Implement idempotency with event IDs |
| Slow processing | Synchronous handling | Use async queue (Bull/SQS) |
| Invalid payload | Schema changed | Validate payload before processing |
set -euo pipefail
curl -X POST https://hooks.zapier.com/hooks/catch/YOUR_HOOK_ID \
-H "Content-Type: application/json" \
-d '{"event_type":"note.created","data":{"meeting_title":"Test","action_items":[]}}'
Proceed to granola-performance-tuning for optimization techniques.
npx claudepluginhub aiminnovations/claude-code-plugins-plus --plugin granola-packGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.
4plugins reuse this skill
First indexed Jul 11, 2026