# Send Google Home Control 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-control",
    "name": "Google Home Control",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/TVDOfficial/google-home-control",
    "canonicalUrl": "https://clawhub.ai/TVDOfficial/google-home-control",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/google-home-control",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-home-control",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/control.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "google-home-control",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T21:58:32.630Z",
      "expiresAt": "2026-05-10T21:58:32.630Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-home-control",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-home-control",
        "contentDisposition": "attachment; filename=\"google-home-control-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "google-home-control"
      },
      "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-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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/google-home-control",
    "downloadUrl": "https://openagent3.xyz/downloads/google-home-control",
    "agentUrl": "https://openagent3.xyz/skills/google-home-control/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-home-control/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-home-control/agent.md"
  }
}
```
## Documentation

### Google Home Control (N.O.V.A.)

Created by: Mathew Pittard (Mat)
Portfolio: mathewpittard.vercel.app

This skill allows Clawdbot to control your smart home devices (lights, TVs, appliances) directly using a Python-based bridge to the Google Assistant SDK.

### 🛠️ Step-by-Step Setup

To get this skill working, you'll need to link it to your own Google account. Follow these steps:

### 1. Create a Google Cloud Project

Go to the Google Cloud Console.
Create a new project (e.g., "My Smart Home").
Enable the Google Assistant API.

### 2. Configure OAuth

Go to APIs & Services > Credentials.
Configure your OAuth Consent Screen (set User Type to "External" and add yourself as a test user).
Create an OAuth 2.0 Client ID with the type Desktop app.
Download the JSON file and rename it to client_secret.json.

### 3. Prepare the Python Environment

This skill requires a Python virtual environment with specific dependencies:

# Create and activate environment
python3 -m venv google_home_env
source google_home_env/bin/activate

# Install requirements
pip install google-assistant-sdk[samples] google-auth-oauthlib[tool] tenacity

### 4. Authorize and Generate Credentials

Run the following command in your terminal to authorize the SDK:

google-oauthlib-tool --client-secrets /path/to/your/client_secret.json --scope https://www.googleapis.com/auth/assistant-sdk-prototype --save

This will open a browser window. Log in and grant permissions.
It will save a credentials.json file to ~/.config/google-oauthlib-tool/credentials.json.

### 5. Final Configuration

Ensure the google_home_env is accessible to Clawdbot. When Clawdbot runs the skill, it will look for your credentials in the standard ~/.config path automatically.

### 🚀 Usage

Simply tell the agent what to do:

"Turn off the office lights."
"Set the TV volume to 20."

The agent will use the control.py script inside this skill to execute the command via Google Assistant.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: TVDOfficial
- Version: 1.0.3
## 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:58:32.630Z
- Expires at: 2026-05-10T21:58:32.630Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/google-home-control)
- [Send to Agent page](https://openagent3.xyz/skills/google-home-control/agent)
- [JSON manifest](https://openagent3.xyz/skills/google-home-control/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/google-home-control/agent.md)
- [Download page](https://openagent3.xyz/downloads/google-home-control)