{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/google-home-control",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-home-control",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/control.py"
    ],
    "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-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/google-home-control",
    "agentPageUrl": "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"
  },
  "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 Control (N.O.V.A.)",
        "body": "Created by: Mathew Pittard (Mat)\nPortfolio: mathewpittard.vercel.app\n\nThis skill allows Clawdbot to control your smart home devices (lights, TVs, appliances) directly using a Python-based bridge to the Google Assistant SDK."
      },
      {
        "title": "🛠️ Step-by-Step Setup",
        "body": "To get this skill working, you'll need to link it to your own Google account. Follow these steps:"
      },
      {
        "title": "1. Create a Google Cloud Project",
        "body": "Go to the Google Cloud Console.\nCreate a new project (e.g., \"My Smart Home\").\nEnable the Google Assistant API."
      },
      {
        "title": "2. Configure OAuth",
        "body": "Go to APIs & Services > Credentials.\nConfigure your OAuth Consent Screen (set User Type to \"External\" and add yourself as a test user).\nCreate an OAuth 2.0 Client ID with the type Desktop app.\nDownload the JSON file and rename it to client_secret.json."
      },
      {
        "title": "3. Prepare the Python Environment",
        "body": "This skill requires a Python virtual environment with specific dependencies:\n\n# Create and activate environment\npython3 -m venv google_home_env\nsource google_home_env/bin/activate\n\n# Install requirements\npip install google-assistant-sdk[samples] google-auth-oauthlib[tool] tenacity"
      },
      {
        "title": "4. Authorize and Generate Credentials",
        "body": "Run the following command in your terminal to authorize the SDK:\n\ngoogle-oauthlib-tool --client-secrets /path/to/your/client_secret.json --scope https://www.googleapis.com/auth/assistant-sdk-prototype --save\n\nThis will open a browser window. Log in and grant permissions.\nIt will save a credentials.json file to ~/.config/google-oauthlib-tool/credentials.json."
      },
      {
        "title": "5. Final Configuration",
        "body": "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."
      },
      {
        "title": "🚀 Usage",
        "body": "Simply tell the agent what to do:\n\n\"Turn off the office lights.\"\n\"Set the TV volume to 20.\"\n\nThe agent will use the control.py script inside this skill to execute the command via Google Assistant."
      }
    ],
    "body": "Google Home Control (N.O.V.A.)\n\nCreated by: Mathew Pittard (Mat)\nPortfolio: mathewpittard.vercel.app\n\nThis skill allows Clawdbot to control your smart home devices (lights, TVs, appliances) directly using a Python-based bridge to the Google Assistant SDK.\n\n🛠️ Step-by-Step Setup\n\nTo get this skill working, you'll need to link it to your own Google account. Follow these steps:\n\n1. Create a Google Cloud Project\nGo to the Google Cloud Console.\nCreate a new project (e.g., \"My Smart Home\").\nEnable the Google Assistant API.\n2. Configure OAuth\nGo to APIs & Services > Credentials.\nConfigure your OAuth Consent Screen (set User Type to \"External\" and add yourself as a test user).\nCreate an OAuth 2.0 Client ID with the type Desktop app.\nDownload the JSON file and rename it to client_secret.json.\n3. Prepare the Python Environment\n\nThis skill requires a Python virtual environment with specific dependencies:\n\n# Create and activate environment\npython3 -m venv google_home_env\nsource google_home_env/bin/activate\n\n# Install requirements\npip install google-assistant-sdk[samples] google-auth-oauthlib[tool] tenacity\n\n4. Authorize and Generate Credentials\n\nRun the following command in your terminal to authorize the SDK:\n\ngoogle-oauthlib-tool --client-secrets /path/to/your/client_secret.json --scope https://www.googleapis.com/auth/assistant-sdk-prototype --save\n\nThis will open a browser window. Log in and grant permissions.\nIt will save a credentials.json file to ~/.config/google-oauthlib-tool/credentials.json.\n5. Final Configuration\n\nEnsure 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.\n\n🚀 Usage\n\nSimply tell the agent what to do:\n\n\"Turn off the office lights.\"\n\"Set the TV volume to 20.\"\n\nThe agent will use the control.py script inside this skill to execute the command via Google Assistant."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/TVDOfficial/google-home-control",
    "publisherUrl": "https://clawhub.ai/TVDOfficial/google-home-control",
    "owner": "TVDOfficial",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}