{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/sensibo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sensibo",
    "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-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/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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/sensibo",
    "agentPageUrl": "https://openagent3.xyz/skills/sensibo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sensibo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sensibo/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": "Sensibo AC Control",
        "body": "Control smart AC units via the Sensibo REST API."
      },
      {
        "title": "First-Time Setup",
        "body": "Get API key from https://home.sensibo.com/me/api\nList devices to get IDs:\ncurl --compressed \"https://home.sensibo.com/api/v2/users/me/pods?fields=id,room&apiKey={API_KEY}\"\n\n\nStore in TOOLS.md:\n## Sensibo\nAPI Key: `{your_key}`\n\n| Room | Device ID |\n|------|-----------|\n| Living Room | abc123 |\n| Bedroom | xyz789 |"
      },
      {
        "title": "API Reference",
        "body": "Base URL: https://home.sensibo.com/api/v2\nAuth: ?apiKey={key} query parameter\nAlways use: --compressed flag for better rate limits"
      },
      {
        "title": "Turn ON/OFF",
        "body": "curl --compressed -X POST \"https://home.sensibo.com/api/v2/pods/{device_id}/acStates?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" -d '{\"acState\":{\"on\":true}}'"
      },
      {
        "title": "Set Temperature",
        "body": "curl --compressed -X PATCH \"https://home.sensibo.com/api/v2/pods/{device_id}/acStates/targetTemperature?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" -d '{\"newValue\":23}'"
      },
      {
        "title": "Set Mode",
        "body": "Options: cool, heat, fan, auto, dry\n\ncurl --compressed -X PATCH \"https://home.sensibo.com/api/v2/pods/{device_id}/acStates/mode?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" -d '{\"newValue\":\"cool\"}'"
      },
      {
        "title": "Set Fan Level",
        "body": "Options: low, medium, high, auto\n\ncurl --compressed -X PATCH \"https://home.sensibo.com/api/v2/pods/{device_id}/acStates/fanLevel?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" -d '{\"newValue\":\"auto\"}'"
      },
      {
        "title": "Full State Change",
        "body": "curl --compressed -X POST \"https://home.sensibo.com/api/v2/pods/{device_id}/acStates?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"acState\":{\"on\":true,\"mode\":\"cool\",\"targetTemperature\":22,\"fanLevel\":\"auto\",\"temperatureUnit\":\"C\"}}'"
      },
      {
        "title": "AC State Properties",
        "body": "PropertyTypeValuesonbooleantrue, falsemodestringcool, heat, fan, auto, drytargetTemperatureintegervaries by AC unittemperatureUnitstringC, FfanLevelstringlow, medium, high, autoswingstringstopped, rangeful"
      },
      {
        "title": "Current Measurements",
        "body": "Include measurements in fields:\n\ncurl --compressed \"https://home.sensibo.com/api/v2/pods/{device_id}?fields=measurements&apiKey={key}\"\n\nResponse includes:\n\n{\"measurements\": {\"temperature\": 24.5, \"humidity\": 55, \"time\": \"2024-01-15T12:00:00Z\"}}"
      },
      {
        "title": "Historical Data",
        "body": "curl --compressed \"https://home.sensibo.com/api/v2/pods/{device_id}/historicalMeasurements?days=1&apiKey={key}\""
      },
      {
        "title": "Enable/Disable",
        "body": "curl --compressed -X PUT \"https://home.sensibo.com/api/v2/pods/{device_id}/smartmode?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" -d '{\"enabled\":true}'"
      },
      {
        "title": "Configure Thresholds",
        "body": "curl --compressed -X POST \"https://home.sensibo.com/api/v2/pods/{device_id}/smartmode?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"enabled\": true,\n    \"lowTemperatureThreshold\": 20,\n    \"lowTemperatureState\": {\"on\": true, \"mode\": \"heat\"},\n    \"highTemperatureThreshold\": 26,\n    \"highTemperatureState\": {\"on\": true, \"mode\": \"cool\"}\n  }'"
      },
      {
        "title": "Schedules",
        "body": "Note: Schedules use API v1 base URL: https://home.sensibo.com/api/v1"
      },
      {
        "title": "List Schedules",
        "body": "curl --compressed \"https://home.sensibo.com/api/v1/pods/{device_id}/schedules/?apiKey={key}\""
      },
      {
        "title": "Create Schedule",
        "body": "curl --compressed -X POST \"https://home.sensibo.com/api/v1/pods/{device_id}/schedules/?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"targetTimeLocal\": \"22:00\",\n    \"timezone\": \"Europe/London\",\n    \"acState\": {\"on\": false},\n    \"recurOnDaysOfWeek\": [\"sunday\",\"monday\",\"tuesday\",\"wednesday\",\"thursday\",\"friday\",\"saturday\"]\n  }'"
      },
      {
        "title": "Delete Schedule",
        "body": "curl --compressed -X DELETE \"https://home.sensibo.com/api/v1/pods/{device_id}/schedules/{schedule_id}/?apiKey={key}\""
      },
      {
        "title": "Timer",
        "body": "Set a one-time delayed action:\n\ncurl --compressed -X PUT \"https://home.sensibo.com/api/v1/pods/{device_id}/timer/?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"minutesFromNow\": 30, \"acState\": {\"on\": false}}'"
      },
      {
        "title": "Usage Tips",
        "body": "Match room names: When user says \"living room\" or \"bedroom\", look up device ID in TOOLS.md\nCheck response: Verify \"status\": \"success\" in API response\nTemperature ranges: Depend on the specific AC unit's capabilities\nRate limits: Use --compressed to get higher rate limits\nBulk operations: Loop through device IDs for \"turn off all ACs\""
      }
    ],
    "body": "Sensibo AC Control\n\nControl smart AC units via the Sensibo REST API.\n\nFirst-Time Setup\nGet API key from https://home.sensibo.com/me/api\nList devices to get IDs:\ncurl --compressed \"https://home.sensibo.com/api/v2/users/me/pods?fields=id,room&apiKey={API_KEY}\"\n\nStore in TOOLS.md:\n## Sensibo\nAPI Key: `{your_key}`\n\n| Room | Device ID |\n|------|-----------|\n| Living Room | abc123 |\n| Bedroom | xyz789 |\n\nAPI Reference\n\nBase URL: https://home.sensibo.com/api/v2\nAuth: ?apiKey={key} query parameter\nAlways use: --compressed flag for better rate limits\n\nTurn ON/OFF\ncurl --compressed -X POST \"https://home.sensibo.com/api/v2/pods/{device_id}/acStates?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" -d '{\"acState\":{\"on\":true}}'\n\nSet Temperature\ncurl --compressed -X PATCH \"https://home.sensibo.com/api/v2/pods/{device_id}/acStates/targetTemperature?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" -d '{\"newValue\":23}'\n\nSet Mode\n\nOptions: cool, heat, fan, auto, dry\n\ncurl --compressed -X PATCH \"https://home.sensibo.com/api/v2/pods/{device_id}/acStates/mode?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" -d '{\"newValue\":\"cool\"}'\n\nSet Fan Level\n\nOptions: low, medium, high, auto\n\ncurl --compressed -X PATCH \"https://home.sensibo.com/api/v2/pods/{device_id}/acStates/fanLevel?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" -d '{\"newValue\":\"auto\"}'\n\nFull State Change\ncurl --compressed -X POST \"https://home.sensibo.com/api/v2/pods/{device_id}/acStates?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"acState\":{\"on\":true,\"mode\":\"cool\",\"targetTemperature\":22,\"fanLevel\":\"auto\",\"temperatureUnit\":\"C\"}}'\n\nAC State Properties\nProperty\tType\tValues\non\tboolean\ttrue, false\nmode\tstring\tcool, heat, fan, auto, dry\ntargetTemperature\tinteger\tvaries by AC unit\ntemperatureUnit\tstring\tC, F\nfanLevel\tstring\tlow, medium, high, auto\nswing\tstring\tstopped, rangeful\nReading Sensor Data\nCurrent Measurements\n\nInclude measurements in fields:\n\ncurl --compressed \"https://home.sensibo.com/api/v2/pods/{device_id}?fields=measurements&apiKey={key}\"\n\n\nResponse includes:\n\n{\"measurements\": {\"temperature\": 24.5, \"humidity\": 55, \"time\": \"2024-01-15T12:00:00Z\"}}\n\nHistorical Data\ncurl --compressed \"https://home.sensibo.com/api/v2/pods/{device_id}/historicalMeasurements?days=1&apiKey={key}\"\n\nClimate React (Smart Automation)\nEnable/Disable\ncurl --compressed -X PUT \"https://home.sensibo.com/api/v2/pods/{device_id}/smartmode?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" -d '{\"enabled\":true}'\n\nConfigure Thresholds\ncurl --compressed -X POST \"https://home.sensibo.com/api/v2/pods/{device_id}/smartmode?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"enabled\": true,\n    \"lowTemperatureThreshold\": 20,\n    \"lowTemperatureState\": {\"on\": true, \"mode\": \"heat\"},\n    \"highTemperatureThreshold\": 26,\n    \"highTemperatureState\": {\"on\": true, \"mode\": \"cool\"}\n  }'\n\nSchedules\n\nNote: Schedules use API v1 base URL: https://home.sensibo.com/api/v1\n\nList Schedules\ncurl --compressed \"https://home.sensibo.com/api/v1/pods/{device_id}/schedules/?apiKey={key}\"\n\nCreate Schedule\ncurl --compressed -X POST \"https://home.sensibo.com/api/v1/pods/{device_id}/schedules/?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"targetTimeLocal\": \"22:00\",\n    \"timezone\": \"Europe/London\",\n    \"acState\": {\"on\": false},\n    \"recurOnDaysOfWeek\": [\"sunday\",\"monday\",\"tuesday\",\"wednesday\",\"thursday\",\"friday\",\"saturday\"]\n  }'\n\nDelete Schedule\ncurl --compressed -X DELETE \"https://home.sensibo.com/api/v1/pods/{device_id}/schedules/{schedule_id}/?apiKey={key}\"\n\nTimer\n\nSet a one-time delayed action:\n\ncurl --compressed -X PUT \"https://home.sensibo.com/api/v1/pods/{device_id}/timer/?apiKey={key}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"minutesFromNow\": 30, \"acState\": {\"on\": false}}'\n\nUsage Tips\nMatch room names: When user says \"living room\" or \"bedroom\", look up device ID in TOOLS.md\nCheck response: Verify \"status\": \"success\" in API response\nTemperature ranges: Depend on the specific AC unit's capabilities\nRate limits: Use --compressed to get higher rate limits\nBulk operations: Loop through device IDs for \"turn off all ACs\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/omere2/sensibo",
    "publisherUrl": "https://clawhub.ai/omere2/sensibo",
    "owner": "omere2",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}