Agent skill

fireflies-observability

Monitor Fireflies.ai integration health with metrics, alerts, and dashboards. Use when implementing monitoring, setting up alerting, or tracking transcript processing reliability. Trigger with phrases like "fireflies monitoring", "fireflies metrics", "fireflies observability", "monitor fireflies", "fireflies alerts". '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill fireflies-observability --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Version: 1.11.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEdit
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: plugins/saas-packs/fireflies-pack/skills/fireflies-observability/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Fireflies.ai Observability ## Overview Monitor Fireflies.ai integration health: API connectivity, webhook delivery, transcript processing latency, and seat utilization. Built for Prometheus/Grafana but adaptable to any metrics system. ## Prerequisites - Fireflies Business+ plan (for full API access) - Prometheus + Grafana (or equivalent metrics stack) - Webhook endpoint deployed and receiving events ## Instructions ### Step 1: Instrument the GraphQL Client ```typescript // lib/fireflies-instrumented.ts import { Counter, Histogram, Gauge } from "prom-client"; const apiRequests = new Counter({ name: "fireflies_api_requests_total", help: "Total Fireflies API requests", labelNames: ["operation", "status"], }); const apiLatency = new Histogram({ name: "fireflies_api_latency_seconds", help: "Fireflies API request latency", labelNames: ["operation"], buckets: [0.1, 0.25, 0.5, 1, 2, 5, 10], }); const FIREFLIES_API = "https://api.fireflies.ai/graphql"; export async function firefliesQueryInstrumented( operation: string, query: string, variables?: any ) { const timer = apiLatency.startTimer({ operation }); try { const res = await fetch(FIREFLIES_API, { method: "POST", headers: { "Content-T

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Instructions
  4. Step 1: Instrument the GraphQL Client
  5. Step 2: Webhook Event Metrics
  6. Step 3: Health Check Probe
  7. Step 4: Seat Utilization Tracking
  8. Step 5: Alerting Rules
  9. Step 6: Dashboard Panels (Grafana)
  10. Error Handling
  11. Output
  12. Resources
  13. Next Steps
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the fireflies-observability skill do?

Monitor Fireflies.ai integration health with metrics, alerts, and dashboards. Use when implementing monitoring, setting up alerting, or tracking transcript processing reliability. Trigger with phrases like "fireflies monitoring", "fireflies metrics", "fireflies observability", "monitor fireflies", "fireflies alerts". '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill fireflies-observability --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going