Ffcli
/install ffcli
ffcli — Fireflies.ai CLI
Query meeting recordings, transcripts, and AI summaries from Fireflies.ai.
Setup
Install via Homebrew or npm:
brew install ruigomeseu/tap/ffcli
# or
npm install -g @ruigomeseu/ffcli
Authenticate with your Fireflies API key (get it from Settings → Developer Settings):
ffcli auth \x3Cyour-api-key> # Store key locally (~/.config/ffcli/)
ffcli auth --check # Verify it works
Alternatively, set the FIREFLIES_API_KEY environment variable (takes precedence over stored config). In OpenClaw, configure it via skills.entries.ffcli.apiKey in openclaw.json.
Note: ffcli is a third-party CLI by @ruigomeseu (Homebrew tap or npm). Verify the source before installing: check the npm package or Homebrew tap repo for code review and publish history.
Commands
List meetings
ffcli list --limit 10 --md # Recent meetings
ffcli list --from 2026-02-01 --to 2026-02-12 --md # Date range
ffcli list --participant [email protected] --md # By participant
ffcli list --search "standup" --md # By title keyword
ffcli list --limit 5 --include-summaries # With AI summaries (JSON)
Show meeting detail
ffcli show \x3Cid> --md # Full detail (markdown)
ffcli show \x3Cid> --summary-only --md # Just AI summary
ffcli show \x3Cid> --transcript-only --md # Just transcript
ffcli show \x3Cid> --include-transcript --md # Detail + transcript
User info
ffcli me --md # Account info, transcript count
Scripting patterns
# Action items from recent meetings
ffcli list --limit 10 --include-summaries | jq '.[].summary.action_items'
# All meeting IDs from a date range
ffcli list --from 2026-02-01 --to 2026-02-07 | jq -r '.[].id'
# Export a summary to file
ffcli show \x3Cid> --summary-only --md > meeting-summary.md
Notes
- Default output is JSON. Use
--mdfor readable output. --include-summariesonlistadds AI summaries (increases response size).- Meeting IDs are needed for
show— get them fromlistfirst. - Dates are UTC in JSON output.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install ffcli - After installation, invoke the skill by name or use
/ffcli - Provide required inputs per the skill's parameter spec and get structured output
What is Ffcli?
Query Fireflies.ai meeting data. Use when searching meetings, viewing transcripts, reading AI summaries, extracting action items, or looking up what was disc... It is an AI Agent Skill for Claude Code / OpenClaw, with 847 downloads so far.
How do I install Ffcli?
Run "/install ffcli" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Ffcli free?
Yes, Ffcli is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Ffcli support?
Ffcli is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Ffcli?
It is built and maintained by ruigomeseu (@ruigomeseu); the current version is v1.0.1.