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.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install ffcli - 安装完成后,直接呼叫该 Skill 的名称或使用
/ffcli触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Ffcli 是什么?
Query Fireflies.ai meeting data. Use when searching meetings, viewing transcripts, reading AI summaries, extracting action items, or looking up what was disc... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 847 次。
如何安装 Ffcli?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install ffcli」即可一键安装,无需额外配置。
Ffcli 是免费的吗?
是的,Ffcli 完全免费(开源免费),可自由下载、安装和使用。
Ffcli 支持哪些平台?
Ffcli 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Ffcli?
由 ruigomeseu(@ruigomeseu)开发并维护,当前版本 v1.0.1。