Our review
Exports Fireflies transcripts to Markdown or JSON formats.
Strengths
- Supports both Markdown and JSON output formats
- Options to exclude summary or timestamps
- Can output to a file or stdout
Limitations
- Requires a valid Fireflies API key
- Only exports a single transcript at a time
- No advanced Markdown formatting
When you need to save or share Fireflies meeting transcripts as readable or structured files.
If you need batch processing of multiple transcripts or want direct integration without an intermediate file.
Security analysis
CautionThe skill relies on an external npm package and allows arbitrary arguments to be passed, which could lead to command injection if an attacker controls the input. While not overtly destructive, the combination of third-party code execution and file writing poses a moderate risk.
- •Executes a third-party npm package (fireflies-api) which could contain malicious code or vulnerabilities.
- •Potential shell injection risk if user-supplied arguments are not properly sanitized before being appended to the npm exec command.
Examples
Export the Fireflies transcript with ID 'transcript_123' to a Markdown file named meeting-notes.md.Export the Fireflies transcript with ID 'transcript_456' to JSON format and save it as transcript.json.Export the Fireflies transcript 'transcript_789' to a file notes.md, excluding the summary.name: ff-export description: Export transcripts to Markdown or JSON formats. Use when saving transcripts to files for documentation or processing. allowed-tools: Bash(npm exec --yes --package=fireflies-api -- fireflies-api export *)
Fireflies Export
Export transcripts to various formats (Markdown, JSON).
Command
npm exec --yes --package=fireflies-api -- fireflies-api export <id> [file] [options]
Options
--no-summary- Exclude summary from export--no-timestamps- Exclude timestamps--format <format>- Export format (md, json)
Arguments
<id>- Transcript ID (required)[file]- Output file path (optional, defaults to stdout)
Examples
# Export to stdout
npm exec --yes --package=fireflies-api -- fireflies-api export "transcript_123"
# Export to markdown file
npm exec --yes --package=fireflies-api -- fireflies-api export "transcript_123" meeting-notes.md
# Export to JSON
npm exec --yes --package=fireflies-api -- fireflies-api export "transcript_123" meeting.json --format json
# Export without summary
npm exec --yes --package=fireflies-api -- fireflies-api export "transcript_123" notes.md --no-summary
# Export without timestamps
npm exec --yes --package=fireflies-api -- fireflies-api export "transcript_123" notes.md --no-timestamps
Instructions
-
Verify API key is set:
test -n "$FIREFLIES_API_KEY" && echo "Ready" || echo "ERROR: Set FIREFLIES_API_KEY" -
Ask user for preferred format if not specified.
-
For file output, confirm the destination path with the user.
-
Markdown format is human-readable; JSON is for programmatic use.
Usage Tips
Format Selection:
- Use Markdown (
.md) for human-readable documentation (default) - Use JSON only when user needs structured data for processing
- When exporting to stdout, Markdown is easier to read in the terminal
Prompt Engineering
Data & AI
Prompt engineering best practices and templates to maximize AI outputs.
Data Visualization
Data & AI
Generates data visualizations and charts tailored to your data.
RAG Architecture Setup
Data & AI
Setup guide for RAG (Retrieval-Augmented Generation) architectures.