{
  "schemaVersion": "1.0",
  "item": {
    "slug": "firefly",
    "name": "Firefly AI",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/codes71/firefly",
    "canonicalUrl": "https://clawhub.ai/codes71/firefly",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/firefly",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=firefly",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api.md",
      "scripts/firefly.cjs"
    ],
    "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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/firefly"
    },
    "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/firefly",
    "agentPageUrl": "https://openagent3.xyz/skills/firefly/agent",
    "manifestUrl": "https://openagent3.xyz/skills/firefly/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/firefly/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": "Firefly AI Integration",
        "body": "Pull meeting data from Firefly AI via their GraphQL API."
      },
      {
        "title": "Setup",
        "body": "Requires FIREFLY_API_KEY environment variable. Store in gateway env config."
      },
      {
        "title": "Usage",
        "body": "Run the script at scripts/firefly.cjs with Node.js:\n\nFIREFLY_API_KEY=<key> node scripts/firefly.cjs <command> [options]"
      },
      {
        "title": "Commands",
        "body": "list — List recent meetings. Options: --days <n> (default 14), --limit <n> (default 50)\ntranscript — Full transcript with timestamps. Requires --id <meeting_id>\nsummary — Meeting summary, overview, and action items. Requires --id <meeting_id>\nsearch — Search by keyword in titles/content. Requires --keyword <text>, optional --limit <n>"
      },
      {
        "title": "Workflow",
        "body": "Use list to find meetings and get IDs\nUse summary or transcript with the ID to get details\nUse search to find meetings by topic"
      },
      {
        "title": "For custom queries",
        "body": "Build GraphQL queries directly against https://api.fireflies.ai/graphql. See references/api.md for full schema and available fields."
      },
      {
        "title": "Large transcripts",
        "body": "Full transcripts can be very long (2000+ sentences). When a user asks for a transcript:\n\nSave to a file in the workspace if they want to keep it\nSummarize or extract relevant sections if they want specific info\nShow a preview (first ~50 lines) and ask if they want more"
      }
    ],
    "body": "Firefly AI Integration\n\nPull meeting data from Firefly AI via their GraphQL API.\n\nSetup\n\nRequires FIREFLY_API_KEY environment variable. Store in gateway env config.\n\nUsage\n\nRun the script at scripts/firefly.cjs with Node.js:\n\nFIREFLY_API_KEY=<key> node scripts/firefly.cjs <command> [options]\n\nCommands\nlist — List recent meetings. Options: --days <n> (default 14), --limit <n> (default 50)\ntranscript — Full transcript with timestamps. Requires --id <meeting_id>\nsummary — Meeting summary, overview, and action items. Requires --id <meeting_id>\nsearch — Search by keyword in titles/content. Requires --keyword <text>, optional --limit <n>\nWorkflow\nUse list to find meetings and get IDs\nUse summary or transcript with the ID to get details\nUse search to find meetings by topic\nFor custom queries\n\nBuild GraphQL queries directly against https://api.fireflies.ai/graphql. See references/api.md for full schema and available fields.\n\nLarge transcripts\n\nFull transcripts can be very long (2000+ sentences). When a user asks for a transcript:\n\nSave to a file in the workspace if they want to keep it\nSummarize or extract relevant sections if they want specific info\nShow a preview (first ~50 lines) and ask if they want more"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/codes71/firefly",
    "publisherUrl": "https://clawhub.ai/codes71/firefly",
    "owner": "codes71",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/firefly",
    "downloadUrl": "https://openagent3.xyz/downloads/firefly",
    "agentUrl": "https://openagent3.xyz/skills/firefly/agent",
    "manifestUrl": "https://openagent3.xyz/skills/firefly/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/firefly/agent.md"
  }
}