Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Query Fireflies.ai meeting data. Use when searching meetings, viewing transcripts, reading AI summaries, extracting action items, or looking up what was disc...
Query Fireflies.ai meeting data. Use when searching meetings, viewing transcripts, reading AI summaries, extracting action items, or looking up what was disc...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Query meeting recordings, transcripts, and AI summaries from Fireflies.ai.
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 <your-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.
ffcli list --limit 10 --md # Recent meetings ffcli list --from 2026-02-01 --to 2026-02-12 --md # Date range ffcli list --participant vinney@opennode.com --md # By participant ffcli list --search "standup" --md # By title keyword ffcli list --limit 5 --include-summaries # With AI summaries (JSON)
ffcli show <id> --md # Full detail (markdown) ffcli show <id> --summary-only --md # Just AI summary ffcli show <id> --transcript-only --md # Just transcript ffcli show <id> --include-transcript --md # Detail + transcript
ffcli me --md # Account info, transcript count
# 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 <id> --summary-only --md > meeting-summary.md
Default output is JSON. Use --md for readable output. --include-summaries on list adds AI summaries (increases response size). Meeting IDs are needed for show โ get them from list first. Dates are UTC in JSON output.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.