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

youtube-search-api-skillyoutube 搜索 API 技能

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

13,817

周安装

570

GitHub Stars

1

下载量

4,514
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install youtube-search-api-skill

简介

通过 BrowserAct API 自动提取 YouTube 搜索结果数据。

  • 返回结构化信息,用于竞品监控或关键词研究。
  • 代理应主动调用以提升信息获取效率。youtube-search-api-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需配置有效 API 密钥,注意调用频次限制。
  • 数据准确性依赖网页结构稳定性,偶发变动可能影响解析。

SKILL.md

name
youtube-search-api-skill
description
This skill helps users automatically extract structured data from YouTube search results using the BrowserAct API. The Agent should proactively apply this skill when users express needs like searching for YouTube videos by keywords, finding the latest YouTube Shorts for a specific topic, gathering YouTube channel data for competitor analysis, monitoring trending YouTube playlists, extracting YouTube search results for market research, tracking view counts for specific YouTube keywords, compiling a list of YouTube videos on a subject, discovering new YouTube content creators in a niche, searching YouTube for tutorial videos automatically, and retrieving structured YouTube search data without opening video pages.
metadata
{"clawdbot":{"emoji":"🌐","requires":{"bins":["python"],"env":["BROWSERACT_API_KEY"]}}}

YouTube Search API Skill

📖 Introduction

This skill provides users with a one-stop YouTube search data extraction service through BrowserAct's YouTube Search API template. It can extract structured fields directly from the YouTube search results list. Simply provide the search keywords and limit conditions to get clean, usable video, shorts, channel, or playlist data.

✨ Features

  1. No hallucinations, ensuring stable and accurate data extraction: Pre-set workflows avoid AI generative hallucinations.
  2. No CAPTCHA issues: No need to handle reCAPTCHA or other verification challenges.
  3. No IP access limits or geo-fencing: No need to deal with regional IP restrictions.
  4. More agile execution speed: Compared to pure AI-driven browser automation solutions, task execution is faster.
  5. Extremely high cost-effectiveness: Significantly reduces data acquisition costs compared to AI solutions that consume a large number of tokens.

🔑 API Key Setup Flow

Before running, you must first check the BROWSERACT_API_KEY environment variable. If it is not set, do not take any other actions; you should request and wait for the user's collaboration to provide it. The Agent must inform the user at this time:

"Since you have not configured the BrowserAct API Key, please go to the BrowserAct Console first to get your Key."

🛠️ Input Parameters

When calling the script, the Agent should flexibly configure the following parameters based on the user's needs:

  1. KeyWords

- Type: string - Description: Search keywords used on YouTube. Can be any keyword or phrase. - Example: AI, automation, n8n, web scraping

  1. Video_type

- Type: string - Description: Which results tab to extract from. - Supported values: Videos, Shorts, Channels, Playlists - Default: Videos

  1. Date_limit

- Type: number - Description: Maximum number of items to extract from the search results list. - Example: 20, 50, 100 - Default: 100

🚀 Usage (Recommended)

The Agent should achieve "one-command results" by executing the following independent script:

# Call example
python -u ./scripts/youtube_search_api.py "KeyWords" "Video_type" Date_limit

⏳ Execution Status Monitoring

Because this task involves automated browser operations, it may take a long time (several minutes). The script will continuously output status logs with timestamps (e.g., [14:30:05] Task Status: running) while running. Notice to Agent:

  • While waiting for the script to return results, please keep paying attention to the terminal output.
  • As long as the terminal is still outputting new status logs, it means the task is running normally. Please do not mistakenly judge it as a deadlock or unresponsiveness.
  • Only if the status remains unchanged for a long time or the script stops outputting and no result is returned, can you consider triggering the retry mechanism.

📊 Data Output

After successful execution, the script will parse and print the result directly from the API response. The extracted data includes:

  • title: Title shown in search results
  • description: Short description snippet (when available)
  • view_count: View count displayed in results
  • published_at: Publish time displayed in results
  • url: Result item URL

⚠️ Error Handling & Retry Mechanism

During the execution of the script, if an error occurs (such as network fluctuation or task failure), the Agent should follow this logic:

  1. Check the output content:

- If the output contains "Invalid authorization", it means the API Key is invalid or expired. At this time, do not retry, and you should guide the user to recheck and provide the correct API Key. - If the output does not contain "Invalid authorization" but the task execution fails (for example, the output starts with Error: or the returned result is empty), the Agent should automatically try to execute the script again.

  1. Retry limit:

- Automatic retry is limited to only once. If the second attempt still fails, stop retrying and report the specific error message to the user.

🌟 Typical Use Cases

  1. Keyword-first discovery: Build topic pools and content datasets directly from search intent.
  2. Competitor scanning: Search for competitor brand names and extract top related videos.
  3. Content monitoring: Regularly extract search results for specific industry keywords to see what's trending.
  4. Channel research: Search for channels within a specific niche and gather their URLs.
  5. Tutorial aggregation: Find and extract educational videos for specific software or tools.
  6. Shorts tracking: Monitor YouTube Shorts for trending hashtags or topics.
  7. Playlist extraction: Find curated playlists for specific subjects.
  8. Market research: Build structured datasets of search results for market analysis.
  9. Creator outreach: Find emerging creators in a particular field for collaboration.
  10. View count analysis: Compare view counts of the top videos for various keywords.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.41%
按下载量换算4,081

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills