{
  "schemaVersion": "1.0",
  "item": {
    "slug": "govee-control",
    "name": "govee-control",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Cole-Z/govee-control",
    "canonicalUrl": "https://clawhub.ai/Cole-Z/govee-control",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/govee-control",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=govee-control",
    "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/govee-control"
    },
    "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/govee-control",
    "agentPageUrl": "https://openagent3.xyz/skills/govee-control/agent",
    "manifestUrl": "https://openagent3.xyz/skills/govee-control/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/govee-control/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": "Govee OpenAPI (No Scripts)",
        "body": "Control Govee devices using manual curl commands only."
      },
      {
        "title": "Linux System Requirements",
        "body": "Linux shell with bash available.\ncurl installed.\nInternet access to https://developer-api.govee.com and https://developer.govee.com.\nGovee account with supported devices linked.\nOptional: jq for pretty-printing JSON responses.\n\nQuick check:\n\nbash --version | head -n 1\ncurl --version | head -n 1\ncommand -v jq >/dev/null && jq --version || echo \"jq not installed (optional)\""
      },
      {
        "title": "Required Credential",
        "body": "GOVEE_API_KEY (required)"
      },
      {
        "title": "Autonomous Use Guardrails",
        "body": "Only read GOVEE_API_KEY from your chosen per-user secrets file.\nDo not read unrelated secret files or system credentials.\nRestrict outbound requests to:\n\nhttps://developer-api.govee.com\nhttps://developer.govee.com\n\n\nAsk before controlling multiple devices or performing bulk changes."
      },
      {
        "title": "Get a Govee API Key",
        "body": "Open https://developer.govee.com/.\nSign in with the same Govee account that owns your devices.\nGo to the API key section in the developer console.\nGenerate/apply for a key and copy it.\nKeep it private (treat it like a password).\n\nIf the portal UI changes, use the same flow: sign in to Govee Developer → find API key management → create key."
      },
      {
        "title": "Secure Local Storage (Per-User)",
        "body": "Never store API keys in skill files, git, or chat logs.\n\nCreate a per-user secrets file (avoid /root unless intentionally running as root):\n\nmkdir -p \"$HOME/.openclaw/secrets\"\ncat > \"$HOME/.openclaw/secrets/govee.env\" <<'EOF'\nexport GOVEE_API_KEY='<YOUR_API_KEY>'\nEOF\nchmod 600 \"$HOME/.openclaw/secrets/govee.env\"\n\nLoad only this variable into the current shell (no set -a):\n\nsource \"$HOME/.openclaw/secrets/govee.env\""
      },
      {
        "title": "API Base URL",
        "body": "https://developer-api.govee.com/v1"
      },
      {
        "title": "Discover Devices First",
        "body": "Before controlling lights, list devices and copy your own device + model:\n\ncurl -sS -X GET \"https://developer-api.govee.com/v1/devices\" \\\n  -H \"Govee-API-Key: $GOVEE_API_KEY\" \\\n  -H \"Content-Type: application/json\""
      },
      {
        "title": "View Device State",
        "body": "curl -sS -X GET \"https://developer-api.govee.com/v1/devices/state?device=<DEVICE>&model=<MODEL>\" \\\n  -H \"Govee-API-Key: $GOVEE_API_KEY\" \\\n  -H \"Content-Type: application/json\""
      },
      {
        "title": "Turn on",
        "body": "curl -sS -X PUT \"https://developer-api.govee.com/v1/devices/control\" \\\n  -H \"Govee-API-Key: $GOVEE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"device\":\"<DEVICE>\",\"model\":\"<MODEL>\",\"cmd\":{\"name\":\"turn\",\"value\":\"on\"}}'"
      },
      {
        "title": "Turn off",
        "body": "curl -sS -X PUT \"https://developer-api.govee.com/v1/devices/control\" \\\n  -H \"Govee-API-Key: $GOVEE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"device\":\"<DEVICE>\",\"model\":\"<MODEL>\",\"cmd\":{\"name\":\"turn\",\"value\":\"off\"}}'"
      },
      {
        "title": "Brightness (1-100)",
        "body": "curl -sS -X PUT \"https://developer-api.govee.com/v1/devices/control\" \\\n  -H \"Govee-API-Key: $GOVEE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"device\":\"<DEVICE>\",\"model\":\"<MODEL>\",\"cmd\":{\"name\":\"brightness\",\"value\":75}}'"
      },
      {
        "title": "RGB color",
        "body": "curl -sS -X PUT \"https://developer-api.govee.com/v1/devices/control\" \\\n  -H \"Govee-API-Key: $GOVEE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"device\":\"<DEVICE>\",\"model\":\"<MODEL>\",\"cmd\":{\"name\":\"color\",\"value\":{\"r\":120,\"g\":180,\"b\":255}}}'"
      },
      {
        "title": "Response Check",
        "body": "Success usually returns:\n\n{\"code\":200,\"message\":\"Success\"}\n\nIf code is not 200, treat it as failure."
      },
      {
        "title": "Troubleshooting",
        "body": "401 / unauthorized: key missing, expired, or invalid.\n429 / rate limit: slow retries.\ncommand rejected: model does not support that command (supportCmds).\nempty device list: account has no supported linked devices."
      },
      {
        "title": "Safety Rules",
        "body": "Use placeholders in docs only (<DEVICE>, <MODEL>, <YOUR_API_KEY>).\nDo not include real keys or device IDs in published artifacts.\nPrefer one-device-at-a-time actions over bulk changes.\nAvoid pasting API keys into chat."
      }
    ],
    "body": "Govee OpenAPI (No Scripts)\n\nControl Govee devices using manual curl commands only.\n\nLinux System Requirements\nLinux shell with bash available.\ncurl installed.\nInternet access to https://developer-api.govee.com and https://developer.govee.com.\nGovee account with supported devices linked.\nOptional: jq for pretty-printing JSON responses.\n\nQuick check:\n\nbash --version | head -n 1\ncurl --version | head -n 1\ncommand -v jq >/dev/null && jq --version || echo \"jq not installed (optional)\"\n\nRequired Credential\nGOVEE_API_KEY (required)\nAutonomous Use Guardrails\nOnly read GOVEE_API_KEY from your chosen per-user secrets file.\nDo not read unrelated secret files or system credentials.\nRestrict outbound requests to:\nhttps://developer-api.govee.com\nhttps://developer.govee.com\nAsk before controlling multiple devices or performing bulk changes.\nGet a Govee API Key\nOpen https://developer.govee.com/.\nSign in with the same Govee account that owns your devices.\nGo to the API key section in the developer console.\nGenerate/apply for a key and copy it.\nKeep it private (treat it like a password).\n\nIf the portal UI changes, use the same flow: sign in to Govee Developer → find API key management → create key.\n\nSecure Local Storage (Per-User)\n\nNever store API keys in skill files, git, or chat logs.\n\nCreate a per-user secrets file (avoid /root unless intentionally running as root):\n\nmkdir -p \"$HOME/.openclaw/secrets\"\ncat > \"$HOME/.openclaw/secrets/govee.env\" <<'EOF'\nexport GOVEE_API_KEY='<YOUR_API_KEY>'\nEOF\nchmod 600 \"$HOME/.openclaw/secrets/govee.env\"\n\n\nLoad only this variable into the current shell (no set -a):\n\nsource \"$HOME/.openclaw/secrets/govee.env\"\n\nAPI Base URL\nhttps://developer-api.govee.com/v1\n\nDiscover Devices First\n\nBefore controlling lights, list devices and copy your own device + model:\n\ncurl -sS -X GET \"https://developer-api.govee.com/v1/devices\" \\\n  -H \"Govee-API-Key: $GOVEE_API_KEY\" \\\n  -H \"Content-Type: application/json\"\n\nView Device State\ncurl -sS -X GET \"https://developer-api.govee.com/v1/devices/state?device=<DEVICE>&model=<MODEL>\" \\\n  -H \"Govee-API-Key: $GOVEE_API_KEY\" \\\n  -H \"Content-Type: application/json\"\n\nControl Commands\nTurn on\ncurl -sS -X PUT \"https://developer-api.govee.com/v1/devices/control\" \\\n  -H \"Govee-API-Key: $GOVEE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"device\":\"<DEVICE>\",\"model\":\"<MODEL>\",\"cmd\":{\"name\":\"turn\",\"value\":\"on\"}}'\n\nTurn off\ncurl -sS -X PUT \"https://developer-api.govee.com/v1/devices/control\" \\\n  -H \"Govee-API-Key: $GOVEE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"device\":\"<DEVICE>\",\"model\":\"<MODEL>\",\"cmd\":{\"name\":\"turn\",\"value\":\"off\"}}'\n\nBrightness (1-100)\ncurl -sS -X PUT \"https://developer-api.govee.com/v1/devices/control\" \\\n  -H \"Govee-API-Key: $GOVEE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"device\":\"<DEVICE>\",\"model\":\"<MODEL>\",\"cmd\":{\"name\":\"brightness\",\"value\":75}}'\n\nRGB color\ncurl -sS -X PUT \"https://developer-api.govee.com/v1/devices/control\" \\\n  -H \"Govee-API-Key: $GOVEE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"device\":\"<DEVICE>\",\"model\":\"<MODEL>\",\"cmd\":{\"name\":\"color\",\"value\":{\"r\":120,\"g\":180,\"b\":255}}}'\n\nResponse Check\n\nSuccess usually returns:\n\n{\"code\":200,\"message\":\"Success\"}\n\n\nIf code is not 200, treat it as failure.\n\nTroubleshooting\n401 / unauthorized: key missing, expired, or invalid.\n429 / rate limit: slow retries.\ncommand rejected: model does not support that command (supportCmds).\nempty device list: account has no supported linked devices.\nSafety Rules\nUse placeholders in docs only (<DEVICE>, <MODEL>, <YOUR_API_KEY>).\nDo not include real keys or device IDs in published artifacts.\nPrefer one-device-at-a-time actions over bulk changes.\nAvoid pasting API keys into chat."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Cole-Z/govee-control",
    "publisherUrl": "https://clawhub.ai/Cole-Z/govee-control",
    "owner": "Cole-Z",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/govee-control",
    "downloadUrl": "https://openagent3.xyz/downloads/govee-control",
    "agentUrl": "https://openagent3.xyz/skills/govee-control/agent",
    "manifestUrl": "https://openagent3.xyz/skills/govee-control/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/govee-control/agent.md"
  }
}