← All skills
Tencent SkillHub · Communication & Collaboration

tado-thermostat

Interact with Tado smart thermostat. Use for reading temperature, setting heating with auto-revert, viewing energy usage, and controlling zones.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Interact with Tado smart thermostat. Use for reading temperature, setting heating with auto-revert, viewing energy usage, and controlling zones.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.2.3

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

Tado Skill

Use the Tado API to control your smart thermostat.

Authentication

Tado uses OAuth2 device code flow. You'll need: Client ID: 1bb50063-6b0c-4d11-bd99-387f4a91cc46 Token endpoint: https://login.tado.com/oauth2/token

Step 1: Get Device Code

curl -s -X POST "https://login.tado.com/oauth2/device_authorize" \ -d "client_id=1bb50063-6b0c-4d11-bd99-387f4a91cc46" \ -d "scope=offline_access" Response: { "device_code": "XXX_code_XXX", "expires_in": 300, "interval": 5, "user_code": "7BQ5ZQ", "verification_uri_complete": "https://login.tado.com/oauth2/device?user_code=7BQ5ZQ" }

Step 2: User Authenticates

Visit the verification_uri_complete URL and enter the user code. The user must log into their Tado account.

Step 3: Poll for Token

curl -s -X POST "https://login.tado.com/oauth2/token" \ -d "client_id=1bb50063-6b0c-4d11-bd99-387f4a91cc46" \ -d "device_code=YOUR_DEVICE_CODE" \ -d "grant_type=urn:ietf:params:oauth:grant-type:device_code" Response: { "access_token": "...", "refresh_token": "...", "expires_in": 600, "token_type": "Bearer" }

Step 4: Refresh Token

Access tokens expire in ~10 minutes. Use the refresh token to get a new one: curl -s -X POST "https://login.tado.com/oauth2/token" \ -d "client_id=1bb50063-6b0c-4d11-bd99-387f4a91cc46" \ -d "grant_type=refresh_token" \ -d "refresh_token=YOUR_REFRESH_TOKEN"

Environment Variables

Store these securely (not in the skill): export TADO_TOKEN="your-access-token" export TADO_REFRESH_TOKEN="your-refresh-token" export TADO_HOME_ID="your-home-id"

Get Home ID

curl -s "https://my.tado.com/api/v2/me" -H "Authorization: Bearer $TADO_TOKEN" Returns: {"homes":[{"id":123456,...}]}

List Zones

curl -s "https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones" -H "Authorization: Bearer $TADO_TOKEN"

Get Zone State

curl -s "https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/state" -H "Authorization: Bearer $TADO_TOKEN"

Get All Zones Summary

This script gets the current temperature, target temperature, and heating % for all zones: #!/usr/bin/env python3 import os import requests TOKEN = os.environ.get("TADO_TOKEN") HOME_ID = os.environ.get("TADO_HOME_ID") headers = {"Authorization": f"Bearer {TOKEN}"} # Get zones zones = requests.get(f"https://my.tado.com/api/v2/homes/{HOME_ID}/zones", headers=headers).json() print("Zone | Current | Target | Heating") print("---------------|---------|--------|-------") for zone in zones: zid = zone["id"] name = zone["name"] state = requests.get(f"https://my.tado.com/api/v2/homes/{HOME_ID}/zones/{zid}/state", headers=headers).json() # Current temperature from sensorDataPoints current = state.get("sensorDataPoints", {}).get("insideTemperature", {}).get("celsius") # Target temperature from setting target = state.get("setting", {}).get("temperature", {}).get("celsius") # Actual heating % from activityDataPoints (not from setting!) heating = state.get("activityDataPoints", {}).get("heatingPower", {}).get("percentage", 0) c = f"{current:.1f}°C" if current else "N/A" t = f"{target:.0f}°C" if target else "-" h = f"{heating:.0f}%" if heating else "OFF" print(f"{name:14} | {c:7} | {t:6} | {h:>6}") Example output: Zone | Current | Target | Heating ---------------|---------|--------|------- Kitchen | 18.2°C | 18°C | 45% Living Room | 16.8°C | 17°C | 0% Downstairs Off | 15.2°C | 14°C | 78% Master Bedroom | 17.1°C | 14°C | 0% Cora's Room | 17.7°C | 16°C | 23% Upstairs Office| 19.1°C | 19°C | OFF Spare Bedroom | 19.6°C | - | OFF Note: Use activityDataPoints.heatingPower.percentage to get actual heating status, not setting.power which only shows the target.

Set Temperature

Until next schedule change: curl -s -X PUT "https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/overlay" \ -H "Authorization: Bearer $TADO_TOKEN" \ -H "Content-Type: application/json" \ -d '{"setting":{"type":"HEATING","power":"ON","temperature":{"celsius":21}},"termination":{"type":"UNTIL_NEXT_TIME_BLOCK"}}' With timer (e.g., 2 hours): curl -s -X PUT "https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/overlay" \ -H "Authorization: Bearer $TADO_TOKEN" \ -H "Content-Type: application/json" \ -d '{"setting":{"type":"HEATING","power":"ON","temperature":{"celsius":22}},"termination":{"type":"TIMER","durationInSeconds":7200}}' Permanent: curl -s -X PUT "https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/overlay" \ -H "Authorization: Bearer $TADO_TOKEN" \ -H "Content-Type: application/json" \ -d '{"setting":{"type":"HEATING","power":"ON","temperature":{"celsius":20}},"termination":{"type":"MANUAL"}}'

Clear Override

curl -s -X DELETE "https://my.tado.com/api/v2/homes/$TADO_HOME_ID/zones/$ZONE_ID/overlay" \ -H "Authorization: Bearer $TADO_TOKEN"

Get Energy Usage

curl -s "https://my.tado.com/api/v2/homes/$TADO_HOME_ID/energyUsage" -H "Authorization: Bearer $TADO_TOKEN"

Termination Types

TypeDescriptionUNTIL_NEXT_TIME_BLOCKReverts at next scheduled changeTIMERTemporary (max 12 hours / 43200 seconds)MANUALPermanent until cancelled

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc