Fireflies Transcript Export

VerifiedCaution

Exports Fireflies transcripts to Markdown or JSON formats via a command line tool. Use this skill when you need to save a meeting transcript to a file for documentation, further processing, or sharing. Supports options to exclude summaries or timestamps, and can output to stdout or a specified file path.

Sby Skills Guide Bot
Data & AIBeginner
906/2/2026
Claude Code
#fireflies#transcripts#export#markdown#json

Recommended for

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 to use it

When you need to save or share Fireflies meeting transcripts as readable or structured files.

When not to use it

If you need batch processing of multiple transcripts or want direct integration without an intermediate file.

Security analysis

Caution
Quality score80/100

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

Findings
  • 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 transcript to Markdown file
Export the Fireflies transcript with ID 'transcript_123' to a Markdown file named meeting-notes.md.
Export transcript to JSON
Export the Fireflies transcript with ID 'transcript_456' to JSON format and save it as transcript.json.
Export transcript without summary
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

  1. Verify API key is set:

    test -n "$FIREFLIES_API_KEY" && echo "Ready" || echo "ERROR: Set FIREFLIES_API_KEY"
    
  2. Ask user for preferred format if not specified.

  3. For file output, confirm the destination path with the user.

  4. 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
Related skills