{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tado-thermostat",
    "name": "tado-thermostat",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/davek-dev/tado-thermostat",
    "canonicalUrl": "https://clawhub.ai/davek-dev/tado-thermostat",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tado-thermostat",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tado-thermostat",
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/tado-thermostat"
    },
    "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/tado-thermostat",
    "agentPageUrl": "https://openagent3.xyz/skills/tado-thermostat/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tado-thermostat/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tado-thermostat/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": "Tado Skill",
        "body": "Use the Tado API to control your smart thermostat."
      },
      {
        "title": "Authentication",
        "body": "Tado uses OAuth2 device code flow. You'll need:\n\nClient ID: 1bb50063-6b0c-4d11-bd99-387f4a91cc46\nToken endpoint: https://login.tado.com/oauth2/token"
      },
      {
        "title": "Step 1: Get Device Code",
        "body": "curl -s -X POST \"https://login.tado.com/oauth2/device_authorize\" \\\n  -d \"client_id=1bb50063-6b0c-4d11-bd99-387f4a91cc46\" \\\n  -d \"scope=offline_access\"\n\nResponse:\n\n{\n  \"device_code\": \"XXX_code_XXX\",\n  \"expires_in\": 300,\n  \"interval\": 5,\n  \"user_code\": \"7BQ5ZQ\",\n  \"verification_uri_complete\": \"https://login.tado.com/oauth2/device?user_code=7BQ5ZQ\"\n}"
      },
      {
        "title": "Step 2: User Authenticates",
        "body": "Visit the verification_uri_complete URL and enter the user code. The user must log into their Tado account."
      },
      {
        "title": "Step 3: Poll for Token",
        "body": "curl -s -X POST \"https://login.tado.com/oauth2/token\" \\\n  -d \"client_id=1bb50063-6b0c-4d11-bd99-387f4a91cc46\" \\\n  -d \"device_code=YOUR_DEVICE_CODE\" \\\n  -d \"grant_type=urn:ietf:params:oauth:grant-type:device_code\"\n\nResponse:\n\n{\n  \"access_token\": \"...\",\n  \"refresh_token\": \"...\",\n  \"expires_in\": 600,\n  \"token_type\": \"Bearer\"\n}"
      },
      {
        "title": "Step 4: Refresh Token",
        "body": "Access tokens expire in ~10 minutes. Use the refresh token to get a new one:\n\ncurl -s -X POST \"https://login.tado.com/oauth2/token\" \\\n  -d \"client_id=1bb50063-6b0c-4d11-bd99-387f4a91cc46\" \\\n  -d \"grant_type=refresh_token\" \\\n  -d \"refresh_token=YOUR_REFRESH_TOKEN\""
      },
      {
        "title": "Environment Variables",
        "body": "Store these securely (not in the skill):\n\nexport TADO_TOKEN=\"your-access-token\"\nexport TADO_REFRESH_TOKEN=\"your-refresh-token\"\nexport TADO_HOME_ID=\"your-home-id\""
      },
      {
        "title": "Get Home ID",
        "body": "curl -s \"https://my.tado.com/api/v2/me\" -H \"Authorization: Bearer $TADO_TOKEN\"\n\nReturns: {\"homes\":[{\"id\":123456,...}]}"
      },
      {
        "title": "List Zones",
        "body": "curl -s \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones\" -H \"Authorization: Bearer $TADO_TOKEN\""
      },
      {
        "title": "Get Zone State",
        "body": "curl -s \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/state\" -H \"Authorization: Bearer $TADO_TOKEN\""
      },
      {
        "title": "Get All Zones Summary",
        "body": "This script gets the current temperature, target temperature, and heating % for all zones:\n\n#!/usr/bin/env python3\nimport os\nimport requests\n\nTOKEN = os.environ.get(\"TADO_TOKEN\")\nHOME_ID = os.environ.get(\"TADO_HOME_ID\")\n\nheaders = {\"Authorization\": f\"Bearer {TOKEN}\"}\n\n# Get zones\nzones = requests.get(f\"https://my.tado.com/api/v2/homes/{HOME_ID}/zones\", headers=headers).json()\n\nprint(\"Zone           | Current | Target | Heating\")\nprint(\"---------------|---------|--------|-------\")\n\nfor zone in zones:\n    zid = zone[\"id\"]\n    name = zone[\"name\"]\n    state = requests.get(f\"https://my.tado.com/api/v2/homes/{HOME_ID}/zones/{zid}/state\", headers=headers).json()\n    \n    # Current temperature from sensorDataPoints\n    current = state.get(\"sensorDataPoints\", {}).get(\"insideTemperature\", {}).get(\"celsius\")\n    # Target temperature from setting\n    target = state.get(\"setting\", {}).get(\"temperature\", {}).get(\"celsius\")\n    # Actual heating % from activityDataPoints (not from setting!)\n    heating = state.get(\"activityDataPoints\", {}).get(\"heatingPower\", {}).get(\"percentage\", 0)\n    \n    c = f\"{current:.1f}°C\" if current else \"N/A\"\n    t = f\"{target:.0f}°C\" if target else \"-\"\n    h = f\"{heating:.0f}%\" if heating else \"OFF\"\n    \n    print(f\"{name:14} | {c:7} | {t:6} | {h:>6}\")\n\nExample output:\n\nZone           | Current | Target | Heating\n---------------|---------|--------|-------\nKitchen        | 18.2°C  | 18°C   | 45%\nLiving Room    | 16.8°C  | 17°C   | 0%\nDownstairs Off | 15.2°C  | 14°C   | 78%\nMaster Bedroom | 17.1°C  | 14°C   | 0%\nCora's Room    | 17.7°C  | 16°C   | 23%\nUpstairs Office| 19.1°C  | 19°C   | OFF\nSpare Bedroom  | 19.6°C  | -      | OFF\n\nNote: Use activityDataPoints.heatingPower.percentage to get actual heating status, not setting.power which only shows the target."
      },
      {
        "title": "Set Temperature",
        "body": "Until next schedule change:\n\ncurl -s -X PUT \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/overlay\" \\\n  -H \"Authorization: Bearer $TADO_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"setting\":{\"type\":\"HEATING\",\"power\":\"ON\",\"temperature\":{\"celsius\":21}},\"termination\":{\"type\":\"UNTIL_NEXT_TIME_BLOCK\"}}'\n\nWith timer (e.g., 2 hours):\n\ncurl -s -X PUT \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/overlay\" \\\n  -H \"Authorization: Bearer $TADO_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"setting\":{\"type\":\"HEATING\",\"power\":\"ON\",\"temperature\":{\"celsius\":22}},\"termination\":{\"type\":\"TIMER\",\"durationInSeconds\":7200}}'\n\nPermanent:\n\ncurl -s -X PUT \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/overlay\" \\\n  -H \"Authorization: Bearer $TADO_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"setting\":{\"type\":\"HEATING\",\"power\":\"ON\",\"temperature\":{\"celsius\":20}},\"termination\":{\"type\":\"MANUAL\"}}'"
      },
      {
        "title": "Clear Override",
        "body": "curl -s -X DELETE \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/overlay\" \\\n  -H \"Authorization: Bearer $TADO_TOKEN\""
      },
      {
        "title": "Get Energy Usage",
        "body": "curl -s \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/energyUsage\" -H \"Authorization: Bearer $TADO_TOKEN\""
      },
      {
        "title": "Termination Types",
        "body": "TypeDescriptionUNTIL_NEXT_TIME_BLOCKReverts at next scheduled changeTIMERTemporary (max 12 hours / 43200 seconds)MANUALPermanent until cancelled"
      }
    ],
    "body": "Tado Skill\n\nUse the Tado API to control your smart thermostat.\n\nAuthentication\n\nTado uses OAuth2 device code flow. You'll need:\n\nClient ID: 1bb50063-6b0c-4d11-bd99-387f4a91cc46\nToken endpoint: https://login.tado.com/oauth2/token\nStep 1: Get Device Code\ncurl -s -X POST \"https://login.tado.com/oauth2/device_authorize\" \\\n  -d \"client_id=1bb50063-6b0c-4d11-bd99-387f4a91cc46\" \\\n  -d \"scope=offline_access\"\n\n\nResponse:\n\n{\n  \"device_code\": \"XXX_code_XXX\",\n  \"expires_in\": 300,\n  \"interval\": 5,\n  \"user_code\": \"7BQ5ZQ\",\n  \"verification_uri_complete\": \"https://login.tado.com/oauth2/device?user_code=7BQ5ZQ\"\n}\n\nStep 2: User Authenticates\n\nVisit the verification_uri_complete URL and enter the user code. The user must log into their Tado account.\n\nStep 3: Poll for Token\ncurl -s -X POST \"https://login.tado.com/oauth2/token\" \\\n  -d \"client_id=1bb50063-6b0c-4d11-bd99-387f4a91cc46\" \\\n  -d \"device_code=YOUR_DEVICE_CODE\" \\\n  -d \"grant_type=urn:ietf:params:oauth:grant-type:device_code\"\n\n\nResponse:\n\n{\n  \"access_token\": \"...\",\n  \"refresh_token\": \"...\",\n  \"expires_in\": 600,\n  \"token_type\": \"Bearer\"\n}\n\nStep 4: Refresh Token\n\nAccess tokens expire in ~10 minutes. Use the refresh token to get a new one:\n\ncurl -s -X POST \"https://login.tado.com/oauth2/token\" \\\n  -d \"client_id=1bb50063-6b0c-4d11-bd99-387f4a91cc46\" \\\n  -d \"grant_type=refresh_token\" \\\n  -d \"refresh_token=YOUR_REFRESH_TOKEN\"\n\nEnvironment Variables\n\nStore these securely (not in the skill):\n\nexport TADO_TOKEN=\"your-access-token\"\nexport TADO_REFRESH_TOKEN=\"your-refresh-token\"\nexport TADO_HOME_ID=\"your-home-id\"\n\nGet Home ID\ncurl -s \"https://my.tado.com/api/v2/me\" -H \"Authorization: Bearer $TADO_TOKEN\"\n\n\nReturns: {\"homes\":[{\"id\":123456,...}]}\n\nList Zones\ncurl -s \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones\" -H \"Authorization: Bearer $TADO_TOKEN\"\n\nGet Zone State\ncurl -s \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/state\" -H \"Authorization: Bearer $TADO_TOKEN\"\n\nGet All Zones Summary\n\nThis script gets the current temperature, target temperature, and heating % for all zones:\n\n#!/usr/bin/env python3\nimport os\nimport requests\n\nTOKEN = os.environ.get(\"TADO_TOKEN\")\nHOME_ID = os.environ.get(\"TADO_HOME_ID\")\n\nheaders = {\"Authorization\": f\"Bearer {TOKEN}\"}\n\n# Get zones\nzones = requests.get(f\"https://my.tado.com/api/v2/homes/{HOME_ID}/zones\", headers=headers).json()\n\nprint(\"Zone           | Current | Target | Heating\")\nprint(\"---------------|---------|--------|-------\")\n\nfor zone in zones:\n    zid = zone[\"id\"]\n    name = zone[\"name\"]\n    state = requests.get(f\"https://my.tado.com/api/v2/homes/{HOME_ID}/zones/{zid}/state\", headers=headers).json()\n    \n    # Current temperature from sensorDataPoints\n    current = state.get(\"sensorDataPoints\", {}).get(\"insideTemperature\", {}).get(\"celsius\")\n    # Target temperature from setting\n    target = state.get(\"setting\", {}).get(\"temperature\", {}).get(\"celsius\")\n    # Actual heating % from activityDataPoints (not from setting!)\n    heating = state.get(\"activityDataPoints\", {}).get(\"heatingPower\", {}).get(\"percentage\", 0)\n    \n    c = f\"{current:.1f}°C\" if current else \"N/A\"\n    t = f\"{target:.0f}°C\" if target else \"-\"\n    h = f\"{heating:.0f}%\" if heating else \"OFF\"\n    \n    print(f\"{name:14} | {c:7} | {t:6} | {h:>6}\")\n\n\nExample output:\n\nZone           | Current | Target | Heating\n---------------|---------|--------|-------\nKitchen        | 18.2°C  | 18°C   | 45%\nLiving Room    | 16.8°C  | 17°C   | 0%\nDownstairs Off | 15.2°C  | 14°C   | 78%\nMaster Bedroom | 17.1°C  | 14°C   | 0%\nCora's Room    | 17.7°C  | 16°C   | 23%\nUpstairs Office| 19.1°C  | 19°C   | OFF\nSpare Bedroom  | 19.6°C  | -      | OFF\n\n\nNote: Use activityDataPoints.heatingPower.percentage to get actual heating status, not setting.power which only shows the target.\n\nSet Temperature\n\nUntil next schedule change:\n\ncurl -s -X PUT \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/overlay\" \\\n  -H \"Authorization: Bearer $TADO_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"setting\":{\"type\":\"HEATING\",\"power\":\"ON\",\"temperature\":{\"celsius\":21}},\"termination\":{\"type\":\"UNTIL_NEXT_TIME_BLOCK\"}}'\n\n\nWith timer (e.g., 2 hours):\n\ncurl -s -X PUT \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/overlay\" \\\n  -H \"Authorization: Bearer $TADO_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"setting\":{\"type\":\"HEATING\",\"power\":\"ON\",\"temperature\":{\"celsius\":22}},\"termination\":{\"type\":\"TIMER\",\"durationInSeconds\":7200}}'\n\n\nPermanent:\n\ncurl -s -X PUT \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/overlay\" \\\n  -H \"Authorization: Bearer $TADO_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"setting\":{\"type\":\"HEATING\",\"power\":\"ON\",\"temperature\":{\"celsius\":20}},\"termination\":{\"type\":\"MANUAL\"}}'\n\nClear Override\ncurl -s -X DELETE \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/overlay\" \\\n  -H \"Authorization: Bearer $TADO_TOKEN\"\n\nGet Energy Usage\ncurl -s \"https://my.tado.com/api/v2/homes/$TADO_HOME_ID/energyUsage\" -H \"Authorization: Bearer $TADO_TOKEN\"\n\nTermination Types\nType\tDescription\nUNTIL_NEXT_TIME_BLOCK\tReverts at next scheduled change\nTIMER\tTemporary (max 12 hours / 43200 seconds)\nMANUAL\tPermanent until cancelled"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/davek-dev/tado-thermostat",
    "publisherUrl": "https://clawhub.ai/davek-dev/tado-thermostat",
    "owner": "davek-dev",
    "version": "1.2.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tado-thermostat",
    "downloadUrl": "https://openagent3.xyz/downloads/tado-thermostat",
    "agentUrl": "https://openagent3.xyz/skills/tado-thermostat/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tado-thermostat/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tado-thermostat/agent.md"
  }
}