{
  "schemaVersion": "1.0",
  "item": {
    "slug": "google-home",
    "name": "Google Home/Nest",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mitchellbernstein/google-home",
    "canonicalUrl": "https://clawhub.ai/mitchellbernstein/google-home",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/google-home",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-home",
    "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/google-home"
    },
    "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/google-home",
    "agentPageUrl": "https://openagent3.xyz/skills/google-home/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-home/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-home/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": "Google Home / Nest CLI",
        "body": "Control Google Nest devices via the Smart Device Management (SDM) API using curl + jq."
      },
      {
        "title": "Setup (Required)",
        "body": "Create a Google Cloud Project\n\nGo to https://console.cloud.google.com\nCreate a new project\n\n\n\nEnable the SDM API\n\nAPIs & Services → Library\nSearch \"Smart Device Management\"\nEnable it\n\n\n\nCreate OAuth Credentials\n\nAPIs & Services → Credentials\nCreate OAuth 2.0 Client ID\nDownload the JSON file\nExtract client_id and client_secret\n\n\n\nRegister Your Devices\n\nVisit https://nests.google.com/frame/register-user\nAccept the terms\n\n\n\nGet Access Token\n# Replace with your values\ncurl -s \\\n  -d \"client_id=YOUR_CLIENT_ID\" \\\n  -d \"client_secret=YOUR_CLIENT_SECRET\" \\\n  -d \"refresh_token=YOUR_REFRESH_TOKEN\" \\\n  -d \"grant_type=refresh_token\" \\\n  https://www.googleapis.com/oauth2/v4/token"
      },
      {
        "title": "Quick Start",
        "body": "# List devices\ngoogle-home-cli devices\n\n# Get thermostat info\ngoogle-home-cli thermostat \"Living Room\" --info\n\n# Set temperature (heat/cool/auto)\ngoogle-home-cli thermostat \"Living Room\" --temp 72\n\n# Query camera\ngoogle-home-cli camera \"Front Door\" --status"
      },
      {
        "title": "Thermostats",
        "body": "google-home-cli thermostat <name> — show current temp/humidity\n--temp <degrees> — set target temperature\n--mode heat|cool|auto — set HVAC mode\n--fan on|auto — control fan"
      },
      {
        "title": "Cameras & Doorbells",
        "body": "google-home-cli camera <name> — get stream/status\n--snapshot — download current image\n--stream — start live stream URL"
      },
      {
        "title": "Speakers & Displays",
        "body": "google-home-cli speaker <name> — device info\n--volume 0-100 — set volume\n--stop — stop playback"
      },
      {
        "title": "Environment Variables",
        "body": "export GOOGLE_HOME_CLIENT_ID=\"your-client-id\"\nexport GOOGLE_HOME_CLIENT_SECRET=\"your-client-secret\"\nexport GOOGLE_HOME_ACCESS_TOKEN=\"your-access-token\""
      },
      {
        "title": "Alternative: Direct API Calls",
        "body": "# List all devices\ncurl -s -H \"Authorization: Bearer $ACCESS_TOKEN\" \\\n  \"https://smartdevicemanagement.googleapis.com/v1/enterprises/YOUR_PROJECT_ID/devices\"\n\n# Get device traits\ncurl -s -H \"Authorization: Bearer $ACCESS_TOKEN\" \\\n  \"https://smartdevicemanagement.googleapis.com/v1/enterprises/YOUR_PROJECT_ID/devices/YOUR_DEVICE_ID\""
      },
      {
        "title": "Helper Script",
        "body": "A nest CLI helper is included at scripts/nest:\n\n# Make it available globally\nln -sf /Users/mitchellbernstein/clawd/skills/google-home/scripts/nest /usr/local/bin/nest\n\n# List devices\nnest list\n\n# Get thermostat status\nnest status \"enterprises/PROJECT_ID/devices/DEVICE_ID\"\n\n# Set temperature (Celsius)\nnest temp \"enterprises/PROJECT_ID/devices/DEVICE_ID\" 22\n\n# Set mode\nnest mode \"enterprises/PROJECT_ID/devices/DEVICE_ID\" HEAT"
      },
      {
        "title": "Configuration",
        "body": "Create ~/.config/google-home/config.json:\n\n{\n  \"project_id\": \"your-google-cloud-project-id\",\n  \"access_token\": \"your-oauth-access-token\"\n}"
      },
      {
        "title": "Notes",
        "body": "Tokens expire; refresh them periodically\nDevice names use full path: enterprises/PROJECT_ID/devices/DEVICE_ID\nTemperature is in Celsius (convert from Fahrenheit if needed)\nCamera streams require additional permissions"
      }
    ],
    "body": "Google Home / Nest CLI\n\nControl Google Nest devices via the Smart Device Management (SDM) API using curl + jq.\n\nSetup (Required)\n\nCreate a Google Cloud Project\n\nGo to https://console.cloud.google.com\nCreate a new project\n\nEnable the SDM API\n\nAPIs & Services → Library\nSearch \"Smart Device Management\"\nEnable it\n\nCreate OAuth Credentials\n\nAPIs & Services → Credentials\nCreate OAuth 2.0 Client ID\nDownload the JSON file\nExtract client_id and client_secret\n\nRegister Your Devices\n\nVisit https://nests.google.com/frame/register-user\nAccept the terms\n\nGet Access Token\n\n# Replace with your values\ncurl -s \\\n  -d \"client_id=YOUR_CLIENT_ID\" \\\n  -d \"client_secret=YOUR_CLIENT_SECRET\" \\\n  -d \"refresh_token=YOUR_REFRESH_TOKEN\" \\\n  -d \"grant_type=refresh_token\" \\\n  https://www.googleapis.com/oauth2/v4/token\n\nQuick Start\n# List devices\ngoogle-home-cli devices\n\n# Get thermostat info\ngoogle-home-cli thermostat \"Living Room\" --info\n\n# Set temperature (heat/cool/auto)\ngoogle-home-cli thermostat \"Living Room\" --temp 72\n\n# Query camera\ngoogle-home-cli camera \"Front Door\" --status\n\nDevice Commands\nThermostats\ngoogle-home-cli thermostat <name> — show current temp/humidity\n--temp <degrees> — set target temperature\n--mode heat|cool|auto — set HVAC mode\n--fan on|auto — control fan\nCameras & Doorbells\ngoogle-home-cli camera <name> — get stream/status\n--snapshot — download current image\n--stream — start live stream URL\nSpeakers & Displays\ngoogle-home-cli speaker <name> — device info\n--volume 0-100 — set volume\n--stop — stop playback\nEnvironment Variables\nexport GOOGLE_HOME_CLIENT_ID=\"your-client-id\"\nexport GOOGLE_HOME_CLIENT_SECRET=\"your-client-secret\"\nexport GOOGLE_HOME_ACCESS_TOKEN=\"your-access-token\"\n\nAlternative: Direct API Calls\n# List all devices\ncurl -s -H \"Authorization: Bearer $ACCESS_TOKEN\" \\\n  \"https://smartdevicemanagement.googleapis.com/v1/enterprises/YOUR_PROJECT_ID/devices\"\n\n# Get device traits\ncurl -s -H \"Authorization: Bearer $ACCESS_TOKEN\" \\\n  \"https://smartdevicemanagement.googleapis.com/v1/enterprises/YOUR_PROJECT_ID/devices/YOUR_DEVICE_ID\"\n\nHelper Script\n\nA nest CLI helper is included at scripts/nest:\n\n# Make it available globally\nln -sf /Users/mitchellbernstein/clawd/skills/google-home/scripts/nest /usr/local/bin/nest\n\n# List devices\nnest list\n\n# Get thermostat status\nnest status \"enterprises/PROJECT_ID/devices/DEVICE_ID\"\n\n# Set temperature (Celsius)\nnest temp \"enterprises/PROJECT_ID/devices/DEVICE_ID\" 22\n\n# Set mode\nnest mode \"enterprises/PROJECT_ID/devices/DEVICE_ID\" HEAT\n\nConfiguration\n\nCreate ~/.config/google-home/config.json:\n\n{\n  \"project_id\": \"your-google-cloud-project-id\",\n  \"access_token\": \"your-oauth-access-token\"\n}\n\nNotes\nTokens expire; refresh them periodically\nDevice names use full path: enterprises/PROJECT_ID/devices/DEVICE_ID\nTemperature is in Celsius (convert from Fahrenheit if needed)\nCamera streams require additional permissions"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mitchellbernstein/google-home",
    "publisherUrl": "https://clawhub.ai/mitchellbernstein/google-home",
    "owner": "mitchellbernstein",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/google-home",
    "downloadUrl": "https://openagent3.xyz/downloads/google-home",
    "agentUrl": "https://openagent3.xyz/skills/google-home/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-home/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-home/agent.md"
  }
}