fireflies-upgrade-migration

Featured

Handle Fireflies.ai API deprecations and migrate to current query patterns. Use when updating deprecated fields, migrating query patterns, or responding to Fireflies API changelog updates. Trigger with phrases like "upgrade fireflies", "fireflies deprecated", "fireflies migration", "fireflies breaking changes", "fireflies changelog".

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 Upgrade & Migration ## Current State !`npm list graphql graphql-request 2>/dev/null || echo 'No graphql packages'` ## Overview Fireflies.ai uses a GraphQL API (no versioned SDK). Breaking changes come as field deprecations and new query parameter patterns. This skill covers all known deprecations and migration paths. ## Known Deprecations ### Transcript Query Parameter Changes ```typescript // DEPRECATED: Single organizer email string const OLD = `{ transcripts(organizer_email: "alice@co.com") { id } }`; // CURRENT: Array of organizer emails const NEW = `{ transcripts(organizers: ["alice@co.com"]) { id } }`; ``` ```typescript // DEPRECATED: Single participant email string const OLD = `{ transcripts(participant_email: "bob@co.com") { id } }`; // CURRENT: Array of participant emails const NEW = `{ transcripts(participants: ["bob@co.com"]) { id } }`; ``` ```typescript // DEPRECATED: title parameter for search const OLD = `{ transcripts(title: "standup") { id } }`; // CURRENT: keyword with scope const NEW = `{ transcripts(keyword: "standup") { id } }`; ``` ```typescript // DEPRECATED: date parameter (single date) const OLD = `{ transcripts(date: "2026-03-01") { id } }`; // CURRENT: fromDate/toDate range const NEW = `{ transcripts( fromDate: "2026-03-01T00:00:00Z" toDate: "2026-03-31T23:59:59Z" ) { id } }`; ``` ### Field-Level Deprecations ```typescript // DEPRECATED transcript.host_email // CURRENT transcript.organizer_email ``` ## Migrati...

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

fireflies-migration-deep-dive

Migrate to Fireflies.ai from other meeting transcription platforms or legacy recording systems. Use when switching from Otter.ai, Rev, or custom transcription to Fireflies, or importing historical meeting data into the Fireflies ecosystem. Trigger with phrases like "migrate to fireflies", "switch from otter", "fireflies migration", "import meetings to fireflies", "fireflies replatform".

2,266 Updated today
jeremylongshore
AI & Automation Featured

firecrawl-upgrade-migration

Upgrade Firecrawl SDK versions and migrate between API versions (v0 to v1/v2). Use when upgrading the SDK, handling breaking changes between versions, or migrating from the old API to the current v2 API. Trigger with phrases like "upgrade firecrawl", "firecrawl migration", "firecrawl v2", "update firecrawl SDK", "firecrawl breaking changes".

2,266 Updated today
jeremylongshore
AI & Automation Featured

figma-upgrade-migration

Handle Figma REST API scope changes, deprecations, and migration tasks. Use when migrating from deprecated scopes, updating webhook versions, or adapting to Figma API changelog changes. Trigger with phrases like "upgrade figma", "figma deprecation", "figma scope migration", "figma API changes", "figma v2 webhooks".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fireflies-performance-tuning

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".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-upgrade-migration

Manage Apollo.io API upgrades and endpoint migrations. Use when upgrading Apollo API versions, migrating to new endpoints, or updating deprecated API usage. Trigger with phrases like "apollo upgrade", "apollo migration", "update apollo api", "apollo breaking changes", "apollo deprecation".

2,266 Updated today
jeremylongshore