Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

youtube-live-broadcast-checkingyoutube 直播查看

Agent Skill

youtube-live-broadcast-checking 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,689

周安装

268

GitHub Stars

公开资料未说明

下载量

2,165
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:youtube-live-broadcast-checking(youtube 直播查看)
来源仓库:https://github.com/stevenho1394/youtube-live-broadcast-checking
安装命令:
openclaw skills install youtube-live-broadcast-checking
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install youtube-live-broadcast-checking

简介

使用 YouTube 数据 API v3 和 Google API 密钥检查和管理 YouTube 频道,以查找其下一个预定的直播。

SKILL.md

YouTube Live Broadcast Checking Skill

Checks upcoming live broadcast schedules and current live status for YouTube channels using the YouTube Data API v3.

Repository: https://github.com/StevenHo1394/openclaw/tree/main/skills/youtube-live-broadcast-checking

Features

  • Add/remove channels to a watchlist
  • Get next scheduled broadcast for a channel
  • List all upcoming broadcasts across watchlist
  • Check if a channel is currently live (get_live_broadcast)

Prerequisites

  • A Google Cloud project with YouTube Data API v3 enabled
  • An API key with YouTube Data API access
  • The API key must be set as environment variable YOUTUBE_API_KEY for the agent session

Tools

add_channel(channel_id)

Add a YouTube channel to the watchlist.

Parameters:

  • channel_id: Channel ID (e.g., UCabcd1234) or handle/URL (the skill will resolve)

Returns: { id, name, status: "added" } or error

remove_channel(channel_id)

Remove a channel from the watchlist.

Parameters:

  • channel_id: Channel ID

Returns: { removed: true } or error

list_channels()

List all channels in the watchlist.

Returns: Array of { id, name, added_at }

get_next_broadcast(channel_id)

Get the next upcoming broadcast for a specific channel.

Parameters:

  • channel_id: Channel ID or handle

Returns: Broadcast object with video_id, title, scheduled_start_time, thumbnail_url, video_url or null if none scheduled.

check_upcoming_broadcasts(channel_ids?)

Check upcoming broadcasts for multiple channels. If channel_ids omitted, checks all watchlist channels. Accepts channel IDs, handles (e.g., @chan22), or display names; these are resolved automatically via YouTube API search.

Parameters:

  • channel_ids (optional): Array of channel IDs, handles, or display names

Returns: Array of broadcast objects sorted by start time.

get_live_broadcast(channel_id)

Check if a channel is currently live streaming.

Parameters:

  • channel_id: Channel ID or handle

Returns: Live broadcast object with video_id, title, description, actual_start_time, concurrent_viewers, video_url or null if not live.

Usage Example

// Add a channel
await skill.tools.add_channel({ channel_id: 'Sami Live HK' });

// Check who's live now
const live = await skill.tools.get_live_broadcast({ channel_id: 'Sami Live HK' });
if (live) {
  console.log(`Live: ${live.title} (${live.concurrent_viewers} viewers)`);
}

// Get next scheduled broadcast
const next = await skill.tools.get_next_broadcast({ channel_id: 'UCfYvxA4eSAvoES5fffhnRnA' });

Installation

  1. Copy the skill directory to ~/.openclaw/workspace/skills/
  2. Run npm install inside the skill folder to install googleapis
  3. Add "youtube-live-broadcast-checking" to the desired agent's skills array in openclaw.json
  4. Ensure the agent's session has YOUTUBE_API_KEY set (e.g., in auth-profiles.json or gateway environment)
  5. Restart the agent or wait for next session

Storage Behavior

The watchlist is stored in memory only and will be lost when the agent session restarts. For persistent storage across restarts, the skill would need to be modified to write to disk or use an external database.

Quotas & Limits

  • YouTube Data API has daily quota limits (10,000 units by default). Each channels.list or search.list call costs varying units. Monitor your quota in Google Cloud Console.
  • If you encounter 403 errors, you may have exceeded your quota.

Troubleshooting

  • Missing YOUTUBE_API_KEY: Ensure the environment variable is set for the agent session.
  • Quota exceeded: Check your Google Cloud Console quota usage.
  • Channel not found: Verify the channel ID; you may need to use the channel's handle or URL if the ID is unknown.

Version History

v1.3.5 (latest)

  • Improved check_upcoming_broadcasts to accept display names (e.g., 'Sami Live HK') or handles (e.g., '@chan22') in addition to channel IDs, resolving them automatically via YouTube API search.
  • Updated tool documentation accordingly.
  • Bumped version to 1.3.5.

v1.3.4 (latest)

  • Publication readiness: Added repository field to package.json with canonical source URL; added author contact; added bug tracker and homepage links
  • Added clawhub.json with explicit installSpec, requiredEnvVars, and dependency declarations to prevent registry metadata mismatches
  • Bumped version to align all manifests (package.json, package-lock.json, openclaw.plugin.json, SKILL.md)
  • Regenerated package-lock.json to ensure lockfile integrity
  • Verified dependency surface (googleapis@^126.0.0) and confirmed no known vulnerabilities at publish time

v1.3.4

  • Internal refactor and documentation updates.

v1.3.3

  • Fixed manifest: requiredEnvVars now correctly includes YOUTUBE_API_KEY
  • Updated documentation to accurately describe in-memory watchlist storage (no persistence)
  • Clarified usage requirements and troubleshooting

v1.3.2

  • Refactored internal architecture: config.js isolates env access; store.js provides in-memory watchlist (no file I/O)
  • Resolved static analysis warnings about mixing env/file access with network
  • Plugin manifest updated to reflect proper requirements (still inaccurate in 1.3.2)

v1.3.1

  • Version bump only (no code changes)

v1.3.0

  • NEW tool: get_live_broadcast – detects if a channel is currently live streaming
  • Updated description to mention live status capability
  • Added version field to manifest

v1.2.0

  • Initial release with watchlist management, get_next_broadcast, and check_upcoming_broadcasts

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.9%
按下载量换算1,708

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills