Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

youtube-researchYouTube 研究

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

2,301

周安装

94

GitHub Stars

81

下载量

744
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:youtube-research(YouTube 研究)
来源仓库:https://github.com/bradautomates/head-of-content
仓库路径:skills/youtube-research
安装命令:
npx skills add https://github.com/bradautomates/head-of-content --skill youtube-research
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bradautomates/head-of-content --skill youtube-research

简介

YouTube Research 分析高表现 YouTube 视频并生成 actionable 报告。

  • 适用于内容创作者优化视频策略或竞品 benchmarking 场景。
  • 使用 Tubelab API 获取频道视频数据,Gemini 分析 top 内容。
  • 需配置 TUBELAB_API_KEY 和 GEMINI_API_KEY 环境变量。
  • 输出包含 hooks、结构分析和改进建议的详细 JSON 报告。

SKILL.md

YouTube Research

Research high-performing YouTube outlier videos, analyze top content with AI, and generate actionable reports.

Prerequisites

  • TUBELAB_API_KEY environment variable. Get key from https://tubelab.net/settings/api
  • GEMINI_API_KEY environment variable (for video analysis)
  • google-genai and requests Python packages

Workflow

Step 1: Create Run Folder

mkdir -p youtube-research/$(date +%Y-%m-%d_%H%M%S)

Step 2: Get Channel ID

Read .claude/context/youtube-channel.md to get the channel ID.

Step 3: Fetch Channel Videos

python scripts/get_channel_videos.py CHANNEL_ID --format summary

This returns JSON with the channel's video titles and view counts.

Step 4: Analyze Channel

Analyze the channel data to extract:

  • keywords: 4 search terms for the channel's direct niche
  • adjacent-keywords: 4 search terms for topics the same audience watches
  • audience: 2-3 profiles with objections, transformations, stakes
  • formulas: Reusable title templates

See references/channel-analysis-schema.md for the full schema and example output.

Step 5: Search for Outliers

Run the outlier search with both keyword sets:

python .claude/skills/youtube-research/scripts/find_outliers.py \
  --keywords "keyword1" "keyword2" "keyword3" "keyword4" \
  --adjacent-keywords "adjacent1" "adjacent2" "adjacent3" "adjacent4" \
  --output-dir youtube-research/{run-folder} \
  --top 5

This runs two searches:

  • Direct niche: keywords with 5K+ views threshold
  • Adjacent audience: adjacent-keywords with 10K+ views threshold

Output files:

  • outliers.json - All outliers normalized for video analysis
  • report.md - Basic markdown report
  • thumbnails/*.jpg - Video thumbnails
  • transcripts/*.txt - Video transcripts

Step 6: Filter Relevant Videos for Analysis

Read outliers.json and the user's niche from .claude/context/youtube-channel.md.

CRITICAL: Select MAX 3 videos that are most relevant to the user's niche. Filter by:

  1. Title relevance: Title contains keywords related to user's niche/topics
  2. Transcript relevance: If transcript exists, check it mentions relevant topics
  3. Direct niche priority: Prefer videos from direct keyword search over adjacent

Skip videos that are clearly outside the user's content style (e.g., entertainment/vlogs when user does tutorials).

Write the filtered videos to {RUN_FOLDER}/filtered-outliers.json:

{
  "outliers": [/* max 3 relevant videos */],
  "filter_reason": "Selected based on relevance to [user's niche]"
}

Step 7: Analyze Top Videos with AI

python3 .claude/skills/video-content-analyzer/scripts/analyze_videos.py \
  --input {RUN_FOLDER}/filtered-outliers.json \
  --output {RUN_FOLDER}/video-analysis.json \
  --platform youtube \
  --max-videos 3

Extracts from each video:

  • Hook technique and replicable formula
  • Content structure and sections
  • Retention techniques
  • CTA strategy

See the video-content-analyzer skill for full output schema and hook/format types.

Step 8: Generate Final Report

Read {RUN_FOLDER}/outliers.json and {RUN_FOLDER}/video-analysis.json, then generate {RUN_FOLDER}/report.md.

Report Structure:

# YouTube Research Report

Generated: {date}

## Top Performing Hooks

Ranked by engagement. Use these formulas for your content.

### Hook 1: {technique} - {channelTitle}
- **Video**: "{title}"
- **Opening**: "{opening_line}"
- **Why it works**: {attention_grab}
- **Replicable Formula**: {replicable_formula}
- **Views**: {viewCount} | **zScore**: {zScore}
- [Watch Video]({url})

[Repeat for each analyzed video]

## Content Structure Patterns

| Video | Format | Pacing | Key Retention Techniques |
|-------|--------|--------|--------------------------|
| {title} | {format} | {pacing} | {techniques} |

## CTA Strategies

| Video | CTA Type | CTA Text | Placement |
|-------|----------|----------|-----------|
| {title} | {type} | "{cta_text}" | {placement} |

## All Outliers

### Direct Niche
| Rank | Channel | Title | Views | zScore |
|------|---------|-------|-------|--------|
[List direct niche outliers]

### Adjacent Audience
| Rank | Channel | Title | Views | zScore |
|------|---------|-------|-------|--------|
[List adjacent outliers]

## Actionable Takeaways

[Synthesize patterns into 4-6 specific recommendations based on video analysis]

Focus on actionable insights. The "Top Performing Hooks" section with replicable formulas should be prominent.

Quick Reference

Full pipeline:

RUN_FOLDER="youtube-research/$(date +%Y-%m-%d_%H%M%S)" && mkdir -p "$RUN_FOLDER" && \
python .claude/skills/youtube-research/scripts/find_outliers.py \
  --keywords "k1" "k2" "k3" "k4" \
  --adjacent-keywords "a1" "a2" "a3" "a4" \
  --output-dir "$RUN_FOLDER" --top 5

Then filter outliers for niche relevance (max 3), run video analysis, and generate the report.

Script Reference

get_channel_videos.py

python .claude/skills/youtube-research/scripts/get_channel_videos.py CHANNEL_ID [--format json|summary]
ArgDescription
CHANNEL_IDYouTube channel ID (24 chars)
--formatjson (full data) or summary (for analysis)

find_outliers.py

python .claude/skills/youtube-research/scripts/find_outliers.py --keywords K1 K2 K3 K4 --adjacent-keywords A1 A2 A3 A4 --output-dir DIR [options]
ArgDescription
--keywordsDirect niche keywords (4 recommended)
--adjacent-keywordsAdjacent topic keywords (4 recommended)
--output-dirOutput directory (required)
--topVideos per category (default: 5)
--daysDays back to search (default: 30)
--jsonAlso save raw JSON data

Output: outliers.json, report.md, thumbnails/, transcripts/

Scoring Algorithm

Videos ranked by: zScore × recency_boost

  • zScore: How much video outperforms its channel average
  • recency_boost: 1.0 for today, decays 5%/day (min 0.3×)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.53%
按下载量换算272

Claude

26.98%
按下载量换算201

Cursor

17.55%
按下载量换算131

Gemini CLI

9.02%
按下载量换算67

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills