@intentsolutionsio/youtube-strategy 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,151 @@
1
+ ---
2
+ name: yt-research
3
+ description: |
4
+ Research competitor YouTube channels, niches, and trending topics for your content strategy.
5
+ Use this skill whenever the user says "research channels", "analyze competitors", "find trending topics",
6
+ "niche analysis", "competitive research", "what are other creators doing", "scrape YouTube channels",
7
+ or wants to understand the competitive landscape for a specific tool or topic area. Use when working with yt research. Trigger with 'yt', 'research'.
8
+ allowed-tools: WebSearch, Read, Write, Task
9
+ version: 1.0.0
10
+ author: Claude Code Plugins <plugins@claudecodeplugins.io>
11
+ license: MIT
12
+ compatible-with: claude-code, codex, openclaw
13
+ tags: [productivity, yt-research]
14
+ ---
15
+ # YouTube Research
16
+
17
+ You are conducting competitive research for a YouTube channel. Your goal is to analyze competitor channels, identify content gaps, discover trending topics, and surface opportunities aligned with the creator's strategy.
18
+
19
+ ## Before You Start
20
+
21
+ You need from the user:
22
+
23
+ 1. **Research focus** - What niche, tool, or topic area to research (e.g., "AI tools for professionals", "MCP integrations", "productivity software")
24
+ 2. **Competitor channels** (optional) - Specific YouTube channel URLs to analyze
25
+ 3. **Specific angle** (optional) - Is there a particular feature, update, or trend they want to investigate?
26
+
27
+ If the user provided context already, confirm your understanding and proceed.
28
+
29
+ ## The Research Process
30
+
31
+ ### Step 1: Scope the Research
32
+
33
+ Define the research boundaries:
34
+ - Which channels to scrape (user-provided + discovered competitors)
35
+ - Which topics/keywords to search for
36
+ - Time horizon (recent 30 days, 90 days, or all-time)
37
+
38
+ Tell the user the plan: "I'll analyze [N] channels and search for [keywords]. This will involve web research and data collection."
39
+
40
+ ### Step 2: Collect Channel Data
41
+
42
+ Use web research to collect:
43
+ - Channel metadata (subscribers, total videos, posting frequency)
44
+ - Recent videos (last 30-50 per channel): titles, views, likes, comments, publish dates
45
+ - Video tags and categories where available
46
+
47
+ If Apify MCP is available, spawn `yt-scraper` sub-agent for bulk data collection.
48
+
49
+ ### Step 3: Analyze Channels
50
+
51
+ For each channel, analyze:
52
+ - Engagement pattern analysis (what gets views vs what doesn't)
53
+ - Content type distribution (tutorials, reviews, updates, opinions)
54
+ - Title pattern analysis (what structures and words correlate with views)
55
+ - Outlier video identification (3x+ above channel average)
56
+ - Topic coverage map (what's covered, what's missing)
57
+
58
+ If analyzing 4+ channels, spawn `channel-analyzer` sub-agents (3 channels per agent) for parallel processing.
59
+
60
+ ### Step 4: Identify Opportunities
61
+
62
+ Using the analysis results, identify:
63
+
64
+ **Content Gaps:**
65
+ - Topics the audience searches for but competitors cover poorly
66
+ - Topics that are developer-focused everywhere but could be made accessible
67
+ - Recent tool updates/features with no quality coverage yet
68
+
69
+ **Trending Signals:**
70
+ - Tools/features getting increasing search interest
71
+ - Topics with recent outlier videos (sudden view spikes)
72
+ - Community discussions (Reddit, forums) indicating unmet demand
73
+
74
+ **Strategic Fit:**
75
+ - Which opportunities align with the creator's content pillars?
76
+ - Which serve the target audience?
77
+ - Which have the best effort-to-impact ratio?
78
+
79
+ ### Step 5: Export Results
80
+
81
+ Generate two outputs:
82
+
83
+ 1. **`niche-analysis.json`** - Structured data with per-channel metrics, outlier videos, content gaps, and opportunity scores
84
+ 2. **`niche-report.md`** - Human-readable research report with:
85
+ - Executive summary (3-5 key findings)
86
+ - Per-channel analysis highlights
87
+ - Top 10 content opportunities ranked by potential
88
+ - Recommended next steps
89
+
90
+ Present the report to the user:
91
+
92
+ "Here's the research report. Key findings:"
93
+ - [Top 3 findings]
94
+
95
+ "What would you like to do?"
96
+ - Move to ideation with these insights
97
+ - Research additional channels
98
+ - Dig deeper into a specific finding
99
+ - Export and save for later
100
+
101
+ ## Key Principles
102
+
103
+ - **Strategy-first** - Every finding must connect back to the creator's goals and audience. Don't surface opportunities that don't serve the target audience.
104
+ - **Data over opinion** - Ground insights in actual view counts, engagement rates, and search data. "This seems popular" is useless. "This video got 3.2x the channel average with 45K views in 2 weeks" is useful.
105
+ - **Actionable outputs** - Every content gap should translate directly into a potential video idea. Don't just say "competitors don't cover X" - say "competitors don't cover X, and here's evidence that people are searching for it."
106
+ - **Respect rate limits** - When using APIs, handle timeouts gracefully and never hammer endpoints.
107
+ - **Save everything to disk** - Persist all collected data and analysis results as JSON files immediately. Never hold large datasets only in conversation context.
108
+
109
+ ## Overview
110
+
111
+ Research competitor YouTube channels, niches, and trending topics for your content strategy.
112
+
113
+ ## Prerequisites
114
+
115
+ - Access to the content environment or API
116
+ - Required CLI tools installed and authenticated
117
+ - Familiarity with content concepts and terminology
118
+
119
+ ## Instructions
120
+
121
+ 1. Assess the current state of the content configuration
122
+ 2. Identify the specific requirements and constraints
123
+ 3. Apply the recommended patterns from this skill
124
+ 4. Validate the changes against expected behavior
125
+ 5. Document the configuration for team reference
126
+
127
+ ## Output
128
+
129
+ - Configuration files or code changes applied to the project
130
+ - Validation report confirming correct implementation
131
+ - Summary of changes made and their rationale
132
+
133
+ ## Error Handling
134
+
135
+ | Error | Cause | Resolution |
136
+ |-------|-------|------------|
137
+ | Authentication failure | Invalid or expired credentials | Refresh tokens or re-authenticate with content |
138
+ | Configuration conflict | Incompatible settings detected | Review and resolve conflicting parameters |
139
+ | Resource not found | Referenced resource missing | Verify resource exists and permissions are correct |
140
+
141
+ ## Examples
142
+
143
+ **Basic usage**: Apply yt research to a standard project setup with default configuration options.
144
+
145
+ **Advanced scenario**: Customize yt research for production environments with multiple constraints and team-specific requirements.
146
+
147
+ ## Resources
148
+
149
+ - Official content documentation
150
+ - Community best practices and patterns
151
+ - Related skills in this plugin pack