{
  "schemaVersion": "1.0",
  "item": {
    "slug": "thingsboard-skill",
    "name": "ThingsBot",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/hoangnv170752/thingsboard-skill",
    "canonicalUrl": "https://clawhub.ai/hoangnv170752/thingsboard-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/thingsboard-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=thingsboard-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "credentials.json"
    ],
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.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/thingsboard-skill"
    },
    "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/thingsboard-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/thingsboard-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/thingsboard-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/thingsboard-skill/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": "ThingsBoard Skill",
        "body": "Manage ThingsBoard IoT platform resources including devices, dashboards, telemetry data, and users."
      },
      {
        "title": "Setup",
        "body": "Configure your ThingsBoard server in credentials.json:\n[\n  {\n    \"name\": \"Server Thingsboard\",\n    \"url\": \"http://localhost:8080\",\n    \"account\": [\n      {\n        \"sysadmin\": {\n          \"email\": \"sysadmin@thingsboard.org\",\n          \"password\": \"sysadmin\"\n        }\n      },\n      {\n        \"tenant\": {\n          \"email\": \"tenant@thingsboard.org\",\n          \"password\": \"tenant\"\n        }\n      }\n    ]\n  }\n]\n\n\n\nSet environment variables:\nexport TB_URL=\"http://localhost:8080\"\nexport TB_USERNAME=\"tenant@thingsboard.org\"\nexport TB_PASSWORD=\"tenant\"\n\n\n\nGet authentication token:\nexport TB_TOKEN=$(curl -s -X POST \"$TB_URL/api/auth/login\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\\\"username\\\":\\\"$TB_USERNAME\\\",\\\"password\\\":\\\"$TB_PASSWORD\\\"}\" | jq -r '.token')"
      },
      {
        "title": "Usage",
        "body": "All commands use curl to interact with the ThingsBoard REST API."
      },
      {
        "title": "Authentication",
        "body": "Login and get token:\n\ncurl -s -X POST \"$TB_URL/api/auth/login\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\\\"username\\\":\\\"$TB_USERNAME\\\",\\\"password\\\":\\\"$TB_PASSWORD\\\"}\" | jq -r '.token'\n\nRefresh token (when expired):\n\ncurl -s -X POST \"$TB_URL/api/auth/token\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\\\"refreshToken\\\":\\\"$TB_REFRESH_TOKEN\\\"}\" | jq -r '.token'\n\nGet current user info:\n\ncurl -s \"$TB_URL/api/auth/user\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq"
      },
      {
        "title": "Device Management",
        "body": "List all tenant devices:\n\ncurl -s \"$TB_URL/api/tenant/devices?pageSize=100&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[] | {name, id: .id.id, type}'\n\nGet device by ID:\n\ncurl -s \"$TB_URL/api/device/{deviceId}\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\nGet device credentials:\n\ncurl -s \"$TB_URL/api/device/{deviceId}/credentials\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq"
      },
      {
        "title": "Telemetry & Attributes",
        "body": "Get telemetry keys:\n\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/keys/timeseries\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\nGet latest telemetry:\n\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/values/timeseries?keys=temperature,humidity\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\nGet timeseries data with time range:\n\nSTART_TS=$(($(date +%s)*1000 - 3600000))  # 1 hour ago\nEND_TS=$(($(date +%s)*1000))              # now\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/values/timeseries?keys=temperature&startTs=$START_TS&endTs=$END_TS&limit=100\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\nGet attribute keys:\n\n# Client scope\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/keys/attributes/CLIENT_SCOPE\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n# Shared scope\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/keys/attributes/SHARED_SCOPE\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n# Server scope\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/keys/attributes/SERVER_SCOPE\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\nGet attributes by scope:\n\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/values/attributes/CLIENT_SCOPE?keys=attribute1,attribute2\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\nSave device attributes:\n\ncurl -s -X POST \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/attributes/SERVER_SCOPE\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"attribute1\":\"value1\",\"attribute2\":\"value2\"}' | jq\n\nDelete timeseries keys:\n\ncurl -s -X DELETE \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/timeseries/delete?keys=oldKey1,oldKey2&deleteAllDataForKeys=true\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\""
      },
      {
        "title": "Dashboard Management",
        "body": "List all dashboards:\n\ncurl -s \"$TB_URL/api/tenant/dashboards?pageSize=100&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[] | {name, id: .id.id}'\n\nGet dashboard info:\n\ncurl -s \"$TB_URL/api/dashboard/{dashboardId}\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\nMake dashboard public:\n\ncurl -s -X POST \"$TB_URL/api/customer/public/dashboard/{dashboardId}\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\nGet public dashboard info (no auth required):\n\ncurl -s \"$TB_URL/api/dashboard/info/{publicDashboardId}\" | jq\n\nRemove public access:\n\ncurl -s -X DELETE \"$TB_URL/api/customer/public/dashboard/{dashboardId}\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\""
      },
      {
        "title": "User Management",
        "body": "List tenant users:\n\ncurl -s \"$TB_URL/api/tenant/users?pageSize=100&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[] | {email, firstName, lastName, id: .id.id}'\n\nList customers:\n\ncurl -s \"$TB_URL/api/customers?pageSize=100&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[] | {title, id: .id.id}'\n\nGet customer users:\n\ncurl -s \"$TB_URL/api/customer/{customerId}/users?pageSize=100&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[]'"
      },
      {
        "title": "Assets",
        "body": "List all assets:\n\ncurl -s \"$TB_URL/api/tenant/assets?pageSize=100&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[] | {name, type, id: .id.id}'\n\nGet asset by ID:\n\ncurl -s \"$TB_URL/api/asset/{assetId}\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq"
      },
      {
        "title": "Notes",
        "body": "Authentication: JWT tokens expire after a configured period (default: 2 hours). Re-authenticate when you receive 401 errors.\nDevice/Dashboard IDs: Entity IDs are in the format {entityType: \"DEVICE\", id: \"uuid\"}. Use the id field for API calls.\nPagination: Most list endpoints support pageSize and page parameters (default: 100 items per page, max: 1000).\nAttribute Scopes:\n\nCLIENT_SCOPE: Client-side attributes (set by devices)\nSHARED_SCOPE: Shared between server and devices\nSERVER_SCOPE: Server-side only (not visible to devices)\n\n\nTimestamps: Use milliseconds since epoch for startTs and endTs parameters.\nRate Limits: Check your ThingsBoard server configuration for API rate limits.\nHTTPS: For production, use HTTPS URLs (e.g., https://demo.thingsboard.io)."
      },
      {
        "title": "Examples",
        "body": "# Complete workflow: Login, list devices, get telemetry\nexport TB_URL=\"http://localhost:8080\"\nexport TB_USERNAME=\"tenant@thingsboard.org\"\nexport TB_PASSWORD=\"tenant\"\n\n# Get token\nexport TB_TOKEN=$(curl -s -X POST \"$TB_URL/api/auth/login\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\\\"username\\\":\\\"$TB_USERNAME\\\",\\\"password\\\":\\\"$TB_PASSWORD\\\"}\" | jq -r '.token')\n\n# List all devices\ncurl -s \"$TB_URL/api/tenant/devices?pageSize=10&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[] | {name, type, id: .id.id}'\n\n# Get first device ID\nDEVICE_ID=$(curl -s \"$TB_URL/api/tenant/devices?pageSize=1&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq -r '.data[0].id.id')\n\n# Get telemetry keys for device\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/$DEVICE_ID/keys/timeseries\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n# Get latest telemetry values\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/$DEVICE_ID/values/timeseries?keys=temperature,humidity\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n# Get historical data (last hour)\nSTART_TS=$(($(date +%s)*1000 - 3600000))\nEND_TS=$(($(date +%s)*1000))\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/$DEVICE_ID/values/timeseries?keys=temperature&startTs=$START_TS&endTs=$END_TS&limit=100\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n# List dashboards and make first one public\nDASHBOARD_ID=$(curl -s \"$TB_URL/api/tenant/dashboards?pageSize=1&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq -r '.data[0].id.id')\n\ncurl -s -X POST \"$TB_URL/api/customer/public/dashboard/$DASHBOARD_ID\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq"
      }
    ],
    "body": "ThingsBoard Skill\n\nManage ThingsBoard IoT platform resources including devices, dashboards, telemetry data, and users.\n\nSetup\n\nConfigure your ThingsBoard server in credentials.json:\n\n[\n  {\n    \"name\": \"Server Thingsboard\",\n    \"url\": \"http://localhost:8080\",\n    \"account\": [\n      {\n        \"sysadmin\": {\n          \"email\": \"sysadmin@thingsboard.org\",\n          \"password\": \"sysadmin\"\n        }\n      },\n      {\n        \"tenant\": {\n          \"email\": \"tenant@thingsboard.org\",\n          \"password\": \"tenant\"\n        }\n      }\n    ]\n  }\n]\n\n\nSet environment variables:\n\nexport TB_URL=\"http://localhost:8080\"\nexport TB_USERNAME=\"tenant@thingsboard.org\"\nexport TB_PASSWORD=\"tenant\"\n\n\nGet authentication token:\n\nexport TB_TOKEN=$(curl -s -X POST \"$TB_URL/api/auth/login\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\\\"username\\\":\\\"$TB_USERNAME\\\",\\\"password\\\":\\\"$TB_PASSWORD\\\"}\" | jq -r '.token')\n\nUsage\n\nAll commands use curl to interact with the ThingsBoard REST API.\n\nAuthentication\n\nLogin and get token:\n\ncurl -s -X POST \"$TB_URL/api/auth/login\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\\\"username\\\":\\\"$TB_USERNAME\\\",\\\"password\\\":\\\"$TB_PASSWORD\\\"}\" | jq -r '.token'\n\n\nRefresh token (when expired):\n\ncurl -s -X POST \"$TB_URL/api/auth/token\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\\\"refreshToken\\\":\\\"$TB_REFRESH_TOKEN\\\"}\" | jq -r '.token'\n\n\nGet current user info:\n\ncurl -s \"$TB_URL/api/auth/user\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\nDevice Management\n\nList all tenant devices:\n\ncurl -s \"$TB_URL/api/tenant/devices?pageSize=100&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[] | {name, id: .id.id, type}'\n\n\nGet device by ID:\n\ncurl -s \"$TB_URL/api/device/{deviceId}\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n\nGet device credentials:\n\ncurl -s \"$TB_URL/api/device/{deviceId}/credentials\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\nTelemetry & Attributes\n\nGet telemetry keys:\n\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/keys/timeseries\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n\nGet latest telemetry:\n\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/values/timeseries?keys=temperature,humidity\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n\nGet timeseries data with time range:\n\nSTART_TS=$(($(date +%s)*1000 - 3600000))  # 1 hour ago\nEND_TS=$(($(date +%s)*1000))              # now\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/values/timeseries?keys=temperature&startTs=$START_TS&endTs=$END_TS&limit=100\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n\nGet attribute keys:\n\n# Client scope\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/keys/attributes/CLIENT_SCOPE\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n# Shared scope\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/keys/attributes/SHARED_SCOPE\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n# Server scope\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/keys/attributes/SERVER_SCOPE\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n\nGet attributes by scope:\n\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/values/attributes/CLIENT_SCOPE?keys=attribute1,attribute2\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n\nSave device attributes:\n\ncurl -s -X POST \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/attributes/SERVER_SCOPE\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"attribute1\":\"value1\",\"attribute2\":\"value2\"}' | jq\n\n\nDelete timeseries keys:\n\ncurl -s -X DELETE \"$TB_URL/api/plugins/telemetry/DEVICE/{deviceId}/timeseries/delete?keys=oldKey1,oldKey2&deleteAllDataForKeys=true\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\"\n\nDashboard Management\n\nList all dashboards:\n\ncurl -s \"$TB_URL/api/tenant/dashboards?pageSize=100&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[] | {name, id: .id.id}'\n\n\nGet dashboard info:\n\ncurl -s \"$TB_URL/api/dashboard/{dashboardId}\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n\nMake dashboard public:\n\ncurl -s -X POST \"$TB_URL/api/customer/public/dashboard/{dashboardId}\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n\nGet public dashboard info (no auth required):\n\ncurl -s \"$TB_URL/api/dashboard/info/{publicDashboardId}\" | jq\n\n\nRemove public access:\n\ncurl -s -X DELETE \"$TB_URL/api/customer/public/dashboard/{dashboardId}\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\"\n\nUser Management\n\nList tenant users:\n\ncurl -s \"$TB_URL/api/tenant/users?pageSize=100&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[] | {email, firstName, lastName, id: .id.id}'\n\n\nList customers:\n\ncurl -s \"$TB_URL/api/customers?pageSize=100&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[] | {title, id: .id.id}'\n\n\nGet customer users:\n\ncurl -s \"$TB_URL/api/customer/{customerId}/users?pageSize=100&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[]'\n\nAssets\n\nList all assets:\n\ncurl -s \"$TB_URL/api/tenant/assets?pageSize=100&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[] | {name, type, id: .id.id}'\n\n\nGet asset by ID:\n\ncurl -s \"$TB_URL/api/asset/{assetId}\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\nNotes\nAuthentication: JWT tokens expire after a configured period (default: 2 hours). Re-authenticate when you receive 401 errors.\nDevice/Dashboard IDs: Entity IDs are in the format {entityType: \"DEVICE\", id: \"uuid\"}. Use the id field for API calls.\nPagination: Most list endpoints support pageSize and page parameters (default: 100 items per page, max: 1000).\nAttribute Scopes:\nCLIENT_SCOPE: Client-side attributes (set by devices)\nSHARED_SCOPE: Shared between server and devices\nSERVER_SCOPE: Server-side only (not visible to devices)\nTimestamps: Use milliseconds since epoch for startTs and endTs parameters.\nRate Limits: Check your ThingsBoard server configuration for API rate limits.\nHTTPS: For production, use HTTPS URLs (e.g., https://demo.thingsboard.io).\nExamples\n# Complete workflow: Login, list devices, get telemetry\nexport TB_URL=\"http://localhost:8080\"\nexport TB_USERNAME=\"tenant@thingsboard.org\"\nexport TB_PASSWORD=\"tenant\"\n\n# Get token\nexport TB_TOKEN=$(curl -s -X POST \"$TB_URL/api/auth/login\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\\\"username\\\":\\\"$TB_USERNAME\\\",\\\"password\\\":\\\"$TB_PASSWORD\\\"}\" | jq -r '.token')\n\n# List all devices\ncurl -s \"$TB_URL/api/tenant/devices?pageSize=10&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq '.data[] | {name, type, id: .id.id}'\n\n# Get first device ID\nDEVICE_ID=$(curl -s \"$TB_URL/api/tenant/devices?pageSize=1&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq -r '.data[0].id.id')\n\n# Get telemetry keys for device\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/$DEVICE_ID/keys/timeseries\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n# Get latest telemetry values\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/$DEVICE_ID/values/timeseries?keys=temperature,humidity\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n# Get historical data (last hour)\nSTART_TS=$(($(date +%s)*1000 - 3600000))\nEND_TS=$(($(date +%s)*1000))\ncurl -s \"$TB_URL/api/plugins/telemetry/DEVICE/$DEVICE_ID/values/timeseries?keys=temperature&startTs=$START_TS&endTs=$END_TS&limit=100\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq\n\n# List dashboards and make first one public\nDASHBOARD_ID=$(curl -s \"$TB_URL/api/tenant/dashboards?pageSize=1&page=0\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq -r '.data[0].id.id')\n\ncurl -s -X POST \"$TB_URL/api/customer/public/dashboard/$DASHBOARD_ID\" \\\n  -H \"X-Authorization: Bearer $TB_TOKEN\" | jq"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/hoangnv170752/thingsboard-skill",
    "publisherUrl": "https://clawhub.ai/hoangnv170752/thingsboard-skill",
    "owner": "hoangnv170752",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/thingsboard-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/thingsboard-skill",
    "agentUrl": "https://openagent3.xyz/skills/thingsboard-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/thingsboard-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/thingsboard-skill/agent.md"
  }
}