{
  "schemaVersion": "1.0",
  "item": {
    "slug": "datafast-analytics",
    "name": "Datafast Analytics",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/bennyqp/datafast-analytics",
    "canonicalUrl": "https://clawhub.ai/bennyqp/datafast-analytics",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/datafast-analytics",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=datafast-analytics",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "datafast-analytics",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T08:19:26.770Z",
      "expiresAt": "2026-05-09T08:19:26.770Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=datafast-analytics",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=datafast-analytics",
        "contentDisposition": "attachment; filename=\"datafast-analytics-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "datafast-analytics"
      },
      "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/datafast-analytics"
    },
    "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/datafast-analytics",
    "agentPageUrl": "https://openagent3.xyz/skills/datafast-analytics/agent",
    "manifestUrl": "https://openagent3.xyz/skills/datafast-analytics/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/datafast-analytics/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "DataFast Analytics Skill",
        "body": "Use this skill to call the DataFast API and summarize results for the user."
      },
      {
        "title": "Quick Workflow",
        "body": "Confirm the request type (overview, timeseries, realtime, breakdown, visitor, goals/payments create/delete).\nGather required inputs:\n\nDate range: startAt and endAt together or neither (overview/timeseries support ranges).\ntimezone, fields, interval, limit, offset, and any filter_* parameters.\n\n\nBuild the HTTP request with Authorization: Bearer $DATAFAST_API_KEY and Content-Type: application/json.\nExecute with curl and parse JSON.\nSummarize results in a table plus a short narrative (totals + key takeaways). Include pagination info if relevant."
      },
      {
        "title": "Setup",
        "body": "Get your API key from DataFast (starts with df_).\nStore it:\n\nmkdir -p ~/.config/datafast\necho \"df_your_key_here\" > ~/.config/datafast/api_key"
      },
      {
        "title": "Authentication",
        "body": "All requests need:\n\nDATAFAST_API_KEY=$(cat ~/.config/datafast/api_key)\ncurl ... \\\n  -H \"Authorization: Bearer $DATAFAST_API_KEY\" \\\n  -H \"Content-Type: application/json\"\n\nIf the user hasn't set up the API key, ask them to follow the setup steps above."
      },
      {
        "title": "Base URL",
        "body": "https://datafa.st/api/v1/"
      },
      {
        "title": "Reference Docs",
        "body": "Use the full API reference at {baseDir}/references/datafast-api-docs.md for endpoint details, response fields, and examples."
      },
      {
        "title": "Overview",
        "body": "GET /analytics/overview\nOptional: startAt, endAt, timezone, fields."
      },
      {
        "title": "Time Series",
        "body": "GET /analytics/timeseries\nTypical params: fields, interval (hour/day/week/month), startAt, endAt, timezone, limit, offset.\nAccepts filter_* query params for segmentation.\nNote: fields is required (e.g., fields=visitors,sessions)."
      },
      {
        "title": "Realtime",
        "body": "GET /analytics/realtime\nGET /analytics/realtime/map"
      },
      {
        "title": "Breakdowns",
        "body": "GET /analytics/devices\nGET /analytics/pages\nGET /analytics/campaigns\nGET /analytics/goals\nGET /analytics/referrers\nGET /analytics/countries\nGET /analytics/regions\nGET /analytics/cities\nGET /analytics/browsers\nGET /analytics/operating-systems\nGET /analytics/hostnames"
      },
      {
        "title": "Visitor Details",
        "body": "GET /visitors/{datafast_visitor_id}"
      },
      {
        "title": "Goals",
        "body": "Create goal: POST /goals\nDelete goals: DELETE /goals (requires at least one filter or time range; confirm scope)"
      },
      {
        "title": "Payments",
        "body": "Create payment: POST /payments\nDelete payments: DELETE /payments (confirm scope)"
      },
      {
        "title": "Destructive Actions",
        "body": "For DELETE /goals or DELETE /payments:\n\nAlways confirm exact filters and time range in plain English before executing.\nIf user asks for \"all time\" deletion, ask for explicit confirmation.\nEcho the final URL that will be called (without the API key)."
      },
      {
        "title": "Filter Syntax",
        "body": "Use filter_* params for segmentation (e.g., filter_referrer=is:X).\n\nImportant: Filter values must match the exact names from breakdown endpoints. For example, X/Twitter is stored as \"X\" (not \"x.com\" or \"twitter.com\"). When in doubt, query the breakdown first:\n\ncurl ... \"/analytics/referrers?limit=20\"\n\nThen use the exact referrer value in your filter."
      },
      {
        "title": "GET",
        "body": "DATAFAST_API_KEY=$(cat ~/.config/datafast/api_key)\ncurl -sS \"https://datafa.st/api/v1/analytics/overview?startAt=2024-01-01&endAt=2024-01-31&timezone=UTC\" \\\n  -H \"Authorization: Bearer $DATAFAST_API_KEY\" \\\n  -H \"Content-Type: application/json\""
      },
      {
        "title": "POST",
        "body": "DATAFAST_API_KEY=$(cat ~/.config/datafast/api_key)\ncurl -sS \"https://datafa.st/api/v1/goals\" \\\n  -H \"Authorization: Bearer $DATAFAST_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"datafast_visitor_id\":\"...\",\"name\":\"newsletter_signup\",\"metadata\":{\"email\":\"...\"}}'"
      },
      {
        "title": "DELETE",
        "body": "DATAFAST_API_KEY=$(cat ~/.config/datafast/api_key)\ncurl -sS -X DELETE \"https://datafa.st/api/v1/goals?name=signup&startAt=2023-01-01T00:00:00Z&endAt=2023-01-31T23:59:59Z\" \\\n  -H \"Authorization: Bearer $DATAFAST_API_KEY\""
      },
      {
        "title": "Output Expectations",
        "body": "Provide a short summary and a flat table of results.\nInclude totals and conversion/revenue metrics when present.\nFor time series, include the top-level totals and the first/last timestamps in the selected range.\nIf pagination exists, report limit, offset, and total, and ask if the user wants the next page."
      }
    ],
    "body": "DataFast Analytics Skill\n\nUse this skill to call the DataFast API and summarize results for the user.\n\nQuick Workflow\nConfirm the request type (overview, timeseries, realtime, breakdown, visitor, goals/payments create/delete).\nGather required inputs:\nDate range: startAt and endAt together or neither (overview/timeseries support ranges).\ntimezone, fields, interval, limit, offset, and any filter_* parameters.\nBuild the HTTP request with Authorization: Bearer $DATAFAST_API_KEY and Content-Type: application/json.\nExecute with curl and parse JSON.\nSummarize results in a table plus a short narrative (totals + key takeaways). Include pagination info if relevant.\nSetup\nGet your API key from DataFast (starts with df_).\nStore it:\nmkdir -p ~/.config/datafast\necho \"df_your_key_here\" > ~/.config/datafast/api_key\n\nAuthentication\n\nAll requests need:\n\nDATAFAST_API_KEY=$(cat ~/.config/datafast/api_key)\ncurl ... \\\n  -H \"Authorization: Bearer $DATAFAST_API_KEY\" \\\n  -H \"Content-Type: application/json\"\n\n\nIf the user hasn't set up the API key, ask them to follow the setup steps above.\n\nBase URL\n\nhttps://datafa.st/api/v1/\n\nReference Docs\n\nUse the full API reference at {baseDir}/references/datafast-api-docs.md for endpoint details, response fields, and examples.\n\nEndpoint Guidance\nOverview\nGET /analytics/overview\nOptional: startAt, endAt, timezone, fields.\nTime Series\nGET /analytics/timeseries\nTypical params: fields, interval (hour/day/week/month), startAt, endAt, timezone, limit, offset.\nAccepts filter_* query params for segmentation.\nNote: fields is required (e.g., fields=visitors,sessions).\nRealtime\nGET /analytics/realtime\nGET /analytics/realtime/map\nBreakdowns\nGET /analytics/devices\nGET /analytics/pages\nGET /analytics/campaigns\nGET /analytics/goals\nGET /analytics/referrers\nGET /analytics/countries\nGET /analytics/regions\nGET /analytics/cities\nGET /analytics/browsers\nGET /analytics/operating-systems\nGET /analytics/hostnames\nVisitor Details\nGET /visitors/{datafast_visitor_id}\nGoals\nCreate goal: POST /goals\nDelete goals: DELETE /goals (requires at least one filter or time range; confirm scope)\nPayments\nCreate payment: POST /payments\nDelete payments: DELETE /payments (confirm scope)\nDestructive Actions\n\nFor DELETE /goals or DELETE /payments:\n\nAlways confirm exact filters and time range in plain English before executing.\nIf user asks for \"all time\" deletion, ask for explicit confirmation.\nEcho the final URL that will be called (without the API key).\nFilter Syntax\n\nUse filter_* params for segmentation (e.g., filter_referrer=is:X).\n\nImportant: Filter values must match the exact names from breakdown endpoints. For example, X/Twitter is stored as \"X\" (not \"x.com\" or \"twitter.com\"). When in doubt, query the breakdown first:\n\ncurl ... \"/analytics/referrers?limit=20\"\n\n\nThen use the exact referrer value in your filter.\n\nExample Command Patterns\nGET\nDATAFAST_API_KEY=$(cat ~/.config/datafast/api_key)\ncurl -sS \"https://datafa.st/api/v1/analytics/overview?startAt=2024-01-01&endAt=2024-01-31&timezone=UTC\" \\\n  -H \"Authorization: Bearer $DATAFAST_API_KEY\" \\\n  -H \"Content-Type: application/json\"\n\nPOST\nDATAFAST_API_KEY=$(cat ~/.config/datafast/api_key)\ncurl -sS \"https://datafa.st/api/v1/goals\" \\\n  -H \"Authorization: Bearer $DATAFAST_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"datafast_visitor_id\":\"...\",\"name\":\"newsletter_signup\",\"metadata\":{\"email\":\"...\"}}'\n\nDELETE\nDATAFAST_API_KEY=$(cat ~/.config/datafast/api_key)\ncurl -sS -X DELETE \"https://datafa.st/api/v1/goals?name=signup&startAt=2023-01-01T00:00:00Z&endAt=2023-01-31T23:59:59Z\" \\\n  -H \"Authorization: Bearer $DATAFAST_API_KEY\"\n\nOutput Expectations\nProvide a short summary and a flat table of results.\nInclude totals and conversion/revenue metrics when present.\nFor time series, include the top-level totals and the first/last timestamps in the selected range.\nIf pagination exists, report limit, offset, and total, and ask if the user wants the next page."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/bennyqp/datafast-analytics",
    "publisherUrl": "https://clawhub.ai/bennyqp/datafast-analytics",
    "owner": "bennyqp",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/datafast-analytics",
    "downloadUrl": "https://openagent3.xyz/downloads/datafast-analytics",
    "agentUrl": "https://openagent3.xyz/skills/datafast-analytics/agent",
    "manifestUrl": "https://openagent3.xyz/skills/datafast-analytics/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/datafast-analytics/agent.md"
  }
}