{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fireflies-ai",
    "name": "Fireflies AI",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/aiwithabidi/fireflies-ai",
    "canonicalUrl": "https://clawhub.ai/aiwithabidi/fireflies-ai",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/fireflies-ai",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fireflies-ai",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/fireflies.py"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fireflies-ai"
    },
    "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/fireflies-ai",
    "agentPageUrl": "https://openagent3.xyz/skills/fireflies-ai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fireflies-ai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fireflies-ai/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": "🔥 Fireflies AI",
        "body": "Query your Fireflies.ai meeting data directly — transcripts, summaries, action items, contacts, and analytics. Zero storage: all data stays on Fireflies servers."
      },
      {
        "title": "Features",
        "body": "Search meetings by keyword, date range, host, or participant\nGet full transcripts with speaker-attributed sentences\nExtract action items and meeting summaries\nMeeting analytics — sentiment, speaker stats, talk time\nContact lookup — see who you've met with\nUser info — account details and team members"
      },
      {
        "title": "Requirements",
        "body": "VariableRequiredDescriptionFIREFLIES_API_KEY✅API key from app.fireflies.ai/integrations"
      },
      {
        "title": "Quick Start",
        "body": "# List recent meetings\npython3 {baseDir}/scripts/fireflies.py meetings --limit 10\n\n# Search meetings by keyword (searches titles and spoken words)\npython3 {baseDir}/scripts/fireflies.py search \"quarterly review\"\n\n# Search within specific date range\npython3 {baseDir}/scripts/fireflies.py meetings --from 2026-01-01 --to 2026-02-01\n\n# Filter by participant email\npython3 {baseDir}/scripts/fireflies.py meetings --participant \"john@example.com\"\n\n# Filter by host email\npython3 {baseDir}/scripts/fireflies.py meetings --host \"jane@example.com\"\n\n# Get full transcript for a meeting\npython3 {baseDir}/scripts/fireflies.py transcript <meeting_id>\n\n# Get summary only\npython3 {baseDir}/scripts/fireflies.py summary <meeting_id>\n\n# Get action items only\npython3 {baseDir}/scripts/fireflies.py actions <meeting_id>\n\n# Get meeting analytics (sentiment, speaker stats)\npython3 {baseDir}/scripts/fireflies.py analytics <meeting_id>\n\n# Get attendee info for a meeting\npython3 {baseDir}/scripts/fireflies.py attendees <meeting_id>\n\n# List all contacts\npython3 {baseDir}/scripts/fireflies.py contacts\n\n# Get current user info\npython3 {baseDir}/scripts/fireflies.py user\n\n# Get team members\npython3 {baseDir}/scripts/fireflies.py users"
      },
      {
        "title": "Output Format",
        "body": "All commands output JSON by default. Add --human for readable formatted output.\n\n# JSON (default, for programmatic use)\npython3 {baseDir}/scripts/fireflies.py meetings --limit 5\n\n# Human-readable\npython3 {baseDir}/scripts/fireflies.py meetings --limit 5 --human"
      },
      {
        "title": "Script Reference",
        "body": "ScriptDescription{baseDir}/scripts/fireflies.pyMain CLI — all queries in one tool"
      },
      {
        "title": "Data Policy",
        "body": "This skill never stores meeting data locally. Every query goes directly to the Fireflies GraphQL API (https://api.fireflies.ai/graphql) and results are returned to stdout. Your meeting data stays on Fireflies servers."
      },
      {
        "title": "Credits",
        "body": "Built by M. Abidi | agxntsix.ai\nYouTube | GitHub\nPart of the AgxntSix Skill Suite for OpenClaw agents.\n\n📅 Need help setting up OpenClaw for your business? Book a free consultation"
      }
    ],
    "body": "🔥 Fireflies AI\n\nQuery your Fireflies.ai meeting data directly — transcripts, summaries, action items, contacts, and analytics. Zero storage: all data stays on Fireflies servers.\n\nFeatures\nSearch meetings by keyword, date range, host, or participant\nGet full transcripts with speaker-attributed sentences\nExtract action items and meeting summaries\nMeeting analytics — sentiment, speaker stats, talk time\nContact lookup — see who you've met with\nUser info — account details and team members\nRequirements\nVariable\tRequired\tDescription\nFIREFLIES_API_KEY\t✅\tAPI key from app.fireflies.ai/integrations\nQuick Start\n# List recent meetings\npython3 {baseDir}/scripts/fireflies.py meetings --limit 10\n\n# Search meetings by keyword (searches titles and spoken words)\npython3 {baseDir}/scripts/fireflies.py search \"quarterly review\"\n\n# Search within specific date range\npython3 {baseDir}/scripts/fireflies.py meetings --from 2026-01-01 --to 2026-02-01\n\n# Filter by participant email\npython3 {baseDir}/scripts/fireflies.py meetings --participant \"john@example.com\"\n\n# Filter by host email\npython3 {baseDir}/scripts/fireflies.py meetings --host \"jane@example.com\"\n\n# Get full transcript for a meeting\npython3 {baseDir}/scripts/fireflies.py transcript <meeting_id>\n\n# Get summary only\npython3 {baseDir}/scripts/fireflies.py summary <meeting_id>\n\n# Get action items only\npython3 {baseDir}/scripts/fireflies.py actions <meeting_id>\n\n# Get meeting analytics (sentiment, speaker stats)\npython3 {baseDir}/scripts/fireflies.py analytics <meeting_id>\n\n# Get attendee info for a meeting\npython3 {baseDir}/scripts/fireflies.py attendees <meeting_id>\n\n# List all contacts\npython3 {baseDir}/scripts/fireflies.py contacts\n\n# Get current user info\npython3 {baseDir}/scripts/fireflies.py user\n\n# Get team members\npython3 {baseDir}/scripts/fireflies.py users\n\nOutput Format\n\nAll commands output JSON by default. Add --human for readable formatted output.\n\n# JSON (default, for programmatic use)\npython3 {baseDir}/scripts/fireflies.py meetings --limit 5\n\n# Human-readable\npython3 {baseDir}/scripts/fireflies.py meetings --limit 5 --human\n\nScript Reference\nScript\tDescription\n{baseDir}/scripts/fireflies.py\tMain CLI — all queries in one tool\nData Policy\n\nThis skill never stores meeting data locally. Every query goes directly to the Fireflies GraphQL API (https://api.fireflies.ai/graphql) and results are returned to stdout. Your meeting data stays on Fireflies servers.\n\nCredits\n\nBuilt by M. Abidi | agxntsix.ai YouTube | GitHub Part of the AgxntSix Skill Suite for OpenClaw agents.\n\n📅 Need help setting up OpenClaw for your business? Book a free consultation"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/aiwithabidi/fireflies-ai",
    "publisherUrl": "https://clawhub.ai/aiwithabidi/fireflies-ai",
    "owner": "aiwithabidi",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fireflies-ai",
    "downloadUrl": "https://openagent3.xyz/downloads/fireflies-ai",
    "agentUrl": "https://openagent3.xyz/skills/fireflies-ai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fireflies-ai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fireflies-ai/agent.md"
  }
}