YouTube Audience Insights

Read your YouTube audience from the comments: pull commenters and top comments on any video, surface recurring questions and themes (content ideas), repeat commenters (superfans), sentiment, and which comments to reply to or pin.

How to use it

  1. Hit Copy the whole skill.
  2. Claude: ⋯ → Download .md, then Customize → Skills → Add → Upload skill.
    ChatGPT: make a Project and paste it into Instructions.
    Neither? Paste it at the top of a new chat — it works for that chat.
  3. Describe your job in plain words. The AI follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit sergebulaev/youtube-skills/.codex-marketplace/youtube-skills/skills/yt-audience-insights#main ~/.claude/skills/yt-audience-insights

For one project only, change the path to .claude/skills/yt-audience-insights.

Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Show the full text75 lines
yt-audience-insights/SKILL.md75 lines4.9 KBpushed 13d agoRawView on GitHub

YouTube Audience Insights

Turn a video's comment section into a read on your audience: who is showing up, what they keep asking, who your repeat fans are, which comments deserve a reply or a pin, and what is working in your niche right now.

One honest limit up front: YouTube keeps the list of who liked a video private (only the aggregate count is public). So the engagement signal here is commenters, not likers. On YouTube the comment section is the richer signal anyway: it carries the questions, the objections, and the content ideas.

When to use

  • "Who commented on my video / analyze my comments"
  • "What are people asking me / what should my next video be"
  • "Who are my repeat viewers"
  • "What is trending in [niche] on YouTube right now"

Not for drafting a community post (use yt-community-post-writer) or writing a title (use yt-title-optimizer).

Setup (free, optional)

The read layer uses the official YouTube Data API v3, which is free: enable it at https://console.cloud.google.com/apis/library/youtube.googleapis.com, create an API key, and set YOUTUBE_API_KEY. Free quota is 10,000 units/day (a comments or stats call is 1 unit) which covers ~100,000 comments a day.

No key yet? Paste the comments (or a CSV export) and the skill runs the same analysis on what you give it.

Input

  • A video URL (or your channel, for a recent-videos sweep)
  • Optional: the goal (content ideas / community management / competitor scan)

Output

  1. Audience snapshot - commenter count, top comments by likes, reply-worthy questions
  2. Themes - the recurring questions and topics, ranked (each is a next-video candidate)
  3. Superfans - repeat commenters across your recent videos, worth a reply by name
  4. Action list - which comments to reply to, which to pin, which to turn into a video
  5. Niche pulse (optional) - what is trending in your category right now

Steps

  1. Load the comments. Call lib.YouTubeClient().fetch_video_comments(video_url, max_results=100, order="relevance"). Falls back to pasted comments if no key.
  2. Rank the top comments. Sort by like_count and reply_count. The high-like comments are what the room agrees with; the high-reply ones are where the conversation is.
  3. Extract themes. Cluster the comments into recurring questions and topics. Each distinct question that shows up 3+ times is a content idea, name it as a potential title.
  4. Find superfans. Pull comments across the channel's recent videos (fetch_channel_stats for the channel, then per-video comments) and flag authors who appear on multiple videos. These get a reply by name.
  5. Read sentiment. Group into positive / question / critical. Critical-but-specific comments are the most useful; surface them, do not bury them.
  6. Build the action list. For each: reply now (a real question with traction), pin (best social proof or a correction), or bank as a video idea. Route reply drafts through the relevant writer.
  7. Optional niche pulse. fetch_trending(region_code, category_id) for what is currently most-popular in the category, as a format and topic scan.
  8. Deliver the report in the Output shape above, with the raw top comments attached.

What the read layer exposes

Method Returns
fetch_video_comments(video, max_results, order) top-level comments: author, channel URL, text, likes, reply count, time
fetch_video_stats(video) title, channel, views, likes, comments
fetch_channel_stats(channel) subscribers, video count, total views (self or competitor)
fetch_trending(region_code, category_id) most-popular videos in a niche (1 quota unit, no search cost)

Hard rules

Global voice rules: see root SKILL.md Voice rules. Additional skill-specific rules:

  • Be honest that this reads commenters, not likers (likers are private on YouTube). Do not imply a full engager list.
  • Never invent a comment, a count, or a theme. If the data is thin, say so.
  • A theme is only a content idea if it actually recurs; do not promote a one-off comment to a trend.
  • Respect the free quota: prefer mostPopular over search (search costs 100 units); batch comment pulls.

Related skills

  • yt-community-post-writer - answer a recurring question as a community post
  • yt-hook-scripter - turn a top question into a video hook
  • yt-content-planner - feed the extracted themes into a content plan
  • yt-channel-optimizer - fix the channel the new viewers will land on
1---
2name: yt-audience-insights
3description: "Read your YouTube audience from the comments: pull commenters and top comments on any video, surface recurring questions and themes (content ideas), repeat commenters (superfans), sentiment, and which comments to reply to or pin. Also channel stats and niche trending, via the free official YouTube Data API. Triggers on \"who commented on my video\", \"analyze my comments\", \"audience insights\", \"trending on YouTube\". Not for writing a community post (use yt-community-post-writer)."
4---
5 
6# YouTube Audience Insights
7 
8Turn a video's comment section into a read on your audience: who is showing up, what they keep asking, who your repeat fans are, which comments deserve a reply or a pin, and what is working in your niche right now.
9 
10One honest limit up front: YouTube keeps the list of who **liked** a video private (only the aggregate count is public). So the engagement signal here is **commenters**, not likers. On YouTube the comment section is the richer signal anyway: it carries the questions, the objections, and the content ideas.
11 
12## When to use
13 
14- "Who commented on my video / analyze my comments"
15- "What are people asking me / what should my next video be"
16- "Who are my repeat viewers"
17- "What is trending in [niche] on YouTube right now"
18 
19Not for drafting a community post (use `yt-community-post-writer`) or writing a title (use `yt-title-optimizer`).
20 
21## Setup (free, optional)
22 
23The read layer uses the official **YouTube Data API v3**, which is free: enable it at `https://console.cloud.google.com/apis/library/youtube.googleapis.com`, create an API key, and set `YOUTUBE_API_KEY`. Free quota is 10,000 units/day (a comments or stats call is 1 unit) which covers ~100,000 comments a day.
24 
25No key yet? Paste the comments (or a CSV export) and the skill runs the same analysis on what you give it.
26 
27## Input
28 
29- A video URL (or your channel, for a recent-videos sweep)
30- Optional: the goal (content ideas / community management / competitor scan)
31 
32## Output
33 
341. **Audience snapshot** - commenter count, top comments by likes, reply-worthy questions
352. **Themes** - the recurring questions and topics, ranked (each is a next-video candidate)
363. **Superfans** - repeat commenters across your recent videos, worth a reply by name
374. **Action list** - which comments to reply to, which to pin, which to turn into a video
385. **Niche pulse** (optional) - what is trending in your category right now
39 
40## Steps
41 
421. **Load the comments.** Call `lib.YouTubeClient().fetch_video_comments(video_url, max_results=100, order="relevance")`. Falls back to pasted comments if no key.
432. **Rank the top comments.** Sort by like_count and reply_count. The high-like comments are what the room agrees with; the high-reply ones are where the conversation is.
443. **Extract themes.** Cluster the comments into recurring questions and topics. Each distinct question that shows up 3+ times is a content idea, name it as a potential title.
454. **Find superfans.** Pull comments across the channel's recent videos (`fetch_channel_stats` for the channel, then per-video comments) and flag authors who appear on multiple videos. These get a reply by name.
465. **Read sentiment.** Group into positive / question / critical. Critical-but-specific comments are the most useful; surface them, do not bury them.
476. **Build the action list.** For each: reply now (a real question with traction), pin (best social proof or a correction), or bank as a video idea. Route reply drafts through the relevant writer.
487. **Optional niche pulse.** `fetch_trending(region_code, category_id)` for what is currently most-popular in the category, as a format and topic scan.
498. **Deliver the report** in the Output shape above, with the raw top comments attached.
50 
51## What the read layer exposes
52 
53| Method | Returns |
54|---|---|
55| `fetch_video_comments(video, max_results, order)` | top-level comments: author, channel URL, text, likes, reply count, time |
56| `fetch_video_stats(video)` | title, channel, views, likes, comments |
57| `fetch_channel_stats(channel)` | subscribers, video count, total views (self or competitor) |
58| `fetch_trending(region_code, category_id)` | most-popular videos in a niche (1 quota unit, no search cost) |
59 
60## Hard rules
61 
62Global voice rules: see root `SKILL.md` Voice rules. Additional skill-specific rules:
63 
64- Be honest that this reads **commenters, not likers** (likers are private on YouTube). Do not imply a full engager list.
65- Never invent a comment, a count, or a theme. If the data is thin, say so.
66- A theme is only a content idea if it actually recurs; do not promote a one-off comment to a trend.
67- Respect the free quota: prefer `mostPopular` over `search` (search costs 100 units); batch comment pulls.
68 
69## Related skills
70 
71- `yt-community-post-writer` - answer a recurring question as a community post
72- `yt-hook-scripter` - turn a top question into a video hook
73- `yt-content-planner` - feed the extracted themes into a content plan
74- `yt-channel-optimizer` - fix the channel the new viewers will land on
75 

Discussion

Alternatives

Also in Community & events