{
  "schemaVersion": "1.0",
  "item": {
    "slug": "nest-devices",
    "name": "Nest Devices",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/amogower/nest-devices",
    "canonicalUrl": "https://clawhub.ai/amogower/nest-devices",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/nest-devices",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nest-devices",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/nest-webhook.py",
      "scripts/nest.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/nest-devices"
    },
    "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/nest-devices",
    "agentPageUrl": "https://openagent3.xyz/skills/nest-devices/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nest-devices/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nest-devices/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": "Nest Device Access",
        "body": "Control Nest devices via Google's Smart Device Management API."
      },
      {
        "title": "1. Google Cloud & Device Access",
        "body": "Create a Google Cloud project at console.cloud.google.com\nPay the $5 fee and create a Device Access project at console.nest.google.com/device-access\nCreate OAuth 2.0 credentials (Web application type)\nAdd https://www.google.com as an authorized redirect URI\nLink your Nest account to the Device Access project"
      },
      {
        "title": "2. Get Refresh Token",
        "body": "Run the OAuth flow to get a refresh token:\n\n# 1. Open this URL in browser (replace CLIENT_ID and PROJECT_ID):\nhttps://nestservices.google.com/partnerconnections/PROJECT_ID/auth?redirect_uri=https://www.google.com&access_type=offline&prompt=consent&client_id=CLIENT_ID&response_type=code&scope=https://www.googleapis.com/auth/sdm.service\n\n# 2. Authorize and copy the 'code' parameter from the redirect URL\n\n# 3. Exchange code for tokens:\ncurl -X POST https://oauth2.googleapis.com/token \\\n  -d \"client_id=CLIENT_ID\" \\\n  -d \"client_secret=CLIENT_SECRET\" \\\n  -d \"code=AUTH_CODE\" \\\n  -d \"grant_type=authorization_code\" \\\n  -d \"redirect_uri=https://www.google.com\""
      },
      {
        "title": "3. Store Credentials",
        "body": "Store in 1Password or environment variables:\n\n1Password (recommended):\nCreate an item with fields: project_id, client_id, client_secret, refresh_token\n\nEnvironment variables:\n\nexport NEST_PROJECT_ID=\"your-project-id\"\nexport NEST_CLIENT_ID=\"your-client-id\"\nexport NEST_CLIENT_SECRET=\"your-client-secret\"\nexport NEST_REFRESH_TOKEN=\"your-refresh-token\""
      },
      {
        "title": "List devices",
        "body": "python3 scripts/nest.py list"
      },
      {
        "title": "Thermostat",
        "body": "# Get status\npython3 scripts/nest.py get <device_id>\n\n# Set temperature (Celsius)\npython3 scripts/nest.py set-temp <device_id> 21 --unit c --type heat\n\n# Set temperature (Fahrenheit)\npython3 scripts/nest.py set-temp <device_id> 70 --unit f --type heat\n\n# Change mode (HEAT, COOL, HEATCOOL, OFF)\npython3 scripts/nest.py set-mode <device_id> HEAT\n\n# Eco mode\npython3 scripts/nest.py set-eco <device_id> MANUAL_ECO"
      },
      {
        "title": "Cameras",
        "body": "# Generate live stream URL (RTSP, valid ~5 min)\npython3 scripts/nest.py stream <device_id>"
      },
      {
        "title": "Python API",
        "body": "from nest import NestClient\n\nclient = NestClient()\n\n# List devices\ndevices = client.list_devices()\n\n# Thermostat control\nclient.set_heat_temperature(device_id, 21.0)  # Celsius\nclient.set_thermostat_mode(device_id, 'HEAT')\nclient.set_eco_mode(device_id, 'MANUAL_ECO')\n\n# Camera stream\nresult = client.generate_stream(device_id)\nrtsp_url = result['results']['streamUrls']['rtspUrl']"
      },
      {
        "title": "Configuration",
        "body": "The script checks for credentials in this order:\n\n1Password: Set NEST_OP_VAULT and NEST_OP_ITEM (or use defaults: vault \"Alfred\", item \"Nest Device Access API\")\nEnvironment variables: NEST_PROJECT_ID, NEST_CLIENT_ID, NEST_CLIENT_SECRET, NEST_REFRESH_TOKEN"
      },
      {
        "title": "Temperature Reference",
        "body": "SettingCelsiusFahrenheitEco (away)15-17°C59-63°FComfortable19-21°C66-70°FWarm22-23°C72-73°FNight17-18°C63-65°F"
      },
      {
        "title": "Real-Time Events (Doorbell, Motion, etc.)",
        "body": "For instant alerts when someone rings the doorbell or motion is detected, you need to set up Google Cloud Pub/Sub with a webhook."
      },
      {
        "title": "Prerequisites",
        "body": "Google Cloud CLI (gcloud) installed and authenticated\nCloudflare account (free tier works) for the tunnel\nClawdbot hooks enabled in config"
      },
      {
        "title": "1. Enable Clawdbot Hooks",
        "body": "Add to your clawdbot.json:\n\n{\n  \"hooks\": {\n    \"enabled\": true,\n    \"token\": \"your-secret-token-here\"\n  }\n}\n\nGenerate a token: openssl rand -hex 24"
      },
      {
        "title": "2. Create Pub/Sub Topic",
        "body": "gcloud config set project YOUR_GCP_PROJECT_ID\n\n# Create topic\ngcloud pubsub topics create nest-events\n\n# Grant SDM permission to publish (both the service account and publisher group)\ngcloud pubsub topics add-iam-policy-binding nest-events \\\n  --member=\"serviceAccount:sdm-prod@sdm-prod.iam.gserviceaccount.com\" \\\n  --role=\"roles/pubsub.publisher\"\n\ngcloud pubsub topics add-iam-policy-binding nest-events \\\n  --member=\"group:sdm-publisher@googlegroups.com\" \\\n  --role=\"roles/pubsub.publisher\""
      },
      {
        "title": "3. Link Topic to Device Access",
        "body": "Go to console.nest.google.com/device-access → Your Project → Edit → Set Pub/Sub topic to:\n\nprojects/YOUR_GCP_PROJECT_ID/topics/nest-events"
      },
      {
        "title": "4. Set Up Cloudflare Tunnel",
        "body": "# Install cloudflared\ncurl -L -o ~/.local/bin/cloudflared https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64\nchmod +x ~/.local/bin/cloudflared\n\n# Authenticate (opens browser)\n~/.local/bin/cloudflared tunnel login\n\n# Create named tunnel\n~/.local/bin/cloudflared tunnel create nest-webhook\n\n# Note the Tunnel ID (UUID) from output\n\nCreate ~/.cloudflared/config.yml:\n\ntunnel: nest-webhook\ncredentials-file: /home/YOUR_USER/.cloudflared/TUNNEL_ID.json\n\ningress:\n  - hostname: nest.yourdomain.com\n    service: http://localhost:8420\n  - service: http_status:404\n\nCreate DNS route:\n\n~/.local/bin/cloudflared tunnel route dns nest-webhook nest.yourdomain.com"
      },
      {
        "title": "5. Create Systemd Services",
        "body": "Webhook server (/etc/systemd/system/nest-webhook.service):\n\n[Unit]\nDescription=Nest Pub/Sub Webhook Server\nAfter=network.target\n\n[Service]\nType=simple\nUser=YOUR_USER\nEnvironment=CLAWDBOT_GATEWAY_URL=http://localhost:18789\nEnvironment=CLAWDBOT_HOOKS_TOKEN=your-hooks-token-here\nExecStart=/usr/bin/python3 /path/to/skills/nest-devices/scripts/nest-webhook.py\nRestart=always\nRestartSec=5\n\n[Install]\nWantedBy=multi-user.target\n\nCloudflare tunnel (/etc/systemd/system/cloudflared-nest.service):\n\n[Unit]\nDescription=Cloudflare Tunnel for Nest Webhook\nAfter=network-online.target\nWants=network-online.target\n\n[Service]\nType=simple\nUser=YOUR_USER\nExecStart=/home/YOUR_USER/.local/bin/cloudflared tunnel run nest-webhook\nRestart=always\nRestartSec=5\n\n[Install]\nWantedBy=multi-user.target\n\nEnable and start:\n\nsudo systemctl daemon-reload\nsudo systemctl enable --now nest-webhook cloudflared-nest"
      },
      {
        "title": "6. Create Pub/Sub Push Subscription",
        "body": "gcloud pubsub subscriptions create nest-events-sub \\\n  --topic=nest-events \\\n  --push-endpoint=\"https://nest.yourdomain.com/nest/events\" \\\n  --ack-deadline=30"
      },
      {
        "title": "7. Test",
        "body": "# Test webhook endpoint\ncurl https://nest.yourdomain.com/health\n\n# Simulate doorbell event\ncurl -X POST http://localhost:8420/nest/events \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"message\":{\"data\":\"eyJyZXNvdXJjZVVwZGF0ZSI6eyJuYW1lIjoiZW50ZXJwcmlzZXMvdGVzdC9kZXZpY2VzL0RPT1JCRUxMLTAxIiwiZXZlbnRzIjp7InNkbS5kZXZpY2VzLmV2ZW50cy5Eb29yYmVsbENoaW1lLkNoaW1lIjp7ImV2ZW50SWQiOiJ0ZXN0In19fX0=\"}}'"
      },
      {
        "title": "Supported Events",
        "body": "EventBehaviourDoorbellChime.Chime🔔 Alerts — sends photo to TelegramCameraPerson.Person🚶 Alerts — sends photo to TelegramCameraMotion.Motion📹 Logged only (no alert)CameraSound.Sound🔊 Logged only (no alert)CameraClipPreview.ClipPreview🎬 Logged only (no alert)\n\nStaleness filter: Events older than 5 minutes are logged but never alerted. This prevents notification floods if queued Pub/Sub messages are delivered late."
      },
      {
        "title": "Image Capture",
        "body": "When a doorbell or person event triggers an alert:\n\nPrimary: SDM GenerateImage API — fast, event-specific snapshot\nFallback: RTSP live stream frame capture via ffmpeg (requires ffmpeg installed)"
      },
      {
        "title": "Environment Variables",
        "body": "VariableRequiredDescriptionCLAWDBOT_GATEWAY_URLNoGateway URL (default: http://localhost:18789)CLAWDBOT_HOOKS_TOKENYesGateway hooks token for awareness notificationsOP_SVC_ACCT_TOKENYes1Password service account token for Nest API credentialsTELEGRAM_BOT_TOKENYesTelegram bot token for sending alertsTELEGRAM_CHAT_IDYesTelegram chat ID to receive alertsPORTNoWebhook server port (default: 8420)"
      },
      {
        "title": "Important Setup Notes",
        "body": "Verify the full Pub/Sub topic path in Device Access Console matches your GCP project exactly: projects/YOUR_GCP_PROJECT_ID/topics/nest-events\nUse a push subscription, not pull — the webhook expects HTTP POST delivery\nTest end-to-end after setup: ring the doorbell and confirm a photo arrives. Don't rely on simulated POST requests alone."
      },
      {
        "title": "Limitations",
        "body": "Camera event images expire after ~5 minutes (RTSP fallback captures current frame instead)\nReal-time events require Pub/Sub setup (see above)\nQuick tunnels (without Cloudflare account) have no uptime guarantee\nSome older Nest devices may not support all features\nMotion and sound events are intentionally not alerted to avoid notification fatigue"
      }
    ],
    "body": "Nest Device Access\n\nControl Nest devices via Google's Smart Device Management API.\n\nSetup\n1. Google Cloud & Device Access\nCreate a Google Cloud project at console.cloud.google.com\nPay the $5 fee and create a Device Access project at console.nest.google.com/device-access\nCreate OAuth 2.0 credentials (Web application type)\nAdd https://www.google.com as an authorized redirect URI\nLink your Nest account to the Device Access project\n2. Get Refresh Token\n\nRun the OAuth flow to get a refresh token:\n\n# 1. Open this URL in browser (replace CLIENT_ID and PROJECT_ID):\nhttps://nestservices.google.com/partnerconnections/PROJECT_ID/auth?redirect_uri=https://www.google.com&access_type=offline&prompt=consent&client_id=CLIENT_ID&response_type=code&scope=https://www.googleapis.com/auth/sdm.service\n\n# 2. Authorize and copy the 'code' parameter from the redirect URL\n\n# 3. Exchange code for tokens:\ncurl -X POST https://oauth2.googleapis.com/token \\\n  -d \"client_id=CLIENT_ID\" \\\n  -d \"client_secret=CLIENT_SECRET\" \\\n  -d \"code=AUTH_CODE\" \\\n  -d \"grant_type=authorization_code\" \\\n  -d \"redirect_uri=https://www.google.com\"\n\n3. Store Credentials\n\nStore in 1Password or environment variables:\n\n1Password (recommended): Create an item with fields: project_id, client_id, client_secret, refresh_token\n\nEnvironment variables:\n\nexport NEST_PROJECT_ID=\"your-project-id\"\nexport NEST_CLIENT_ID=\"your-client-id\"\nexport NEST_CLIENT_SECRET=\"your-client-secret\"\nexport NEST_REFRESH_TOKEN=\"your-refresh-token\"\n\nUsage\nList devices\npython3 scripts/nest.py list\n\nThermostat\n# Get status\npython3 scripts/nest.py get <device_id>\n\n# Set temperature (Celsius)\npython3 scripts/nest.py set-temp <device_id> 21 --unit c --type heat\n\n# Set temperature (Fahrenheit)\npython3 scripts/nest.py set-temp <device_id> 70 --unit f --type heat\n\n# Change mode (HEAT, COOL, HEATCOOL, OFF)\npython3 scripts/nest.py set-mode <device_id> HEAT\n\n# Eco mode\npython3 scripts/nest.py set-eco <device_id> MANUAL_ECO\n\nCameras\n# Generate live stream URL (RTSP, valid ~5 min)\npython3 scripts/nest.py stream <device_id>\n\nPython API\nfrom nest import NestClient\n\nclient = NestClient()\n\n# List devices\ndevices = client.list_devices()\n\n# Thermostat control\nclient.set_heat_temperature(device_id, 21.0)  # Celsius\nclient.set_thermostat_mode(device_id, 'HEAT')\nclient.set_eco_mode(device_id, 'MANUAL_ECO')\n\n# Camera stream\nresult = client.generate_stream(device_id)\nrtsp_url = result['results']['streamUrls']['rtspUrl']\n\nConfiguration\n\nThe script checks for credentials in this order:\n\n1Password: Set NEST_OP_VAULT and NEST_OP_ITEM (or use defaults: vault \"Alfred\", item \"Nest Device Access API\")\nEnvironment variables: NEST_PROJECT_ID, NEST_CLIENT_ID, NEST_CLIENT_SECRET, NEST_REFRESH_TOKEN\nTemperature Reference\nSetting\tCelsius\tFahrenheit\nEco (away)\t15-17°C\t59-63°F\nComfortable\t19-21°C\t66-70°F\nWarm\t22-23°C\t72-73°F\nNight\t17-18°C\t63-65°F\nReal-Time Events (Doorbell, Motion, etc.)\n\nFor instant alerts when someone rings the doorbell or motion is detected, you need to set up Google Cloud Pub/Sub with a webhook.\n\nPrerequisites\nGoogle Cloud CLI (gcloud) installed and authenticated\nCloudflare account (free tier works) for the tunnel\nClawdbot hooks enabled in config\n1. Enable Clawdbot Hooks\n\nAdd to your clawdbot.json:\n\n{\n  \"hooks\": {\n    \"enabled\": true,\n    \"token\": \"your-secret-token-here\"\n  }\n}\n\n\nGenerate a token: openssl rand -hex 24\n\n2. Create Pub/Sub Topic\ngcloud config set project YOUR_GCP_PROJECT_ID\n\n# Create topic\ngcloud pubsub topics create nest-events\n\n# Grant SDM permission to publish (both the service account and publisher group)\ngcloud pubsub topics add-iam-policy-binding nest-events \\\n  --member=\"serviceAccount:sdm-prod@sdm-prod.iam.gserviceaccount.com\" \\\n  --role=\"roles/pubsub.publisher\"\n\ngcloud pubsub topics add-iam-policy-binding nest-events \\\n  --member=\"group:sdm-publisher@googlegroups.com\" \\\n  --role=\"roles/pubsub.publisher\"\n\n3. Link Topic to Device Access\n\nGo to console.nest.google.com/device-access → Your Project → Edit → Set Pub/Sub topic to:\n\nprojects/YOUR_GCP_PROJECT_ID/topics/nest-events\n\n4. Set Up Cloudflare Tunnel\n# Install cloudflared\ncurl -L -o ~/.local/bin/cloudflared https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64\nchmod +x ~/.local/bin/cloudflared\n\n# Authenticate (opens browser)\n~/.local/bin/cloudflared tunnel login\n\n# Create named tunnel\n~/.local/bin/cloudflared tunnel create nest-webhook\n\n# Note the Tunnel ID (UUID) from output\n\n\nCreate ~/.cloudflared/config.yml:\n\ntunnel: nest-webhook\ncredentials-file: /home/YOUR_USER/.cloudflared/TUNNEL_ID.json\n\ningress:\n  - hostname: nest.yourdomain.com\n    service: http://localhost:8420\n  - service: http_status:404\n\n\nCreate DNS route:\n\n~/.local/bin/cloudflared tunnel route dns nest-webhook nest.yourdomain.com\n\n5. Create Systemd Services\n\nWebhook server (/etc/systemd/system/nest-webhook.service):\n\n[Unit]\nDescription=Nest Pub/Sub Webhook Server\nAfter=network.target\n\n[Service]\nType=simple\nUser=YOUR_USER\nEnvironment=CLAWDBOT_GATEWAY_URL=http://localhost:18789\nEnvironment=CLAWDBOT_HOOKS_TOKEN=your-hooks-token-here\nExecStart=/usr/bin/python3 /path/to/skills/nest-devices/scripts/nest-webhook.py\nRestart=always\nRestartSec=5\n\n[Install]\nWantedBy=multi-user.target\n\n\nCloudflare tunnel (/etc/systemd/system/cloudflared-nest.service):\n\n[Unit]\nDescription=Cloudflare Tunnel for Nest Webhook\nAfter=network-online.target\nWants=network-online.target\n\n[Service]\nType=simple\nUser=YOUR_USER\nExecStart=/home/YOUR_USER/.local/bin/cloudflared tunnel run nest-webhook\nRestart=always\nRestartSec=5\n\n[Install]\nWantedBy=multi-user.target\n\n\nEnable and start:\n\nsudo systemctl daemon-reload\nsudo systemctl enable --now nest-webhook cloudflared-nest\n\n6. Create Pub/Sub Push Subscription\ngcloud pubsub subscriptions create nest-events-sub \\\n  --topic=nest-events \\\n  --push-endpoint=\"https://nest.yourdomain.com/nest/events\" \\\n  --ack-deadline=30\n\n7. Test\n# Test webhook endpoint\ncurl https://nest.yourdomain.com/health\n\n# Simulate doorbell event\ncurl -X POST http://localhost:8420/nest/events \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"message\":{\"data\":\"eyJyZXNvdXJjZVVwZGF0ZSI6eyJuYW1lIjoiZW50ZXJwcmlzZXMvdGVzdC9kZXZpY2VzL0RPT1JCRUxMLTAxIiwiZXZlbnRzIjp7InNkbS5kZXZpY2VzLmV2ZW50cy5Eb29yYmVsbENoaW1lLkNoaW1lIjp7ImV2ZW50SWQiOiJ0ZXN0In19fX0=\"}}'\n\nSupported Events\nEvent\tBehaviour\nDoorbellChime.Chime\t🔔 Alerts — sends photo to Telegram\nCameraPerson.Person\t🚶 Alerts — sends photo to Telegram\nCameraMotion.Motion\t📹 Logged only (no alert)\nCameraSound.Sound\t🔊 Logged only (no alert)\nCameraClipPreview.ClipPreview\t🎬 Logged only (no alert)\n\nStaleness filter: Events older than 5 minutes are logged but never alerted. This prevents notification floods if queued Pub/Sub messages are delivered late.\n\nImage Capture\n\nWhen a doorbell or person event triggers an alert:\n\nPrimary: SDM GenerateImage API — fast, event-specific snapshot\nFallback: RTSP live stream frame capture via ffmpeg (requires ffmpeg installed)\nEnvironment Variables\nVariable\tRequired\tDescription\nCLAWDBOT_GATEWAY_URL\tNo\tGateway URL (default: http://localhost:18789)\nCLAWDBOT_HOOKS_TOKEN\tYes\tGateway hooks token for awareness notifications\nOP_SVC_ACCT_TOKEN\tYes\t1Password service account token for Nest API credentials\nTELEGRAM_BOT_TOKEN\tYes\tTelegram bot token for sending alerts\nTELEGRAM_CHAT_ID\tYes\tTelegram chat ID to receive alerts\nPORT\tNo\tWebhook server port (default: 8420)\nImportant Setup Notes\nVerify the full Pub/Sub topic path in Device Access Console matches your GCP project exactly: projects/YOUR_GCP_PROJECT_ID/topics/nest-events\nUse a push subscription, not pull — the webhook expects HTTP POST delivery\nTest end-to-end after setup: ring the doorbell and confirm a photo arrives. Don't rely on simulated POST requests alone.\nLimitations\nCamera event images expire after ~5 minutes (RTSP fallback captures current frame instead)\nReal-time events require Pub/Sub setup (see above)\nQuick tunnels (without Cloudflare account) have no uptime guarantee\nSome older Nest devices may not support all features\nMotion and sound events are intentionally not alerted to avoid notification fatigue"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/amogower/nest-devices",
    "publisherUrl": "https://clawhub.ai/amogower/nest-devices",
    "owner": "amogower",
    "version": "2.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/nest-devices",
    "downloadUrl": "https://openagent3.xyz/downloads/nest-devices",
    "agentUrl": "https://openagent3.xyz/skills/nest-devices/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nest-devices/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nest-devices/agent.md"
  }
}