Notre avis
Fournit une interface en ligne de commande pour l'API Fireflies.ai afin de gérer les transcriptions de réunions, rechercher du contenu, extraire des insights et diffuser en direct.
Points forts
- Couvre un large éventail d'opérations Fireflies.ai
- Structure en sous-commandes claires et faciles à utiliser
- Offre des raccourcis de dates et des options de sortie lisibles par l'humain
- Installe automatiquement le package si nécessaire
Limites
- Nécessite la variable d'environnement FIREFLIES_API_KEY
- Limité aux capacités de l'API Fireflies.ai
- Peut ne pas fonctionner avec toutes les plateformes de réunions
Utilisez cette compétence lorsque vous devez accéder ou analyser des transcriptions de réunions, effectuer des recherches dans plusieurs réunions ou gérer des données Fireflies.ai de manière programmatique.
Ne l'utilisez pas si vous devez modifier directement des fichiers audio ou vidéo de réunions, ou si vous avez besoin d'un contrôle en temps réel des bots de réunion au-delà de l'ajout de bots.
Analyse de sécurité
PrudenceThe skill uses Bash to run npm exec with a third-party package, which carries inherent risk of installing malicious updates. No direct destructive or exfiltration commands are present, but the package is community-built and not officially endorsed. The API key handling is standard but still sensitive.
- •Executes npm package from registry with --yes flag, allowing automatic installation of potentially compromised code.
- •Requires setting an API key as environment variable, which if mishandled could expose sensitive credentials.
Exemples
List my last 10 meeting transcripts using Fireflies.Search all my Fireflies transcripts for mentions of 'budget'.Show me aggregated insights from my meetings this week.name: ff-fireflies description: Main hub for Fireflies.ai SDK. Use when working with meeting transcripts, search, insights, or live streaming. allowed-tools: Bash(npm exec --yes --package=fireflies-api -- fireflies-api *)
Fireflies SDK - Main Hub
Disclaimer: This is an unofficial, community-built open source SDK. It is NOT affiliated with, endorsed by, or associated with Fireflies.ai Inc. This project provides a TypeScript SDK and CLI that uses the publicly available Fireflies API.
Use this skill as the main entry point for Fireflies.ai operations. Routes to appropriate subcommands based on the task.
Available Subcommands
| Command | Description |
|---------|-------------|
| /ff-transcripts | List, get, analyze transcripts |
| /ff-search | Full-text search across transcripts |
| /ff-insights | Aggregate meeting analytics |
| /ff-meetings | Active meetings, add bot |
| /ff-users | User management |
| /ff-bites | Clips and soundbites |
| /ff-ai-apps | AI app outputs |
| /ff-audio | Upload audio files |
| /ff-realtime | Live transcription streaming |
| /ff-export | Export to markdown/JSON |
Quick Examples
# List recent transcripts
npm exec --yes --package=fireflies-api -- fireflies-api transcripts list --limit 5
# Search transcripts
npm exec --yes --package=fireflies-api -- fireflies-api search "budget" --limit 10
# Get current user
npm exec --yes --package=fireflies-api -- fireflies-api users me
# Stream live transcription
npm exec --yes --package=fireflies-api -- fireflies-api realtime <meeting-id>
API Key
The FIREFLIES_API_KEY environment variable must be set before using any command.
Instructions
-
First, check prerequisites (API key and CLI availability):
test -n "$FIREFLIES_API_KEY" && echo "API key: OK" || echo "ERROR: Set FIREFLIES_API_KEY environment variable" -
Run commands using
npm exec --yes --package=fireflies-api -- fireflies-api <command>. The-yflag auto-installs the package if not present. -
Based on the user's request, route to the appropriate subcommand or suggest a specific
/ff-*skill.
CRITICAL Rules
DO NOT:
- Run
--helpcommands - this skill documents all available options - Invent options that aren't documented (e.g.,
--fieldsdoes not exist) - Use
--from/--towhen date shortcuts work (use--last-weeknot--from 2026-01-19 --to 2026-01-25) - Default to JSON output - use
-o tableor-o plainfor human readability - Pipe to jq/grep to work around missing features - data you need may not exist in output
- Try N+1 workarounds (looping
getcalls) - explain the limitation instead
DO:
- Trust this skill documentation - it is authoritative
- Use date shortcuts:
--last-week,--last-month,--days N,--today,--yesterday - Always add
-o tableor-o plainunless user asks for JSON - Use
--externalto filter for meetings with external participants
Choosing the Right Command
| User Intent | Best Command | Why |
|-------------|--------------|-----|
| "List my meetings" | transcripts list --mine | Quick overview |
| "Meetings I participated in" | transcripts list --participant-me | Includes meetings I didn't organize |
| "Meetings with external participants" | transcripts list --external | Filters by domain |
| "Show meeting details" | transcripts get <id> | Full content for one meeting |
| "Find what was said about X" | search "X" | Efficient cross-transcript search |
| "Meeting statistics/analytics" | insights | Aggregated analytics, no N+1 |
| "External participant analytics" | insights --external | Stats for external meetings |
| "All action items from last week" | transcripts action-items export --last-week | Bulk export |
| "Who talked most in meeting X" | transcripts speakers <id> | Speaker analytics |
Output Format Guidance:
- Default to human-readable formats (
-o tableor-o plain) - Only use
-o jsonwhen user explicitly requests JSON output
Ingénierie de Prompts
Data & IA
Bonnes pratiques et templates de prompt engineering pour maximiser les résultats IA.
Visualisation de Données
Data & IA
Génère des visualisations de données et graphiques adaptés à vos données.
Architecture RAG
Data & IA
Guide de configuration d'architectures RAG (Retrieval-Augmented Generation).