Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Monitor Granola adoption, meeting analytics, and build custom dashboards. Use when tracking team meeting patterns, measuring adoption, building analytics pipelines, or creating executive reports. Trigger: "granola analytics", "granola metrics", "granola monitoring", "granola adoption", "meeting insights".
.claude/skills/jeremylongshore-granola-observability/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 7% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 43% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 23% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 54% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 7% | 0% |
Monitor Granola usage, track meeting patterns, and build analytics dashboards. Granola Enterprise includes a usage analytics dashboard. For deeper insights, build custom pipelines using Zapier to stream meeting metadata to BigQuery, Metabase, or other analytics platforms.
Access the analytics dashboard at Settings > Analytics (Enterprise plan):
| Metric | What It Shows | |--------|--------------| | Total meetings captured | Meeting volume over time | | Active users | Users who recorded meetings this period | | Hours captured | Total meeting hours transcribed | | Notes shared | How often notes are distributed | | Action items created | Extracted action items across org | | Adoption rate | Active users / total licensed seats |
Track these metrics to measure Granola's impact:
| Category | Metric | Target | Formula | |----------|--------|--------|---------| | Adoption | Activation rate | >80% | Users with 1+ meeting / total seats | | Adoption | Weekly active users | >70% | Users recording this week / total seats | | Quality | Capture rate | >70% | Meetings captured / total calendar meetings | | Quality | Share rate | >50% | Notes shared / notes created | | Efficiency | Time saved | >10 min/meeting | Survey: manual notes time - Granola time | | Efficiency | Action completion | >80% | Actions completed / actions created | | Health | Processing success | >99% | Successful enhancements / total attempts | | Health | Integration uptime | >99% | Successful syncs / total sync attempts |
Stream meeting metadata from Granola to a data warehouse via Zapier:
yaml# Zapier: Granola → BigQuery pipeline Trigger: Granola — Note Added to Folder ("All Meetings") Step 1 — Code by Zapier (extract metadata): const data = { meeting_id: inputData.title + '_' + inputData.calendar_event_datetime, title: inputData.title, date: inputData.calendar_event_datetime, creator: inputData.creator_email, attendee_count: JSON.parse(inputData.attendees || '[]').length, has_action_items: inputData.note_content.includes('- [ ]'), action_item_count: (inputData.note_content.match(/- \[ \]/g) || []).length, has_decisions: inputData.note_content.includes('## Decision') || inputData.note_content.includes('## Key Decision'), word_count: inputData.note_content.split(/\s+/).length, is_external: JSON.parse(inputData.attendees || '[]') .some(a => !a.email?.endsWith('@company.com')), workspace: inputData.folder || 'unknown', captured_at: new Date().toISOString(), }; output = [data]; Step 2 — BigQuery: Insert Row Dataset: meeting_analytics Table: granola_meetings Row: {{metadata from step 1}}
BigQuery schema:
sqlCREATE TABLE meeting_analytics.granola_meetings ( meeting_id STRING NOT NULL, title STRING, date TIMESTAMP, creator STRING, attendee_count INT64, has_action_items BOOL, action_item_count INT64, has_decisions BOOL, word_count INT64, is_external BOOL, workspace STRING, captured_at TIMESTAMP );
sql-- Weekly meeting volume by workspace SELECT workspace, DATE_TRUNC(date, WEEK) AS week, COUNT(*) AS meeting_count, SUM(action_item_count) AS total_actions, AVG(attendee_count) AS avg_attendees FROM meeting_analytics.granola_meetings WHERE date >= DATE_SUB(CURRENT_DATE(), INTERVAL 12 WEEK) GROUP BY workspace, week ORDER BY week DESC, workspace; -- Adoption: active users per week SELECT DATE_TRUNC(date, WEEK) AS week, COUNT(DISTINCT creator) AS active_users FROM meeting_analytics.granola_meetings WHERE date >= DATE_SUB(CURRENT_DATE(), INTERVAL 8 WEEK) GROUP BY week ORDER BY week DESC; -- Meeting efficiency score (has action items + decisions + < 8 attendees) SELECT title, date, CASE WHEN has_action_items AND has_decisions AND attendee_count <= 8 THEN 'Efficient' WHEN has_action_items OR has_decisions THEN 'Partially Efficient' ELSE 'Low Efficiency' END AS efficiency_rating FROM meeting_analytics.granola_meetings ORDER BY date DESC LIMIT 50; -- External vs internal meeting ratio SELECT DATE_TRUNC(date, MONTH) AS month, COUNTIF(is_external) AS external_meetings, COUNTIF(NOT is_external) AS internal_meetings, ROUND(COUNTIF(is_external) * 100.0 / COUNT(*), 1) AS external_pct FROM meeting_analytics.granola_meetings GROUP BY month ORDER BY month DESC;
Weekly Slack digest (via Zapier Schedule):
yamlTrigger: Schedule by Zapier — Every Friday at 5 PM Step 1 — BigQuery: Run Query Query: "SELECT COUNT(*) as meetings, SUM(action_item_count) as actions, COUNT(DISTINCT creator) as active_users FROM meeting_analytics.granola_meetings WHERE date >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)" Step 2 — Slack: Send Message to #leadership Message: | :bar_chart: *Weekly Granola Report* *This Week:* - Meetings captured: {{meetings}} - Action items created: {{actions}} - Active users: {{active_users}} [View full dashboard →]
Set up alerts for operational issues:
| Alert | Condition | Channel | |-------|-----------|---------| | Low adoption | Active users <50% of seats (weekly) | Slack #it-alerts | | Processing failures | >5% enhancement failures (daily) | PagerDuty | | Integration outage | Slack/Notion/CRM sync failures >3 (hourly) | Slack #it-alerts | | Zero meetings captured | No meetings for any workspace (daily) | Email to workspace admin |
Status monitoring:
bash# Check Granola service status curl -s https://status.granola.ai/api/v2/status.json | python3 -c " import json, sys data = json.load(sys.stdin) status = data.get('status', {}).get('description', 'Unknown') print(f'Granola Status: {status}') "
| Error | Cause | Fix | |-------|-------|-----| | Missing data in pipeline | Zapier trigger failed | Check Zap history, reconnect if needed | | Duplicate entries in BigQuery | Zapier retry on timeout | Add deduplication (MERGE or INSERT IGNORE) | | Dashboard shows stale data | Pipeline paused | Monitor Zapier health, restart paused Zaps | | Low adoption alert false positive | New seats just added | Adjust alert threshold, use percentage not absolute |
Proceed to granola-incident-runbook for incident response procedures.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 24,152 | 16,797 | -30% | 1 | 1 | 0% | 4,491 | 4,797 | +7% | 0 | 0 | — |
case-02 | fail→fail | 23,254 | 15,712 | -32% | 1 | 1 | 0% | 4,551 | 4,529 | -0% | 0 | 0 | — |
case-03 | fail→fail | 29,373 | 20,537 | -30% | 1 | 1 | 0% | 4,225 | 5,759 | +36% | 0 | 0 | — |
case-04 | fail→pass | 12,283 | 3,842 | -69% | 1 | 1 | 0% | 1,853 | 2,646 | +43% | 0 | 0 | — |
case-05 | fail→pass | 21,034 | 8,289 | -61% | 1 | 1 | 0% | 2,673 | 3,283 | +23% | 0 | 0 | — |
case-06 | fail→pass | 23,963 | 17,863 | -25% | 1 | 1 | 0% | 3,185 | 4,897 | +54% | 0 | 0 | — |
case-07 | fail→fail | 20,821 | 12,926 | -38% | 1 | 1 | 0% | 2,891 | 4,244 | +47% | 0 | 0 | — |
case-08 | fail→pass | 17,570 | 3,778 | -78% | 1 | 1 | 0% | 2,477 | 2,653 | +7% | 0 | 0 | — |
case-09 | fail→fail | 8,199 | 3,415 | -58% | 1 | 1 | 0% | 1,556 | 2,522 | +62% | 0 | 0 | — |
case-10 | fail→pass | 15,136 | 10,011 | -34% | 1 | 1 | 0% | 1,929 | 2,852 | +48% | 0 | 0 | — |
case-11 | fail→pass | 28,611 | 8,038 | -72% | 1 | 1 | 0% | 1,999 | 2,516 | +26% | 0 | 0 | — |
case-12 | pass→fail | 15,359 | 1,885 | -88% | 1 | 1 | 0% | 1,657 | 2,185 | +32% | 0 | 0 | — |
case-13 | fail→pass | 16,685 | 2,223 | -87% | 1 | 1 | 0% | 1,941 | 2,238 | +15% | 0 | 0 | — |
case-14 | pass→pass | 6,575 | 2,504 | -62% | 1 | 1 | 0% | 1,239 | 2,445 | +97% | 0 | 0 | — |
case-15 | pass→pass | 17,692 | 16,453 | -7% | 1 | 1 | 0% | 2,582 | 4,213 | +63% | 0 | 0 | — |
case-16 | pass→pass | 14,144 | 8,644 | -39% | 1 | 1 | 0% | 1,454 | 2,381 | +64% | 0 | 0 | — |
case-17 | fail→fail | 15,090 | 10,414 | -31% | 1 | 1 | 0% | 2,268 | 3,752 | +65% | 0 | 0 | — |
case-18 | fail→pass | 15,899 | 18,934 | +19% | 1 | 1 | 0% | 2,525 | 4,002 | +58% | 0 | 0 | — |
case-19 | fail→pass | 12,918 | 10,138 | -22% | 1 | 1 | 0% | 2,088 | 2,597 | +24% | 0 | 0 | — |
case-20 | fail→fail | 13,475 | 25,445 | +89% | 1 | 1 | 0% | 2,494 | 5,181 | +108% | 0 | 0 | — |
case-21 | fail→fail | 12,236 | 12,801 | +5% | 1 | 1 | 0% | 1,993 | 3,961 | +99% | 0 | 0 | — |
case-22 | fail→fail | 19,788 | 19,910 | +1% | 1 | 1 | 0% | 2,524 | 4,630 | +83% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +41 percentage points is the difference between those two pass rates over the 22 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.