{
  "schemaVersion": "1.0",
  "item": {
    "slug": "amplitude",
    "name": "Amplitude",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/aiwithabidi/amplitude",
    "canonicalUrl": "https://clawhub.ai/aiwithabidi/amplitude",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/amplitude",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=amplitude",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/amplitude.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-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/amplitude"
    },
    "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/amplitude",
    "agentPageUrl": "https://openagent3.xyz/skills/amplitude/agent",
    "manifestUrl": "https://openagent3.xyz/skills/amplitude/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/amplitude/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": "📉 Amplitude",
        "body": "Amplitude product analytics — track events, analyze user behavior, run cohort analysis, manage user properties, and query funnel/retention data via the Amplitude API."
      },
      {
        "title": "Features",
        "body": "Event tracking — log user events with properties\nUser analytics — active users, sessions, engagement\nFunnel analysis — conversion through event sequences\nRetention analysis — user return rates over time\nCohort management — create and manage user cohorts\nUser properties — set and query user attributes\nRevenue analytics — LTV, ARPU, revenue tracking\nSegmentation — query by properties and events\nEvent segmentation — event counts and breakdowns\nDashboard export — export chart data"
      },
      {
        "title": "Requirements",
        "body": "VariableRequiredDescriptionAMPLITUDE_API_KEY✅API key/token for AmplitudeAMPLITUDE_SECRET_KEY✅Amplitude secret key for Export/Dashboard APIs"
      },
      {
        "title": "Quick Start",
        "body": "# Track an event\npython3 {baseDir}/scripts/amplitude.py track '{\"user_id\":\"user123\",\"event_type\":\"purchase\",\"event_properties\":{\"amount\":29.99}}'\n\n# Track batch events\npython3 {baseDir}/scripts/amplitude.py track-batch events.json\n\n# Set user properties\npython3 {baseDir}/scripts/amplitude.py identify '{\"user_id\":\"user123\",\"user_properties\":{\"plan\":\"pro\",\"company\":\"Acme\"}}'\n\n# Get active user counts\npython3 {baseDir}/scripts/amplitude.py active-users --start 2026-01-01 --end 2026-02-01"
      },
      {
        "title": "track",
        "body": "Track an event.\n\npython3 {baseDir}/scripts/amplitude.py track '{\"user_id\":\"user123\",\"event_type\":\"purchase\",\"event_properties\":{\"amount\":29.99}}'"
      },
      {
        "title": "track-batch",
        "body": "Track batch events.\n\npython3 {baseDir}/scripts/amplitude.py track-batch events.json"
      },
      {
        "title": "identify",
        "body": "Set user properties.\n\npython3 {baseDir}/scripts/amplitude.py identify '{\"user_id\":\"user123\",\"user_properties\":{\"plan\":\"pro\",\"company\":\"Acme\"}}'"
      },
      {
        "title": "active-users",
        "body": "Get active user counts.\n\npython3 {baseDir}/scripts/amplitude.py active-users --start 2026-01-01 --end 2026-02-01"
      },
      {
        "title": "events",
        "body": "Get event data.\n\npython3 {baseDir}/scripts/amplitude.py events --start 2026-01-01 --end 2026-02-01 --event purchase"
      },
      {
        "title": "funnel",
        "body": "Run funnel analysis.\n\npython3 {baseDir}/scripts/amplitude.py funnel '{\"events\":[{\"event_type\":\"page_view\"},{\"event_type\":\"signup\"},{\"event_type\":\"purchase\"}]}' --start 2026-01-01 --end 2026-02-01"
      },
      {
        "title": "retention",
        "body": "Retention analysis.\n\npython3 {baseDir}/scripts/amplitude.py retention --start 2026-01-01 --end 2026-02-01"
      },
      {
        "title": "cohorts",
        "body": "List cohorts.\n\npython3 {baseDir}/scripts/amplitude.py cohorts"
      },
      {
        "title": "cohort-get",
        "body": "Get cohort details.\n\npython3 {baseDir}/scripts/amplitude.py cohort-get abc123"
      },
      {
        "title": "revenue",
        "body": "Revenue analysis.\n\npython3 {baseDir}/scripts/amplitude.py revenue --start 2026-01-01 --end 2026-02-01"
      },
      {
        "title": "user-search",
        "body": "Search for a user.\n\npython3 {baseDir}/scripts/amplitude.py user-search \"user@example.com\""
      },
      {
        "title": "user-activity",
        "body": "Get user activity.\n\npython3 {baseDir}/scripts/amplitude.py user-activity user123"
      },
      {
        "title": "segments",
        "body": "Event segmentation query.\n\npython3 {baseDir}/scripts/amplitude.py segments --event purchase --group-by platform --start 2026-01-01 --end 2026-02-01"
      },
      {
        "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/amplitude.py track --limit 5\n\n# Human-readable\npython3 {baseDir}/scripts/amplitude.py track --limit 5 --human"
      },
      {
        "title": "Script Reference",
        "body": "ScriptDescription{baseDir}/scripts/amplitude.pyMain CLI — all Amplitude operations"
      },
      {
        "title": "Data Policy",
        "body": "This skill never stores data locally. All requests go directly to the Amplitude API and results are returned to stdout. Your data stays on Amplitude 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": "📉 Amplitude\n\nAmplitude product analytics — track events, analyze user behavior, run cohort analysis, manage user properties, and query funnel/retention data via the Amplitude API.\n\nFeatures\nEvent tracking — log user events with properties\nUser analytics — active users, sessions, engagement\nFunnel analysis — conversion through event sequences\nRetention analysis — user return rates over time\nCohort management — create and manage user cohorts\nUser properties — set and query user attributes\nRevenue analytics — LTV, ARPU, revenue tracking\nSegmentation — query by properties and events\nEvent segmentation — event counts and breakdowns\nDashboard export — export chart data\nRequirements\nVariable\tRequired\tDescription\nAMPLITUDE_API_KEY\t✅\tAPI key/token for Amplitude\nAMPLITUDE_SECRET_KEY\t✅\tAmplitude secret key for Export/Dashboard APIs\nQuick Start\n# Track an event\npython3 {baseDir}/scripts/amplitude.py track '{\"user_id\":\"user123\",\"event_type\":\"purchase\",\"event_properties\":{\"amount\":29.99}}'\n\n# Track batch events\npython3 {baseDir}/scripts/amplitude.py track-batch events.json\n\n# Set user properties\npython3 {baseDir}/scripts/amplitude.py identify '{\"user_id\":\"user123\",\"user_properties\":{\"plan\":\"pro\",\"company\":\"Acme\"}}'\n\n# Get active user counts\npython3 {baseDir}/scripts/amplitude.py active-users --start 2026-01-01 --end 2026-02-01\n\nCommands\ntrack\n\nTrack an event.\n\npython3 {baseDir}/scripts/amplitude.py track '{\"user_id\":\"user123\",\"event_type\":\"purchase\",\"event_properties\":{\"amount\":29.99}}'\n\ntrack-batch\n\nTrack batch events.\n\npython3 {baseDir}/scripts/amplitude.py track-batch events.json\n\nidentify\n\nSet user properties.\n\npython3 {baseDir}/scripts/amplitude.py identify '{\"user_id\":\"user123\",\"user_properties\":{\"plan\":\"pro\",\"company\":\"Acme\"}}'\n\nactive-users\n\nGet active user counts.\n\npython3 {baseDir}/scripts/amplitude.py active-users --start 2026-01-01 --end 2026-02-01\n\nevents\n\nGet event data.\n\npython3 {baseDir}/scripts/amplitude.py events --start 2026-01-01 --end 2026-02-01 --event purchase\n\nfunnel\n\nRun funnel analysis.\n\npython3 {baseDir}/scripts/amplitude.py funnel '{\"events\":[{\"event_type\":\"page_view\"},{\"event_type\":\"signup\"},{\"event_type\":\"purchase\"}]}' --start 2026-01-01 --end 2026-02-01\n\nretention\n\nRetention analysis.\n\npython3 {baseDir}/scripts/amplitude.py retention --start 2026-01-01 --end 2026-02-01\n\ncohorts\n\nList cohorts.\n\npython3 {baseDir}/scripts/amplitude.py cohorts\n\ncohort-get\n\nGet cohort details.\n\npython3 {baseDir}/scripts/amplitude.py cohort-get abc123\n\nrevenue\n\nRevenue analysis.\n\npython3 {baseDir}/scripts/amplitude.py revenue --start 2026-01-01 --end 2026-02-01\n\nuser-search\n\nSearch for a user.\n\npython3 {baseDir}/scripts/amplitude.py user-search \"user@example.com\"\n\nuser-activity\n\nGet user activity.\n\npython3 {baseDir}/scripts/amplitude.py user-activity user123\n\nsegments\n\nEvent segmentation query.\n\npython3 {baseDir}/scripts/amplitude.py segments --event purchase --group-by platform --start 2026-01-01 --end 2026-02-01\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/amplitude.py track --limit 5\n\n# Human-readable\npython3 {baseDir}/scripts/amplitude.py track --limit 5 --human\n\nScript Reference\nScript\tDescription\n{baseDir}/scripts/amplitude.py\tMain CLI — all Amplitude operations\nData Policy\n\nThis skill never stores data locally. All requests go directly to the Amplitude API and results are returned to stdout. Your data stays on Amplitude 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/amplitude",
    "publisherUrl": "https://clawhub.ai/aiwithabidi/amplitude",
    "owner": "aiwithabidi",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/amplitude",
    "downloadUrl": "https://openagent3.xyz/downloads/amplitude",
    "agentUrl": "https://openagent3.xyz/skills/amplitude/agent",
    "manifestUrl": "https://openagent3.xyz/skills/amplitude/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/amplitude/agent.md"
  }
}