{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ffcli",
    "name": "Ffcli",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ruigomeseu/ffcli",
    "canonicalUrl": "https://clawhub.ai/ruigomeseu/ffcli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ffcli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ffcli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "ffcli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T05:12:46.558Z",
      "expiresAt": "2026-05-10T05:12:46.558Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ffcli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ffcli",
        "contentDisposition": "attachment; filename=\"ffcli-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ffcli"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ffcli"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/ffcli",
    "agentPageUrl": "https://openagent3.xyz/skills/ffcli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ffcli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ffcli/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "ffcli — Fireflies.ai CLI",
        "body": "Query meeting recordings, transcripts, and AI summaries from Fireflies.ai."
      },
      {
        "title": "Setup",
        "body": "Install via Homebrew or npm:\n\nbrew install ruigomeseu/tap/ffcli\n# or\nnpm install -g @ruigomeseu/ffcli\n\nAuthenticate with your Fireflies API key (get it from Settings → Developer Settings):\n\nffcli auth <your-api-key>    # Store key locally (~/.config/ffcli/)\nffcli auth --check           # Verify it works\n\nAlternatively, set the FIREFLIES_API_KEY environment variable (takes precedence over stored config). In OpenClaw, configure it via skills.entries.ffcli.apiKey in openclaw.json.\n\nNote: 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."
      },
      {
        "title": "List meetings",
        "body": "ffcli list --limit 10 --md                           # Recent meetings\nffcli list --from 2026-02-01 --to 2026-02-12 --md    # Date range\nffcli list --participant vinney@opennode.com --md     # By participant\nffcli list --search \"standup\" --md                    # By title keyword\nffcli list --limit 5 --include-summaries              # With AI summaries (JSON)"
      },
      {
        "title": "Show meeting detail",
        "body": "ffcli show <id> --md                    # Full detail (markdown)\nffcli show <id> --summary-only --md     # Just AI summary\nffcli show <id> --transcript-only --md  # Just transcript\nffcli show <id> --include-transcript --md  # Detail + transcript"
      },
      {
        "title": "User info",
        "body": "ffcli me --md                           # Account info, transcript count"
      },
      {
        "title": "Scripting patterns",
        "body": "# Action items from recent meetings\nffcli list --limit 10 --include-summaries | jq '.[].summary.action_items'\n\n# All meeting IDs from a date range\nffcli list --from 2026-02-01 --to 2026-02-07 | jq -r '.[].id'\n\n# Export a summary to file\nffcli show <id> --summary-only --md > meeting-summary.md"
      },
      {
        "title": "Notes",
        "body": "Default output is JSON. Use --md for readable output.\n--include-summaries on list adds AI summaries (increases response size).\nMeeting IDs are needed for show — get them from list first.\nDates are UTC in JSON output."
      }
    ],
    "body": "ffcli — Fireflies.ai CLI\n\nQuery meeting recordings, transcripts, and AI summaries from Fireflies.ai.\n\nSetup\n\nInstall via Homebrew or npm:\n\nbrew install ruigomeseu/tap/ffcli\n# or\nnpm install -g @ruigomeseu/ffcli\n\n\nAuthenticate with your Fireflies API key (get it from Settings → Developer Settings):\n\nffcli auth <your-api-key>    # Store key locally (~/.config/ffcli/)\nffcli auth --check           # Verify it works\n\n\nAlternatively, set the FIREFLIES_API_KEY environment variable (takes precedence over stored config). In OpenClaw, configure it via skills.entries.ffcli.apiKey in openclaw.json.\n\nNote: 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.\n\nCommands\nList meetings\nffcli list --limit 10 --md                           # Recent meetings\nffcli list --from 2026-02-01 --to 2026-02-12 --md    # Date range\nffcli list --participant vinney@opennode.com --md     # By participant\nffcli list --search \"standup\" --md                    # By title keyword\nffcli list --limit 5 --include-summaries              # With AI summaries (JSON)\n\nShow meeting detail\nffcli show <id> --md                    # Full detail (markdown)\nffcli show <id> --summary-only --md     # Just AI summary\nffcli show <id> --transcript-only --md  # Just transcript\nffcli show <id> --include-transcript --md  # Detail + transcript\n\nUser info\nffcli me --md                           # Account info, transcript count\n\nScripting patterns\n# Action items from recent meetings\nffcli list --limit 10 --include-summaries | jq '.[].summary.action_items'\n\n# All meeting IDs from a date range\nffcli list --from 2026-02-01 --to 2026-02-07 | jq -r '.[].id'\n\n# Export a summary to file\nffcli show <id> --summary-only --md > meeting-summary.md\n\nNotes\nDefault output is JSON. Use --md for readable output.\n--include-summaries on list adds AI summaries (increases response size).\nMeeting IDs are needed for show — get them from list first.\nDates are UTC in JSON output."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ruigomeseu/ffcli",
    "publisherUrl": "https://clawhub.ai/ruigomeseu/ffcli",
    "owner": "ruigomeseu",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ffcli",
    "downloadUrl": "https://openagent3.xyz/downloads/ffcli",
    "agentUrl": "https://openagent3.xyz/skills/ffcli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ffcli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ffcli/agent.md"
  }
}