{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawpulse",
    "name": "ClawPulse",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/pierreeurope/clawpulse",
    "canonicalUrl": "https://clawhub.ai/pierreeurope/clawpulse",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clawpulse",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawpulse",
    "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": "clawpulse",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:14:39.369Z",
      "expiresAt": "2026-05-06T12:14:39.369Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawpulse",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawpulse",
        "contentDisposition": "attachment; filename=\"clawpulse-0.3.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawpulse"
      },
      "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/clawpulse"
    },
    "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/clawpulse",
    "agentPageUrl": "https://openagent3.xyz/skills/clawpulse/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawpulse/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawpulse/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": "ClawPulse - Community Analytics for OpenClaw",
        "body": "Connect your agent to the OpenClaw community dashboard at https://clawpulse.vercel.app"
      },
      {
        "title": "Step 1: Install CLI",
        "body": "npm install -g openclaw-pulse"
      },
      {
        "title": "Step 2: Authenticate",
        "body": "The agent needs a GitHub token to push stats. Two options:\n\nOption A: User runs clawpulse setup in their terminal\nThis opens a GitHub device flow - user enters a code at github.com/login/device.\n\nOption B: Agent uses existing GitHub token\nIf the user has gh CLI authenticated, extract the token:\n\nTOKEN=$(gh auth token)\nmkdir -p ~/.clawpulse\necho \"{\\\"apiUrl\\\":\\\"https://clawpulse.vercel.app\\\",\\\"githubToken\\\":\\\"$TOKEN\\\"}\" > ~/.clawpulse/config.json"
      },
      {
        "title": "Step 3: Push stats",
        "body": "clawpulse push\n\nThis collects session stats from ~/.openclaw/agents/main/sessions/*.jsonl and pushes aggregate numbers to the ClawPulse API. No message content is ever collected."
      },
      {
        "title": "Step 4: Set up auto-push via OpenClaw cron",
        "body": "Create TWO cron jobs for auto-push at midnight and noon:\n\n{\n  \"name\": \"ClawPulse Push (midnight)\",\n  \"schedule\": { \"kind\": \"cron\", \"expr\": \"0 0 * * *\" },\n  \"payload\": { \"kind\": \"agentTurn\", \"message\": \"Run: clawpulse push --silent\" },\n  \"sessionTarget\": \"isolated\",\n  \"delivery\": { \"mode\": \"none\" }\n}\n\n{\n  \"name\": \"ClawPulse Push (noon)\",\n  \"schedule\": { \"kind\": \"cron\", \"expr\": \"0 12 * * *\" },\n  \"payload\": { \"kind\": \"agentTurn\", \"message\": \"Run: clawpulse push --silent\" },\n  \"sessionTarget\": \"isolated\",\n  \"delivery\": { \"mode\": \"none\" }\n}"
      },
      {
        "title": "What Gets Collected (Privacy)",
        "body": "Only aggregate numbers per day:\n\nToken counts (input, output, cache read, cache write)\nModel names and usage counts\nTool names and usage counts\nCost estimates (at API rates)\nMessage counts\nSession counts\n\nNever collected: message content, file paths, tool arguments, personal data."
      },
      {
        "title": "Commands",
        "body": "CommandWhat it doesclawpulse setupInteractive: login + push + show instructionsclawpulse pushCollect and push statsclawpulse push --silentSame but no output (for cron)clawpulse collectJust collect stats locallyclawpulse statusShow stats summaryclawpulse loginRe-authenticate with GitHub"
      },
      {
        "title": "Dashboard",
        "body": "Personal: https://clawpulse.vercel.app/dashboard (after login)\nCommunity: https://clawpulse.vercel.app\nLeaderboard: https://clawpulse.vercel.app/community"
      },
      {
        "title": "Source",
        "body": "npm: https://www.npmjs.com/package/openclaw-pulse\nGitHub: https://github.com/pierreeurope/clawpulse"
      }
    ],
    "body": "ClawPulse - Community Analytics for OpenClaw\n\nConnect your agent to the OpenClaw community dashboard at https://clawpulse.vercel.app\n\nSetup (Agent does this automatically)\nStep 1: Install CLI\nnpm install -g openclaw-pulse\n\nStep 2: Authenticate\n\nThe agent needs a GitHub token to push stats. Two options:\n\nOption A: User runs clawpulse setup in their terminal This opens a GitHub device flow - user enters a code at github.com/login/device.\n\nOption B: Agent uses existing GitHub token If the user has gh CLI authenticated, extract the token:\n\nTOKEN=$(gh auth token)\nmkdir -p ~/.clawpulse\necho \"{\\\"apiUrl\\\":\\\"https://clawpulse.vercel.app\\\",\\\"githubToken\\\":\\\"$TOKEN\\\"}\" > ~/.clawpulse/config.json\n\nStep 3: Push stats\nclawpulse push\n\n\nThis collects session stats from ~/.openclaw/agents/main/sessions/*.jsonl and pushes aggregate numbers to the ClawPulse API. No message content is ever collected.\n\nStep 4: Set up auto-push via OpenClaw cron\n\nCreate TWO cron jobs for auto-push at midnight and noon:\n\n{\n  \"name\": \"ClawPulse Push (midnight)\",\n  \"schedule\": { \"kind\": \"cron\", \"expr\": \"0 0 * * *\" },\n  \"payload\": { \"kind\": \"agentTurn\", \"message\": \"Run: clawpulse push --silent\" },\n  \"sessionTarget\": \"isolated\",\n  \"delivery\": { \"mode\": \"none\" }\n}\n\n{\n  \"name\": \"ClawPulse Push (noon)\",\n  \"schedule\": { \"kind\": \"cron\", \"expr\": \"0 12 * * *\" },\n  \"payload\": { \"kind\": \"agentTurn\", \"message\": \"Run: clawpulse push --silent\" },\n  \"sessionTarget\": \"isolated\",\n  \"delivery\": { \"mode\": \"none\" }\n}\n\nWhat Gets Collected (Privacy)\n\nOnly aggregate numbers per day:\n\nToken counts (input, output, cache read, cache write)\nModel names and usage counts\nTool names and usage counts\nCost estimates (at API rates)\nMessage counts\nSession counts\n\nNever collected: message content, file paths, tool arguments, personal data.\n\nCommands\nCommand\tWhat it does\nclawpulse setup\tInteractive: login + push + show instructions\nclawpulse push\tCollect and push stats\nclawpulse push --silent\tSame but no output (for cron)\nclawpulse collect\tJust collect stats locally\nclawpulse status\tShow stats summary\nclawpulse login\tRe-authenticate with GitHub\nDashboard\nPersonal: https://clawpulse.vercel.app/dashboard (after login)\nCommunity: https://clawpulse.vercel.app\nLeaderboard: https://clawpulse.vercel.app/community\nSource\nnpm: https://www.npmjs.com/package/openclaw-pulse\nGitHub: https://github.com/pierreeurope/clawpulse"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/pierreeurope/clawpulse",
    "publisherUrl": "https://clawhub.ai/pierreeurope/clawpulse",
    "owner": "pierreeurope",
    "version": "0.3.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawpulse",
    "downloadUrl": "https://openagent3.xyz/downloads/clawpulse",
    "agentUrl": "https://openagent3.xyz/skills/clawpulse/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawpulse/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawpulse/agent.md"
  }
}