{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawhq-dashboard",
    "name": "OpenClaw Dashboard Connector - ClawHQ",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zachmael/clawhq-dashboard",
    "canonicalUrl": "https://clawhub.ai/zachmael/clawhq-dashboard",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clawhq-dashboard",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawhq-dashboard",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "package.json",
      "README.md",
      "setup.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": "clawhq-dashboard",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T11:13:28.378Z",
      "expiresAt": "2026-05-13T11:13:28.378Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawhq-dashboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawhq-dashboard",
        "contentDisposition": "attachment; filename=\"clawhq-dashboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawhq-dashboard"
      },
      "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/clawhq-dashboard"
    },
    "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/clawhq-dashboard",
    "agentPageUrl": "https://openagent3.xyz/skills/clawhq-dashboard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawhq-dashboard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawhq-dashboard/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": "ClawHQ Dashboard Connector",
        "body": "Report agent status, heartbeats, and task completions to your ClawHQ dashboard."
      },
      {
        "title": "Requirements",
        "body": "Environment variable must be set:\n\nCLAWHQ_API_KEY — Your ClawHQ API key (generate in Settings → API Keys)"
      },
      {
        "title": "On Session Start",
        "body": "Report status \"working\" with the current task:\n\nWindows (PowerShell):\n\n$headers = @{ \"Authorization\" = \"Bearer $env:CLAWHQ_API_KEY\"; \"Content-Type\" = \"application/json\" }\n$body = @{ agent = \"<agent_name>\"; status = \"working\"; task = \"<current task summary>\" } | ConvertTo-Json\nInvoke-RestMethod -Uri \"https://app.clawhq.co/api/agents/report\" -Method Post -Headers $headers -Body $body\n\nMac/Linux (curl):\n\ncurl -s -X POST \"https://app.clawhq.co/api/agents/report\" \\\n  -H \"Authorization: Bearer $CLAWHQ_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"agent\":\"<agent_name>\",\"status\":\"working\",\"task\":\"<current task summary>\"}'"
      },
      {
        "title": "On Session End",
        "body": "Report status \"idle\":\n\nWindows:\n\n$headers = @{ \"Authorization\" = \"Bearer $env:CLAWHQ_API_KEY\"; \"Content-Type\" = \"application/json\" }\n$body = @{ agent = \"<agent_name>\"; status = \"idle\" } | ConvertTo-Json\nInvoke-RestMethod -Uri \"https://app.clawhq.co/api/agents/report\" -Method Post -Headers $headers -Body $body\n\nMac/Linux:\n\ncurl -s -X POST \"https://app.clawhq.co/api/agents/report\" \\\n  -H \"Authorization: Bearer $CLAWHQ_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"agent\":\"<agent_name>\",\"status\":\"idle\"}'"
      },
      {
        "title": "On Heartbeat",
        "body": "Post a heartbeat to keep the dashboard current. Use the same commands above with \"status\":\"heartbeat\"."
      },
      {
        "title": "Notes",
        "body": "All calls should be fire-and-forget — wrap in try/catch so failures never block the agent.\nReplace <agent_name> with the agent's name (e.g. \"Eros\", \"Atlas\").\nThe API auto-creates agents on first report — no setup needed in the dashboard."
      }
    ],
    "body": "ClawHQ Dashboard Connector\n\nReport agent status, heartbeats, and task completions to your ClawHQ dashboard.\n\nRequirements\n\nEnvironment variable must be set:\n\nCLAWHQ_API_KEY — Your ClawHQ API key (generate in Settings → API Keys)\nBehavior\nOn Session Start\n\nReport status \"working\" with the current task:\n\nWindows (PowerShell):\n\n$headers = @{ \"Authorization\" = \"Bearer $env:CLAWHQ_API_KEY\"; \"Content-Type\" = \"application/json\" }\n$body = @{ agent = \"<agent_name>\"; status = \"working\"; task = \"<current task summary>\" } | ConvertTo-Json\nInvoke-RestMethod -Uri \"https://app.clawhq.co/api/agents/report\" -Method Post -Headers $headers -Body $body\n\n\nMac/Linux (curl):\n\ncurl -s -X POST \"https://app.clawhq.co/api/agents/report\" \\\n  -H \"Authorization: Bearer $CLAWHQ_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"agent\":\"<agent_name>\",\"status\":\"working\",\"task\":\"<current task summary>\"}'\n\nOn Session End\n\nReport status \"idle\":\n\nWindows:\n\n$headers = @{ \"Authorization\" = \"Bearer $env:CLAWHQ_API_KEY\"; \"Content-Type\" = \"application/json\" }\n$body = @{ agent = \"<agent_name>\"; status = \"idle\" } | ConvertTo-Json\nInvoke-RestMethod -Uri \"https://app.clawhq.co/api/agents/report\" -Method Post -Headers $headers -Body $body\n\n\nMac/Linux:\n\ncurl -s -X POST \"https://app.clawhq.co/api/agents/report\" \\\n  -H \"Authorization: Bearer $CLAWHQ_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"agent\":\"<agent_name>\",\"status\":\"idle\"}'\n\nOn Heartbeat\n\nPost a heartbeat to keep the dashboard current. Use the same commands above with \"status\":\"heartbeat\".\n\nNotes\nAll calls should be fire-and-forget — wrap in try/catch so failures never block the agent.\nReplace <agent_name> with the agent's name (e.g. \"Eros\", \"Atlas\").\nThe API auto-creates agents on first report — no setup needed in the dashboard."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zachmael/clawhq-dashboard",
    "publisherUrl": "https://clawhub.ai/zachmael/clawhq-dashboard",
    "owner": "zachmael",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawhq-dashboard",
    "downloadUrl": "https://openagent3.xyz/downloads/clawhq-dashboard",
    "agentUrl": "https://openagent3.xyz/skills/clawhq-dashboard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawhq-dashboard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawhq-dashboard/agent.md"
  }
}