# Send Google Home/Nest 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": "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": {
    "downloadUrl": "/downloads/google-home",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-home",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "google-home",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T21:57:38.490Z",
      "expiresAt": "2026-05-10T21:57:38.490Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-home",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-home",
        "contentDisposition": "attachment; filename=\"google-home-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "google-home"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Google Home / Nest CLI

Control Google Nest devices via the Smart Device Management (SDM) API using curl + jq.

### Setup (Required)

Create a Google Cloud Project

Go to https://console.cloud.google.com
Create a new project



Enable the SDM API

APIs & Services → Library
Search "Smart Device Management"
Enable it



Create OAuth Credentials

APIs & Services → Credentials
Create OAuth 2.0 Client ID
Download the JSON file
Extract client_id and client_secret



Register Your Devices

Visit https://nests.google.com/frame/register-user
Accept the terms



Get Access Token
# Replace with your values
curl -s \\
  -d "client_id=YOUR_CLIENT_ID" \\
  -d "client_secret=YOUR_CLIENT_SECRET" \\
  -d "refresh_token=YOUR_REFRESH_TOKEN" \\
  -d "grant_type=refresh_token" \\
  https://www.googleapis.com/oauth2/v4/token

### Quick Start

# List devices
google-home-cli devices

# Get thermostat info
google-home-cli thermostat "Living Room" --info

# Set temperature (heat/cool/auto)
google-home-cli thermostat "Living Room" --temp 72

# Query camera
google-home-cli camera "Front Door" --status

### Thermostats

google-home-cli thermostat <name> — show current temp/humidity
--temp <degrees> — set target temperature
--mode heat|cool|auto — set HVAC mode
--fan on|auto — control fan

### Cameras & Doorbells

google-home-cli camera <name> — get stream/status
--snapshot — download current image
--stream — start live stream URL

### Speakers & Displays

google-home-cli speaker <name> — device info
--volume 0-100 — set volume
--stop — stop playback

### Environment Variables

export GOOGLE_HOME_CLIENT_ID="your-client-id"
export GOOGLE_HOME_CLIENT_SECRET="your-client-secret"
export GOOGLE_HOME_ACCESS_TOKEN="your-access-token"

### Alternative: Direct API Calls

# List all devices
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" \\
  "https://smartdevicemanagement.googleapis.com/v1/enterprises/YOUR_PROJECT_ID/devices"

# Get device traits
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" \\
  "https://smartdevicemanagement.googleapis.com/v1/enterprises/YOUR_PROJECT_ID/devices/YOUR_DEVICE_ID"

### Helper Script

A nest CLI helper is included at scripts/nest:

# Make it available globally
ln -sf /Users/mitchellbernstein/clawd/skills/google-home/scripts/nest /usr/local/bin/nest

# List devices
nest list

# Get thermostat status
nest status "enterprises/PROJECT_ID/devices/DEVICE_ID"

# Set temperature (Celsius)
nest temp "enterprises/PROJECT_ID/devices/DEVICE_ID" 22

# Set mode
nest mode "enterprises/PROJECT_ID/devices/DEVICE_ID" HEAT

### Configuration

Create ~/.config/google-home/config.json:

{
  "project_id": "your-google-cloud-project-id",
  "access_token": "your-oauth-access-token"
}

### Notes

Tokens expire; refresh them periodically
Device names use full path: enterprises/PROJECT_ID/devices/DEVICE_ID
Temperature is in Celsius (convert from Fahrenheit if needed)
Camera streams require additional permissions
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mitchellbernstein
- 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-03T21:57:38.490Z
- Expires at: 2026-05-10T21:57:38.490Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/google-home)
- [Send to Agent page](https://openagent3.xyz/skills/google-home/agent)
- [JSON manifest](https://openagent3.xyz/skills/google-home/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/google-home/agent.md)
- [Download page](https://openagent3.xyz/downloads/google-home)