# Send Sensibo to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "sensibo",
    "name": "Sensibo",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/omere2/sensibo",
    "canonicalUrl": "https://clawhub.ai/omere2/sensibo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/sensibo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sensibo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "sensibo",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T16:45:52.588Z",
      "expiresAt": "2026-05-15T16:45:52.588Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sensibo",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sensibo",
        "contentDisposition": "attachment; filename=\"sensibo-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "sensibo"
      },
      "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/sensibo"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/sensibo",
    "downloadUrl": "https://openagent3.xyz/downloads/sensibo",
    "agentUrl": "https://openagent3.xyz/skills/sensibo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sensibo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sensibo/agent.md"
  }
}
```
## Documentation

### Sensibo AC Control

Control smart AC units via the Sensibo REST API.

### First-Time Setup

Get API key from https://home.sensibo.com/me/api
List devices to get IDs:
curl --compressed "https://home.sensibo.com/api/v2/users/me/pods?fields=id,room&apiKey={API_KEY}"


Store in TOOLS.md:
## Sensibo
API Key: \`{your_key}\`

| Room | Device ID |
|------|-----------|
| Living Room | abc123 |
| Bedroom | xyz789 |

### API Reference

Base URL: https://home.sensibo.com/api/v2
Auth: ?apiKey={key} query parameter
Always use: --compressed flag for better rate limits

### Turn ON/OFF

curl --compressed -X POST "https://home.sensibo.com/api/v2/pods/{device_id}/acStates?apiKey={key}" \\
  -H "Content-Type: application/json" -d '{"acState":{"on":true}}'

### Set Temperature

curl --compressed -X PATCH "https://home.sensibo.com/api/v2/pods/{device_id}/acStates/targetTemperature?apiKey={key}" \\
  -H "Content-Type: application/json" -d '{"newValue":23}'

### Set Mode

Options: cool, heat, fan, auto, dry

curl --compressed -X PATCH "https://home.sensibo.com/api/v2/pods/{device_id}/acStates/mode?apiKey={key}" \\
  -H "Content-Type: application/json" -d '{"newValue":"cool"}'

### Set Fan Level

Options: low, medium, high, auto

curl --compressed -X PATCH "https://home.sensibo.com/api/v2/pods/{device_id}/acStates/fanLevel?apiKey={key}" \\
  -H "Content-Type: application/json" -d '{"newValue":"auto"}'

### Full State Change

curl --compressed -X POST "https://home.sensibo.com/api/v2/pods/{device_id}/acStates?apiKey={key}" \\
  -H "Content-Type: application/json" \\
  -d '{"acState":{"on":true,"mode":"cool","targetTemperature":22,"fanLevel":"auto","temperatureUnit":"C"}}'

### AC State Properties

PropertyTypeValuesonbooleantrue, falsemodestringcool, heat, fan, auto, drytargetTemperatureintegervaries by AC unittemperatureUnitstringC, FfanLevelstringlow, medium, high, autoswingstringstopped, rangeful

### Current Measurements

Include measurements in fields:

curl --compressed "https://home.sensibo.com/api/v2/pods/{device_id}?fields=measurements&apiKey={key}"

Response includes:

{"measurements": {"temperature": 24.5, "humidity": 55, "time": "2024-01-15T12:00:00Z"}}

### Historical Data

curl --compressed "https://home.sensibo.com/api/v2/pods/{device_id}/historicalMeasurements?days=1&apiKey={key}"

### Enable/Disable

curl --compressed -X PUT "https://home.sensibo.com/api/v2/pods/{device_id}/smartmode?apiKey={key}" \\
  -H "Content-Type: application/json" -d '{"enabled":true}'

### Configure Thresholds

curl --compressed -X POST "https://home.sensibo.com/api/v2/pods/{device_id}/smartmode?apiKey={key}" \\
  -H "Content-Type: application/json" \\
  -d '{
    "enabled": true,
    "lowTemperatureThreshold": 20,
    "lowTemperatureState": {"on": true, "mode": "heat"},
    "highTemperatureThreshold": 26,
    "highTemperatureState": {"on": true, "mode": "cool"}
  }'

### Schedules

Note: Schedules use API v1 base URL: https://home.sensibo.com/api/v1

### List Schedules

curl --compressed "https://home.sensibo.com/api/v1/pods/{device_id}/schedules/?apiKey={key}"

### Create Schedule

curl --compressed -X POST "https://home.sensibo.com/api/v1/pods/{device_id}/schedules/?apiKey={key}" \\
  -H "Content-Type: application/json" \\
  -d '{
    "targetTimeLocal": "22:00",
    "timezone": "Europe/London",
    "acState": {"on": false},
    "recurOnDaysOfWeek": ["sunday","monday","tuesday","wednesday","thursday","friday","saturday"]
  }'

### Delete Schedule

curl --compressed -X DELETE "https://home.sensibo.com/api/v1/pods/{device_id}/schedules/{schedule_id}/?apiKey={key}"

### Timer

Set a one-time delayed action:

curl --compressed -X PUT "https://home.sensibo.com/api/v1/pods/{device_id}/timer/?apiKey={key}" \\
  -H "Content-Type: application/json" \\
  -d '{"minutesFromNow": 30, "acState": {"on": false}}'

### Usage Tips

Match room names: When user says "living room" or "bedroom", look up device ID in TOOLS.md
Check response: Verify "status": "success" in API response
Temperature ranges: Depend on the specific AC unit's capabilities
Rate limits: Use --compressed to get higher rate limits
Bulk operations: Loop through device IDs for "turn off all ACs"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: omere2
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-08T16:45:52.588Z
- Expires at: 2026-05-15T16:45:52.588Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/sensibo)
- [Send to Agent page](https://openagent3.xyz/skills/sensibo/agent)
- [JSON manifest](https://openagent3.xyz/skills/sensibo/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/sensibo/agent.md)
- [Download page](https://openagent3.xyz/downloads/sensibo)