fireflies-performance-tuning

Featured

Optimize Fireflies.ai GraphQL query performance with field selection, caching, and batching. Use when experiencing slow API responses, implementing caching, or optimizing transcript processing throughput. Trigger with phrases like "fireflies performance", "optimize fireflies", "fireflies latency", "fireflies caching", "fireflies slow", "fireflies batch".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Fireflies.ai Performance Tuning ## Overview Optimize Fireflies.ai GraphQL API performance. The biggest wins: request only needed fields (transcripts with sentences can be very large), cache immutable transcripts, and batch operations within rate limits. ## Prerequisites - `FIREFLIES_API_KEY` configured - Understanding of your access pattern (list vs detail, frequency) - Optional: Redis or LRU cache library ## Instructions ### Step 1: Field Selection -- The Biggest Win Transcript responses with `sentences` can be enormous. Always request the minimum fields needed. ```typescript // BAD: Fetching everything when you only need titles const HEAVY = `{ transcripts(limit: 50) { id title date duration sentences { text speaker_name start_time end_time } summary { overview action_items keywords outline bullet_gist } analytics { speakers { name duration word_count } } } }`; // GOOD: Light query for listing const LIGHT = `{ transcripts(limit: 50) { id title date duration organizer_email } }`; // GOOD: Full query only when drilling into a specific transcript const DETAIL = `query($id: String!) { transcript(id: $id) { id title sentences { speaker_name text start_time end_time } summary { overview action_items keywords } } }`; ``` ### Step 2: Cache Transcripts (They Are Immutable) Once a transcript is processed, its content never changes. Cache aggressively. ```typescript import { LRUCache } from "lru-cache"; const transcriptCache = new LRUCache<string, any>({ ma...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

firecrawl-performance-tuning

Optimize Firecrawl scraping performance with caching, batch scraping, and format selection. Use when experiencing slow scrapes, optimizing credit usage per page, or building high-throughput scraping pipelines. Trigger with phrases like "firecrawl performance", "optimize firecrawl", "firecrawl latency", "firecrawl caching", "firecrawl slow", "firecrawl batch".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fireflies-core-workflow-a

Retrieve and process Fireflies.ai meeting transcripts with speaker diarization and summaries. Use when fetching transcripts, extracting action items, or building meeting intelligence pipelines. Trigger with phrases like "fireflies transcript", "get meeting notes", "fireflies meeting data", "fetch fireflies recording".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fathom-performance-tuning

Optimize Fathom API performance with caching and batch processing. Trigger with phrases like "fathom performance", "fathom caching", "optimize fathom".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-performance-tuning

Optimize Klaviyo API performance with caching, batching, and pagination tuning. Use when experiencing slow API responses, implementing caching strategies, or optimizing request throughput for Klaviyo integrations. Trigger with phrases like "klaviyo performance", "optimize klaviyo", "klaviyo latency", "klaviyo caching", "klaviyo slow", "klaviyo batch".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fireflies-data-handling

Handle Fireflies.ai transcript data: export formats, PII redaction, retention policies, and compliance. Use when exporting transcripts, implementing data redaction, configuring retention, or ensuring GDPR/CCPA compliance. Trigger with phrases like "fireflies data", "fireflies PII", "fireflies GDPR", "fireflies data retention", "fireflies privacy", "fireflies export".

2,266 Updated today
jeremylongshore