YouTube Live Broadcast Checking
PassAudited by VirusTotal on May 11, 2026.
Overview
Type: OpenClaw Skill Name: youtube-live-broadcast-checking Version: 1.3.7 The skill is a legitimate integration for monitoring YouTube live streams and upcoming broadcasts using the official Google Data API v3. The code in skill.js and store.js implements the described functionality (watchlist management and API querying) without any signs of malicious intent, data exfiltration, or unauthorized command execution. It correctly handles the YOUTUBE_API_KEY environment variable and persists user-defined channel lists to a local watchlist.json file as documented.
Findings (0)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
A misconfigured or over-broad API key could consume quota or expose access to the associated Google Cloud project's YouTube Data API allowance.
The skill reads a Google/YouTube API key from the agent environment and uses it to authenticate YouTube Data API calls.
return process.env.YOUTUBE_API_KEY;
Use a restricted API key limited to the YouTube Data API, avoid sharing it with unrelated skills, and monitor quota usage in Google Cloud.
Installing the skill may fetch third-party Node dependencies, so dependency integrity depends on npm/package-lock behavior and the user's install process.
The skill depends on an npm package to call Google APIs. This is expected for the purpose, but npm installation introduces normal third-party dependency provenance considerations.
"dependencies": { "googleapis": "^126.0.0" }Install from the referenced repository or trusted package source, review the lockfile when possible, and keep dependencies updated.
The local watchlist can reveal which channels the user monitors and will remain available to future agent sessions using this skill.
The skill stores the user's channel watchlist on disk so it persists across agent restarts.
const STORAGE_FILE = path.join(__dirname, 'watchlist.json');
Only add channels you are comfortable storing locally, and delete watchlist.json or use the remove tool if you no longer want entries retained.
