# Ff Export

> Export transcripts to Markdown or JSON formats. Use when saving transcripts to files for documentation or processing. Use when this capability is needed.

- Skill: `tomevault-io/ff-export` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/ff-export`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/ff-export/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/ff-export

---


# Fireflies Export

Export transcripts to various formats (Markdown, JSON).

## Command

```bash
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

```bash
# 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:
   ```bash
   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

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/bjoernschotte) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-14 -->

