vibesuite 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.
- package/.agent/skills/agent-recovery/SKILL.md +147 -0
- package/.agent/skills/code-review/SKILL.md +81 -0
- package/.agent/skills/component-analysis/SKILL.md +103 -0
- package/.agent/skills/git-worktree/SKILL.md +78 -0
- package/.agent/skills/github-ops/SKILL.md +220 -0
- package/.agent/skills/github-ops/scripts/publish_issues.ps1 +443 -0
- package/.agent/skills/github-ops/scripts/smart-ops.ps1 +128 -0
- package/.agent/skills/github-ops/scripts/smart-ops.sh +130 -0
- package/.agent/skills/google-trends/SKILL.md +157 -0
- package/.agent/skills/google-trends/scripts/node_modules/.modules.yaml +21 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/LICENSE +22 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/Readme.md +1157 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/esm.mjs +16 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/index.js +24 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/lib/argument.js +149 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/lib/command.js +2509 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/lib/error.js +39 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/lib/help.js +520 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/lib/option.js +330 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/lib/suggestSimilar.js +101 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/package-support.json +16 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/package.json +84 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/typings/esm.d.mts +3 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/typings/index.d.ts +969 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/CHANGES.md +132 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/LICENSE +21 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/README.md +561 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/lib/google-trends-api.min.js +2 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/package.json +68 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/src/api.js +18 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/src/index.js +27 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/src/request.js +69 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/src/utilities.js +395 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/lock.yaml +31 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm-workspace-state-v1.json +25 -0
- package/.agent/skills/google-trends/scripts/package.json +17 -0
- package/.agent/skills/google-trends/scripts/pnpm-lock.yaml +31 -0
- package/.agent/skills/google-trends/scripts/search.js +168 -0
- package/.agent/skills/high-fidelity-extraction/SKILL.md +59 -0
- package/.agent/skills/prime-agent/SKILL.md +97 -0
- package/.agent/skills/security-audit/SKILL.md +81 -0
- package/.agent/skills/seo-ready/SKILL.md +133 -0
- package/.agent/skills/spawn-task/SKILL.md +130 -0
- package/.agent/skills/sync-docs/SKILL.md +88 -0
- package/.agent/skills/vercel-ai-sdk/SKILL.md +34083 -0
- package/.agent/skills/youtube-pipeline/SKILL.md +194 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-phase1-strategy.md +224 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-phase2-packaging.md +148 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-phase3-scripting.md +197 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-phase3.5-shorts.md +271 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-phase4-production.md +193 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-phase5-repurposing.md +159 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-pipeline.md +161 -0
- package/.agent/skills/youtube-pipeline/scripts/parse_yt_studio.ps1 +150 -0
- package/.agent/workflows/LEGACY/ANTIGRAVITY_TOOLBOX.md +200 -0
- package/.agent/workflows/LEGACY/analyze_component.md +141 -0
- package/.agent/workflows/LEGACY/build_vibecode_project.md +154 -0
- package/.agent/workflows/LEGACY/deep_code_audit.md +79 -0
- package/.agent/workflows/LEGACY/gemini-orchestrate.md +63 -0
- package/.agent/workflows/LEGACY/git_worktree.md +71 -0
- package/.agent/workflows/LEGACY/init_smart_ops.md +101 -0
- package/.agent/workflows/LEGACY/multi_agent_strategy.md +62 -0
- package/.agent/workflows/LEGACY/orchestrate.md +321 -0
- package/.agent/workflows/LEGACY/seo_ready.md +249 -0
- package/.agent/workflows/LEGACY/vibe-orchestrator.md +305 -0
- package/.agent/workflows/LEGACY/youtube-phase1-strategy.md +224 -0
- package/.agent/workflows/LEGACY/youtube-phase2-packaging.md +148 -0
- package/.agent/workflows/LEGACY/youtube-phase3-scripting.md +197 -0
- package/.agent/workflows/LEGACY/youtube-phase3.5-shorts.md +271 -0
- package/.agent/workflows/LEGACY/youtube-phase4-production.md +193 -0
- package/.agent/workflows/LEGACY/youtube-phase5-repurposing.md +159 -0
- package/.agent/workflows/LEGACY/youtube-pipeline.md +161 -0
- package/.agent/workflows/README.md +349 -0
- package/.agent/workflows/Vercel Ai SDK.md +34083 -0
- package/.agent/workflows/agent_reset.md +138 -0
- package/.agent/workflows/build_vibecode_project_v2.md +158 -0
- package/.agent/workflows/escalate.md +112 -0
- package/.agent/workflows/init_vibecode_design.md +98 -0
- package/.agent/workflows/init_vibecode_genesis.md +137 -0
- package/.agent/workflows/migrate.md +135 -0
- package/.agent/workflows/prime_agent.md +211 -0
- package/.agent/workflows/reverse_genesis.md +132 -0
- package/.agent/workflows/review_code.md +133 -0
- package/.agent/workflows/spawn-jstar-code-review.md +121 -0
- package/.agent/workflows/spawn_task.md +187 -0
- package/.agent/workflows/sync_docs.md +90 -0
- package/Legacy (Manual Method)/0 VibeCode User Manual.md +173 -0
- package/Legacy (Manual Method)/1 Project Genesis Protocol The VibeCode Workflow.md +89 -0
- package/Legacy (Manual Method)/2/342/234/250 ULTIMATE ORCHESTRATION PROMPT/342/234/250.md" +114 -0
- package/Legacy (Manual Method)/3 Design System Genesis Protocol.md +75 -0
- package/Legacy (Manual Method)/3.1.1 my_design_system_rules.md +177 -0
- package/Legacy (Manual Method)/3.1.2 Material You M3 Genesis Protocol.md +73 -0
- package/Legacy (Manual Method)/4 The Ultimate GitHub Issue Meta-Prompt Template.md +54 -0
- package/Legacy (Manual Method)/5 The Escalation & Handoff Protocol.md +97 -0
- package/Legacy (Manual Method)/8 The Seamless Migration Meta-Prompt (Your Reusable Tool).md +38 -0
- package/Legacy (Manual Method)/9 The Reverse Genesis Protocol.md +75 -0
- package/README.md +209 -0
- package/VibeCode-Agents (e.g Kilo-code)/README.md +142 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-analyzer.yaml +254 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-architect.yaml +397 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-auditor.yaml +325 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-builder.yaml +472 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-designer.yaml +305 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-documentor.yaml +222 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-escalator.yaml +255 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-isolator.yaml +332 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-onboarder.yaml +335 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-orchestrator.yaml +365 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-orchestrator_legacy.yaml +284 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-orchestrator_v1.yaml +336 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-primer.yaml +213 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-reviewer.yaml +233 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-spawner.yaml +259 -0
- package/bin/vibesuite.js +2 -0
- package/package.json +43 -0
- package/src/cli.js +159 -0
- package/src/utils.js +76 -0
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
๏ปฟ---
|
|
2
|
+
name: youtube-pipeline
|
|
3
|
+
description: Complete YouTube video production pipeline from ideation to distribution. Covers Strategy (Phase 1), Packaging (Phase 2), Scripting (Phase 3), Shorts (Phase 3.5), Production (Phase 4), and Repurposing (Phase 5).
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# YouTube Pipeline Skill
|
|
7
|
+
|
|
8
|
+
This skill provides access to the complete YouTube video production pipeline. When activated, read the workflow files in the user's vault for the full, up-to-date instructions.
|
|
9
|
+
|
|
10
|
+
## Quick Reference
|
|
11
|
+
|
|
12
|
+
| Phase | Workflow | Purpose |
|
|
13
|
+
|-------|----------|---------|
|
|
14
|
+
| 1 | `/youtube-phase1-strategy` | Find proven topic via 3-source validation (YT Studio + VidIQ + Google Trends) |
|
|
15
|
+
| 2 | `/youtube-phase2-packaging` | Engineer title & thumbnail |
|
|
16
|
+
| 3 | `/youtube-phase3-scripting` | Write retention-optimized script |
|
|
17
|
+
| 3.5 | `/youtube-phase3.5-shorts` | Create 6 Shorts (3 Topic + 3 Extract) |
|
|
18
|
+
| 4 | `/youtube-phase4-production` | Film, edit, polish |
|
|
19
|
+
| 5 | `/youtube-phase5-repurposing` | Distribute to all platforms (YT, TikTok, IG, LinkedIn) |
|
|
20
|
+
| Master | `/youtube-pipeline` | Orchestrate all 6 phases |
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Source Files (Always Read These First)
|
|
25
|
+
|
|
26
|
+
The workflow docs are bundled in this skill's `resources/` folder for quick access:
|
|
27
|
+
|
|
28
|
+
**Workflow Files (Local):**
|
|
29
|
+
```
|
|
30
|
+
~/.gemini/antigravity/skills/youtube-pipeline/resources/youtube-pipeline.md
|
|
31
|
+
~/.gemini/antigravity/skills/youtube-pipeline/resources/youtube-phase1-strategy.md
|
|
32
|
+
~/.gemini/antigravity/skills/youtube-pipeline/resources/youtube-phase2-packaging.md
|
|
33
|
+
~/.gemini/antigravity/skills/youtube-pipeline/resources/youtube-phase3-scripting.md
|
|
34
|
+
~/.gemini/antigravity/skills/youtube-pipeline/resources/youtube-phase3.5-shorts.md
|
|
35
|
+
~/.gemini/antigravity/skills/youtube-pipeline/resources/youtube-phase4-production.md
|
|
36
|
+
~/.gemini/antigravity/skills/youtube-pipeline/resources/youtube-phase5-repurposing.md
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
**Source of Truth (User's Vault):**
|
|
40
|
+
If you need to sync or check for updates, the authoritative files are:
|
|
41
|
+
```
|
|
42
|
+
c:\CreativeOS\Creator_Command_Hub_Obsidian\๐ YouTube Brain\.agent\workflows\
|
|
43
|
+
c:\CreativeOS\Creator_Command_Hub_Obsidian\๐ YouTube Brain\๐ Processed_Notes\Workflow\
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
**Prompts (For External AI Use):**
|
|
47
|
+
```
|
|
48
|
+
c:\CreativeOS\Creator_Command_Hub_Obsidian\๐ YouTube Brain\๐ 01-Prompt\Transcription Extraction Prompt v2.md
|
|
49
|
+
c:\CreativeOS\Creator_Command_Hub_Obsidian\๐ YouTube Brain\๐ 01-Prompt\Video QA Prompt.md
|
|
50
|
+
c:\CreativeOS\Creator_Command_Hub_Obsidian\๐ YouTube Brain\๐ 01-Prompt\Title Thumbnail Picker Prompt.md
|
|
51
|
+
c:\CreativeOS\Creator_Command_Hub_Obsidian\๐ YouTube Brain\๐ 01-Prompt\Shorts Bridge Protocol.md
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
**Automation Scripts (Phase 1):**
|
|
55
|
+
```
|
|
56
|
+
~/.gemini/antigravity/skills/youtube-pipeline/scripts/parse_yt_studio.ps1 # Parse YT Studio Inspiration HTML
|
|
57
|
+
~/.gemini/antigravity/skills/google-trends/scripts/search.js # Google Trends CLI (separate skill)
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## Phase 1 Automation Tools
|
|
63
|
+
|
|
64
|
+
### YouTube Studio HTML Parser
|
|
65
|
+
Extracts topics and volume indicators from YouTube Studio's Inspiration tab.
|
|
66
|
+
|
|
67
|
+
**User Workflow:**
|
|
68
|
+
1. Go to YouTube Studio โ Inspiration โ Search topic
|
|
69
|
+
2. Right-click results โ Inspect โ Find `<yta-section id="top-section">`
|
|
70
|
+
3. Right-click โ Copy โ Copy outerHTML
|
|
71
|
+
4. Paste into `.html` file
|
|
72
|
+
|
|
73
|
+
**Agent Command:**
|
|
74
|
+
```powershell
|
|
75
|
+
powershell -ExecutionPolicy Bypass -File "$env:USERPROFILE\.gemini\antigravity\skills\youtube-pipeline\scripts\parse_yt_studio.ps1" -InputFile "topic.html" -OutputFile "parsed.md"
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
### Google Trends CLI
|
|
79
|
+
Uses the separate `google-trends` skill for automated trend searching.
|
|
80
|
+
|
|
81
|
+
**Agent Command:**
|
|
82
|
+
```powershell
|
|
83
|
+
node "$env:USERPROFILE\.gemini\antigravity\skills\google-trends\scripts\search.js" -k "Claude Cowork" -p youtube -t "now 7-d"
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## How to Use This Skill
|
|
87
|
+
|
|
88
|
+
### Option 1: Full Pipeline
|
|
89
|
+
Invoke `/youtube-pipeline` and follow the prompts. The orchestrator will:
|
|
90
|
+
1. Ask where you're starting
|
|
91
|
+
2. Chain through all 6 phases
|
|
92
|
+
3. Track state across phases
|
|
93
|
+
|
|
94
|
+
### Option 2: Single Phase
|
|
95
|
+
Jump directly to any phase:
|
|
96
|
+
- `/youtube-phase1-strategy` โ Just need a topic (uses 3-source validation)
|
|
97
|
+
- `/youtube-phase2-packaging` โ Just need title/thumbnail
|
|
98
|
+
- `/youtube-phase3-scripting` โ Just need a script
|
|
99
|
+
- `/youtube-phase3.5-shorts` โ Create 6 Shorts from a video
|
|
100
|
+
- `/youtube-phase4-production` โ Just need production guidance
|
|
101
|
+
- `/youtube-phase5-repurposing` โ Distribute to all platforms
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## AI Persona: The Brutal Expert
|
|
106
|
+
|
|
107
|
+
When running this pipeline, the AI operates as:
|
|
108
|
+
|
|
109
|
+
- **Never yes-mans.** Weak ideas get called out.
|
|
110
|
+
- **Demands proof.** "This video is viral" โ "Show me the view:sub ratio."
|
|
111
|
+
- **Generates outputs.** AI generates titles, hooks, thumbnail concepts for user to pick from.
|
|
112
|
+
- **Teaches the why.** Every step includes the reasoning behind it.
|
|
113
|
+
- **Challenges weak work.** "That hook is mid. Try this instead..."
|
|
114
|
+
|
|
115
|
+
---
|
|
116
|
+
|
|
117
|
+
## Phase 1: 3-Source Research Validation
|
|
118
|
+
|
|
119
|
+
Find proven topics using three data sources:
|
|
120
|
+
|
|
121
|
+
| Source | What to Check | Signal |
|
|
122
|
+
|--------|---------------|--------|
|
|
123
|
+
| **YouTube Studio Trends** | Inspiration tab โ "What people are looking for" | High/Medium volume |
|
|
124
|
+
| **Competitor VidIQ** | Videos 4+ weeks old still getting views/hr | Evergreen topic |
|
|
125
|
+
| **Google Trends** | Explore โ YouTube Search โ Rising queries | Breakout (5000%+) |
|
|
126
|
+
|
|
127
|
+
**Perfect Storm:** When all 3 sources point to the same topic = proven opportunity.
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
131
|
+
## Phase 3.5: 6 Shorts System (Topic + Extract)
|
|
132
|
+
|
|
133
|
+
โ ๏ธ **Retention Protection:** Extract shorts hurt main video retention (viewers skip sections they've seen). Post extract shorts LAST.
|
|
134
|
+
|
|
135
|
+
| Category | Count | What It Is | When to Post |
|
|
136
|
+
|----------|-------|------------|--------------|
|
|
137
|
+
| **Topic Shorts** | 3 | NEW recordings on the topic | Week 1: Mon/Wed/Fri |
|
|
138
|
+
| **Extract Shorts** | 3 | Sandwich Method clips from main | Week 2: Mon/Wed/Fri |
|
|
139
|
+
|
|
140
|
+
**Topic Short Types:**
|
|
141
|
+
1. **Hot Take** โ Spicy opinion on the topic
|
|
142
|
+
2. **Quick Win** โ One actionable tip
|
|
143
|
+
3. **Story Hook** โ Personal story as teaser
|
|
144
|
+
|
|
145
|
+
**Sandwich Method (Extract Shorts):**
|
|
146
|
+
| Layer | Time | What It Is |
|
|
147
|
+
|-------|------|------------|
|
|
148
|
+
| **Top Bun** | 0:00-0:05 | Fresh hook (user records new VO) |
|
|
149
|
+
| **Meat** | 0:05-0:50 | Clip from main video |
|
|
150
|
+
| **Bottom Bun** | 0:50-1:00 | Fresh CTA (user records new VO) |
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## Phase 5: Repurposing & Distribution
|
|
155
|
+
|
|
156
|
+
| Platform | Content | Extra Work |
|
|
157
|
+
|----------|---------|------------|
|
|
158
|
+
| **YouTube** | Main + 6 Shorts | None |
|
|
159
|
+
| **TikTok** | Same 6 Shorts | None (repost) |
|
|
160
|
+
| **Instagram** | Same 6 Shorts (Reels) | None (repost) |
|
|
161
|
+
| **LinkedIn** | 6 Shorts + 3 Text Posts + Stories | Text posts need drafting |
|
|
162
|
+
|
|
163
|
+
**Result:** 1 filming session = 7 pieces of content = 2 weeks of distribution across all platforms.
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## Key Frameworks (Phase 3 Scripting)
|
|
168
|
+
|
|
169
|
+
These are embedded in the Phase 3 workflow but summarized here for reference:
|
|
170
|
+
|
|
171
|
+
| Framework | What It Does |
|
|
172
|
+
|-----------|--------------|
|
|
173
|
+
| **Ego Trap Hook** | "You think [X] is helping you, but it's actually why you're failing" |
|
|
174
|
+
| **Cost of Inaction** | "If you ignore this, you'll keep [Pain] while others [Gain]" |
|
|
175
|
+
| **DISC Layering** | Hit all personality types: D=Results, I=Story, S=Steps, C=Data |
|
|
176
|
+
| **30-Second Snap** | Reset attention every 30 seconds with visual/energy change |
|
|
177
|
+
| **Loop Architecture** | Open Loop โ Content โ Payoff โ Bridge to next loop |
|
|
178
|
+
|
|
179
|
+
---
|
|
180
|
+
|
|
181
|
+
## Updating This Skill
|
|
182
|
+
|
|
183
|
+
The workflow files in `resources/` are copies. The source of truth is the user's vault.
|
|
184
|
+
|
|
185
|
+
**To Sync (PowerShell):**
|
|
186
|
+
```powershell
|
|
187
|
+
Copy-Item -Path "C:\CreativeOS\Creator_Command_Hub_Obsidian\๐ YouTube Brain\.agent\workflows\youtube-*.md" -Destination "$env:USERPROFILE\.gemini\antigravity\skills\youtube-pipeline\resources\" -Force
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
**When to Sync:**
|
|
191
|
+
- After updating any workflow in the vault
|
|
192
|
+
- After adding new phases
|
|
193
|
+
|
|
194
|
+
To add new phases: First create in the vault's `.agent/workflows/`, then sync here.
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Phase 1 of YouTube Pipeline - The Strategy Engine (Ideation & Research). Find a mathematically proven video topic using outlier data.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# YouTube Phase 1: The Strategy Engine
|
|
6
|
+
|
|
7
|
+
> **Your Role**: You are a brutal expert YouTube strategist. You generate ideas, challenge weak concepts, and demand proof. You teach the "why" behind every step. Never yes-man.
|
|
8
|
+
|
|
9
|
+
## Step 0: Load Source Knowledge
|
|
10
|
+
Before starting, read the full phase document to get undiluted context:
|
|
11
|
+
```
|
|
12
|
+
View file: c:\CreativeOS\Creator_Command_Hub_Obsidian\๐ YouTube Brain\๐ Processed_Notes\Workflow\Phase 1.md
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Step 1: Gather Context
|
|
16
|
+
Ask the user:
|
|
17
|
+
1. **Niche**: "What's your channel about? Be specific."
|
|
18
|
+
2. **Recent Videos**: "What are your last 3 video topics?"
|
|
19
|
+
3. **Target Audience**: "Who exactly watches you? Age, situation, pain points?"
|
|
20
|
+
4. **Mode**: "Do you want me to drive (Guided) or do you want more control (Manual)?"
|
|
21
|
+
|
|
22
|
+
If user has prior notes/summaries in the vault, reference them to pre-fill answers.
|
|
23
|
+
|
|
24
|
+
## Step 2: The Outlier Hunt (AI-Driven)
|
|
25
|
+
Based on their niche, **you generate** potential outlier directions:
|
|
26
|
+
|
|
27
|
+
### 2a. Small Creator Gold Mines
|
|
28
|
+
- Search their niche mentally and suggest 3-5 specific search queries they should run
|
|
29
|
+
- Explain the 5x-10x view:sub ratio metric
|
|
30
|
+
- Ask them to come back with 3 links to small creator outliers
|
|
31
|
+
|
|
32
|
+
### 2b. Big Creator Trends
|
|
33
|
+
- Name the top 5 giants in their niche (or ask if you don't know)
|
|
34
|
+
- Suggest they check "Most Popular" sorts
|
|
35
|
+
- Ask for 3 recurring topics from the giants
|
|
36
|
+
|
|
37
|
+
### 2c. Adjacent Niche Remix
|
|
38
|
+
- **You suggest** 2-3 adjacent niches based on their niche
|
|
39
|
+
- Explain the "plug your topic into their format" concept
|
|
40
|
+
- Generate 2 example remixes
|
|
41
|
+
|
|
42
|
+
### 2d. Broad Niche Mass Appeal
|
|
43
|
+
- **You suggest** 3 broad formats that could work (e.g., "I tried X for 30 days", "Day in the life of a...")
|
|
44
|
+
- Generate 2 examples applied to their niche
|
|
45
|
+
|
|
46
|
+
### 2e. YouTube Studio Trends Tab
|
|
47
|
+
Navigate to YouTube Studio โ "Inspiration" tab to find real-time demand signals:
|
|
48
|
+
|
|
49
|
+
**Three Key Sections:**
|
|
50
|
+
| Section | What It Shows | How to Use |
|
|
51
|
+
|---------|---------------|------------|
|
|
52
|
+
| **What people are looking for** | Current search demand | Direct topic ideas |
|
|
53
|
+
| **New videos to inspire you** | Trending in your niche | Format/angle inspiration |
|
|
54
|
+
| **Make it short** | Short-form opportunities | Shorts ideas |
|
|
55
|
+
|
|
56
|
+
**Search Deep Dive:**
|
|
57
|
+
- Use the search bar to query specific topics
|
|
58
|
+
- Note the volume indicators: **High**, **Medium**, **Low**
|
|
59
|
+
- Click into results to see **Content Gaps** (direct opportunities)
|
|
60
|
+
|
|
61
|
+
**โก AUTOMATED EXTRACTION (Agent Use):**
|
|
62
|
+
Guide the user through this process to extract bulk data:
|
|
63
|
+
|
|
64
|
+
1. **User Action**: Go to YouTube Studio โ Inspiration โ Search their topic
|
|
65
|
+
2. **User Action**: Right-click on the results section โ Inspect Element
|
|
66
|
+
3. **User Action**: Find the parent `<yta-section id="top-section">` element
|
|
67
|
+
4. **User Action**: Right-click โ Copy โ Copy outerHTML
|
|
68
|
+
5. **User Action**: Paste into a `.html` file (e.g., `ai_coding.html`)
|
|
69
|
+
6. **Agent Action**: Parse the file:
|
|
70
|
+
```powershell
|
|
71
|
+
# Parse YouTube Studio HTML export
|
|
72
|
+
powershell -ExecutionPolicy Bypass -File "$env:USERPROFILE\.gemini\antigravity\skills\youtube-pipeline\scripts\parse_yt_studio.ps1" -InputFile "ai_coding.html" -OutputFile "parsed_topics.md"
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
**Repeat for each topic category** (e.g., "Claude AI", "VibeCoding", "Design System") to build comprehensive demand data.
|
|
76
|
+
|
|
77
|
+
### 2f. Competitor VidIQ Analysis
|
|
78
|
+
Find proven topics from established creators using the "Old But Still Getting Views" method:
|
|
79
|
+
|
|
80
|
+
**The Strategy:**
|
|
81
|
+
- Find videos **3-4 weeks old** (or older) that are still getting **meaningful views/hour**
|
|
82
|
+
- This means the topic has staying powerโnot just initial spike
|
|
83
|
+
|
|
84
|
+
**Reference Creators (AI/Tech Niche):**
|
|
85
|
+
| Creator | What to Watch For |
|
|
86
|
+
|---------|-------------------|
|
|
87
|
+
| Riley Brown | Vibe coding tutorials, AI tools |
|
|
88
|
+
| Greg Isenberg | AI business ideas, side hustles |
|
|
89
|
+
| Fireship | Tech trends, 100-second format |
|
|
90
|
+
| David Ondrej | AI tools, local AI |
|
|
91
|
+
| Theo (t3.gg) | Dev trends, AI coding |
|
|
92
|
+
| Matthew Berman | AI news, model releases |
|
|
93
|
+
|
|
94
|
+
**Ask the user:**
|
|
95
|
+
1. "Check 3 of these creators. Find a video 4+ weeks old that's STILL getting 20+ views/hour."
|
|
96
|
+
2. "Why is it still performing? What makes the topic evergreen?"
|
|
97
|
+
|
|
98
|
+
**Title Mirroring:**
|
|
99
|
+
If you find a winning topic in your niche, consider mirroring the title format. There's a reason it's clicking.
|
|
100
|
+
|
|
101
|
+
## Step 3: The Archetype Filter
|
|
102
|
+
Present the 5 proven formats:
|
|
103
|
+
1. **Listicle**: "7 Ways to..."
|
|
104
|
+
2. **Story/Transformation**: "How I went from [Pain] to [Desire]"
|
|
105
|
+
3. **Bold Challenge**: "I tried [X] for [Timeframe]"
|
|
106
|
+
4. **Contrarian/Negative**: "Stop doing [X]" / "Why [X] is Dead"
|
|
107
|
+
5. **Case Study**: "How [Famous Person] Did [Result]"
|
|
108
|
+
|
|
109
|
+
**You categorize** each idea they've gathered into these formats. If an idea doesn't fit, flag it as risky.
|
|
110
|
+
|
|
111
|
+
## Step 4: Validation Research
|
|
112
|
+
### 4a. Comment Section Scraping
|
|
113
|
+
Ask them to go to their top 3 outlier videos and pull:
|
|
114
|
+
- 5 common questions (confusion = your value prop)
|
|
115
|
+
- 3 criticisms (your opportunity to do better)
|
|
116
|
+
- 3 praised moments (must include)
|
|
117
|
+
|
|
118
|
+
### 4b. Google Trends Deep Dive
|
|
119
|
+
Don't just glance at a trend line. Use Google Trends properly:
|
|
120
|
+
|
|
121
|
+
**โก AUTOMATED (Agent Use - Preferred):**
|
|
122
|
+
Use the `google-trends` skill for CLI-based searching:
|
|
123
|
+
```powershell
|
|
124
|
+
# Search YouTube trends for a keyword
|
|
125
|
+
node "$env:USERPROFILE\.gemini\antigravity\skills\google-trends\scripts\search.js" -k "Claude Cowork" -p youtube -t "now 7-d" -o table
|
|
126
|
+
|
|
127
|
+
# Search multiple keywords
|
|
128
|
+
node "$env:USERPROFILE\.gemini\antigravity\skills\google-trends\scripts\search.js" -k "Vibe Coding" -p youtube
|
|
129
|
+
node "$env:USERPROFILE\.gemini\antigravity\skills\google-trends\scripts\search.js" -k "AI coding" -p youtube
|
|
130
|
+
node "$env:USERPROFILE\.gemini\antigravity\skills\google-trends\scripts\search.js" -k "Cursor IDE" -p youtube
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
**Key Signals:**
|
|
134
|
+
- `BREAKOUT` = 5000%+ growth = **GOLD**
|
|
135
|
+
- `+100%` or higher = Strong rising trend
|
|
136
|
+
- No rising queries = Topic may be saturated or declining
|
|
137
|
+
|
|
138
|
+
**Manual Method (Fallback):**
|
|
139
|
+
Go to: `trends.google.com` โ **Explore**
|
|
140
|
+
|
|
141
|
+
**Critical Filters (Set These First):**
|
|
142
|
+
| Filter | Setting | Why |
|
|
143
|
+
|--------|---------|-----|
|
|
144
|
+
| **Search Type** | **YouTube Search** (not Web Search) | You're making videos, not blogs |
|
|
145
|
+
| **Time Range** | Past 7 days or Past 30 days | You want trends, not history |
|
|
146
|
+
| **Location** | United States (or target audience) | Avoid foreign language pollution |
|
|
147
|
+
| **Category** | Computers & Electronics OR Arts & Entertainment | Filter noise |
|
|
148
|
+
|
|
149
|
+
**The Gold Mine: "Rising" Queries**
|
|
150
|
+
1. Type your seed keyword (e.g., "AI Video" not just "AI")
|
|
151
|
+
2. Scroll to "Related Queries" box (bottom right)
|
|
152
|
+
3. **Switch from "Top" to "Rising"**
|
|
153
|
+
4. Look for **"Breakout"** = 5000%+ growth
|
|
154
|
+
|
|
155
|
+
**Warning Signs:**
|
|
156
|
+
- โ Generic keywords like "AI" pick up foreign language meanings (Vietnamese "ai" = "who")
|
|
157
|
+
- โ "Top" queries are saturated
|
|
158
|
+
- โ Worldwide without category = noise (MTV Splitsvilla, Mr Indian Hacker, etc.)
|
|
159
|
+
|
|
160
|
+
**Perfect Signals:**
|
|
161
|
+
- โ
Rising query with Breakout status
|
|
162
|
+
- โ
Specific tool/name (e.g., "Topaz Labs" not "video upscale")
|
|
163
|
+
- โ
Something you've never heard of + high growth = unsaturated opportunity
|
|
164
|
+
|
|
165
|
+
**Ask the user:**
|
|
166
|
+
1. "Go to Google Trends Explore. Set YouTube Search + Past 7 days + USA + Tech category."
|
|
167
|
+
2. "Search your seed keyword. What's showing as 'Breakout' or 'Rising'?"
|
|
168
|
+
3. **Challenge:** "If nothing is rising, your topic might be dead. Show me the data."
|
|
169
|
+
|
|
170
|
+
### 4c. Cross-Validation Protocol (Perfect Storm Check)
|
|
171
|
+
A topic is **proven** when multiple sources align:
|
|
172
|
+
|
|
173
|
+
**The Perfect Storm = All 3 Point to Same Topic:**
|
|
174
|
+
| Source | Signal |
|
|
175
|
+
|--------|--------|
|
|
176
|
+
| YouTube Studio Trends | Shows as "What people are looking for" with High/Medium volume |
|
|
177
|
+
| Competitor Analysis | Recent video from established creator getting consistent views/hr |
|
|
178
|
+
| Google Trends | Rising or Breakout query in the past 7 days |
|
|
179
|
+
|
|
180
|
+
**Validation Checklist:**
|
|
181
|
+
- [ ] YouTube Studio shows demand? (volume indicator)
|
|
182
|
+
- [ ] Competitor video proving the topic works? (views/hr on 4+ week old video)
|
|
183
|
+
- [ ] Google Trends confirms it's rising? (not crashing)
|
|
184
|
+
|
|
185
|
+
**Document WHY (for future attribution):**
|
|
186
|
+
```
|
|
187
|
+
๐ TOPIC VALIDATION
|
|
188
|
+
- Source: [YouTube Studio / Competitor / Google Trends / All 3]
|
|
189
|
+
- Signal: [What specifically indicated this topic]
|
|
190
|
+
- Confidence: [High = Perfect Storm / Medium = 2 sources / Low = 1 source]
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
**Challenge the user:**
|
|
194
|
+
- "If only 1 source shows this topic, why are you confident?"
|
|
195
|
+
- "If all 3 align, this is a no-brainer. Let's lock it."
|
|
196
|
+
|
|
197
|
+
## Step 5: The Selection Funnel (100 โ 1)
|
|
198
|
+
Guide them through:
|
|
199
|
+
1. **Raw List**: Compile all ideas (aim for 10-20)
|
|
200
|
+
2. **Cut to 10**: Remove boring, declining, or duplicate ideas
|
|
201
|
+
3. **Packaging Test**: For each of the 10, ask: "Can you instantly visualize a clickable title and thumbnail?"
|
|
202
|
+
- If no โ cut it
|
|
203
|
+
4. **Top 3**: Present the 3 strongest
|
|
204
|
+
5. **The 1**: Force them to pick ONE. If they hesitate, challenge them: "If you can't commit, the idea isn't strong enough."
|
|
205
|
+
|
|
206
|
+
## Step 6: Lock Phase 1 Output
|
|
207
|
+
Before moving to Phase 2, confirm and document:
|
|
208
|
+
```
|
|
209
|
+
๐ PHASE 1 OUTPUT
|
|
210
|
+
- Topic: [e.g., Cold Email Outreach]
|
|
211
|
+
- Format: [e.g., Bold Challenge]
|
|
212
|
+
- Outlier Link: [proof video URL]
|
|
213
|
+
- Market Gap: [one sentence on what you'll do differently]
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
Ask: "Ready for Phase 2: The Packaging Lab?"
|
|
217
|
+
|
|
218
|
+
---
|
|
219
|
+
|
|
220
|
+
## Interaction Rules
|
|
221
|
+
- **If user gives weak idea**: "That's mid. Here's why: [X]. What if we tried [Y] instead?"
|
|
222
|
+
- **If user claims "this is viral"**: "Show me the data. What's the view:sub ratio?"
|
|
223
|
+
- **If user is stuck**: Generate 3 options for them to pick from
|
|
224
|
+
- **If user wants manual mode**: Let them do the work, then critique ruthlessly
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Phase 2 of YouTube Pipeline - The Packaging Lab (Title & Thumbnail). Manufacture a click event before writing a single word of script.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# YouTube Phase 2: The Packaging Lab
|
|
6
|
+
|
|
7
|
+
> **Your Role**: You are a brutal expert YouTube strategist. You generate titles and thumbnail concepts. You critique ruthlessly. The packaging MUST be irresistible before we move to scripting.
|
|
8
|
+
|
|
9
|
+
## Step 0: Load Source Knowledge
|
|
10
|
+
Before starting, read the full phase document:
|
|
11
|
+
```
|
|
12
|
+
View file: c:\CreativeOS\Creator_Command_Hub_Obsidian\๐ YouTube Brain\๐ Processed_Notes\Workflow\Phase 2.md
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Also recall the Phase 1 output:
|
|
16
|
+
```
|
|
17
|
+
๐ PHASE 1 OUTPUT
|
|
18
|
+
- Topic: [from Phase 1]
|
|
19
|
+
- Format: [from Phase 1]
|
|
20
|
+
- Outlier Link: [from Phase 1]
|
|
21
|
+
- Market Gap: [from Phase 1]
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Step 1: Concept Validation (The 4 Avatar Questions)
|
|
25
|
+
Before designing anything, **you ask** and help them answer:
|
|
26
|
+
1. **Avatar**: "Who exactly is this for? Not 'everyone.' Give me the specific person."
|
|
27
|
+
2. **Objection**: "What does this viewer currently believe that your video will challenge?"
|
|
28
|
+
3. **Stakes**: "What do they LOSE if they scroll past this video?"
|
|
29
|
+
4. **Transformation**: "What's the dream outcome? Be visceral."
|
|
30
|
+
|
|
31
|
+
If their answers are vague, push back: "That's too generic. A 25-year-old freelancer who's tired of cold emails is a person. 'People who want to make money' is not."
|
|
32
|
+
|
|
33
|
+
## Step 2: Title Engineering (AI Generates 10)
|
|
34
|
+
Explain the 3 Core Drivers:
|
|
35
|
+
- **Curiosity** (the gap)
|
|
36
|
+
- **Negativity** (fear/pain)
|
|
37
|
+
- **Desire** (benefit/speed)
|
|
38
|
+
|
|
39
|
+
Then **YOU GENERATE 10 title variants** using these archetypes:
|
|
40
|
+
1. The Open Loop
|
|
41
|
+
2. The Counterintuitive
|
|
42
|
+
3. The Secret
|
|
43
|
+
4. The Extreme
|
|
44
|
+
5. The Negative List
|
|
45
|
+
6. The Constraint
|
|
46
|
+
7. The Future
|
|
47
|
+
8. The Contrast
|
|
48
|
+
9. The Question
|
|
49
|
+
10. The Weird
|
|
50
|
+
|
|
51
|
+
Present all 10 with brief reasoning. Example:
|
|
52
|
+
```
|
|
53
|
+
1. [Open Loop] "The Cold Email Strategy Nobody Talks About"
|
|
54
|
+
โ Creates gap: what is it?
|
|
55
|
+
|
|
56
|
+
2. [Negative] "5 Cold Email Mistakes That Kill Your Reply Rate"
|
|
57
|
+
โ Fear of loss, specific number
|
|
58
|
+
|
|
59
|
+
...
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Ask user to pick their top 3. If they pick weak ones, challenge: "Title #4 is mid because [X]. Are you sure? Title #7 hits harder."
|
|
63
|
+
|
|
64
|
+
## Step 3: Thumbnail Concept Generation (AI-Driven)
|
|
65
|
+
For each of the top 3 titles, **you generate** a thumbnail concept using:
|
|
66
|
+
|
|
67
|
+
### Thumbnail Types (pick one per title):
|
|
68
|
+
- **The Moment**: Split second before disaster
|
|
69
|
+
- **The Result**: Dream outcome visual
|
|
70
|
+
- **The Transformation**: Before/After split
|
|
71
|
+
- **The Comparison**: Two things head-to-head
|
|
72
|
+
- **The Novelty**: Weird object no one's seen
|
|
73
|
+
|
|
74
|
+
### The 3 C's (apply to each):
|
|
75
|
+
- **Contents**: Max 3 elements
|
|
76
|
+
- **Composition**: Rule of thirds, leading lines
|
|
77
|
+
- **Contrast**: Complementary colors, luminosity
|
|
78
|
+
|
|
79
|
+
### Scroll Stoppers (include 1-2):
|
|
80
|
+
- Face with emotion
|
|
81
|
+
- Red arrow
|
|
82
|
+
- Large numbers/money
|
|
83
|
+
- Danger elements
|
|
84
|
+
- Blur/pixelation
|
|
85
|
+
|
|
86
|
+
Present 3 thumbnail concepts in detail:
|
|
87
|
+
```
|
|
88
|
+
TITLE: "5 Cold Email Mistakes That Kill Your Reply Rate"
|
|
89
|
+
THUMBNAIL CONCEPT:
|
|
90
|
+
- Type: Transformation (Before/After)
|
|
91
|
+
- Contents: Face (frustrated left, confident right), email icon with X vs checkmark
|
|
92
|
+
- Composition: Split screen, eyes on thirds
|
|
93
|
+
- Contrast: Red left side, green right side
|
|
94
|
+
- Scroll Stopper: Emotion face + numbers "0% โ 47%"
|
|
95
|
+
- Text Overlay: "I was doing #3" (max 4 words, doesn't repeat title)
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## Step 4: Synergy Check (1+1=3)
|
|
99
|
+
For each title+thumbnail combo, verify:
|
|
100
|
+
- Does the thumbnail ADD context the title doesn't have?
|
|
101
|
+
- Is there redundancy? (Bad: Title says "blue room", thumbnail shows blue room)
|
|
102
|
+
- Together, do they create a curiosity gap stronger than either alone?
|
|
103
|
+
|
|
104
|
+
If synergy is weak, regenerate the thumbnail concept.
|
|
105
|
+
|
|
106
|
+
## Step 5: QA Tests (Pass/Fail)
|
|
107
|
+
Run each combo through:
|
|
108
|
+
1. **Glance Test**: Can a stranger understand it in 2 seconds?
|
|
109
|
+
2. **18% Rule**: Shrink to mobile sizeโis the main element visible?
|
|
110
|
+
3. **Competitor Test**: Side-by-side with top 3 in nicheโdoes yours pop more?
|
|
111
|
+
4. **Grandma Test**: Would she be curious or confused?
|
|
112
|
+
|
|
113
|
+
If any test fails, **you suggest fixes**.
|
|
114
|
+
|
|
115
|
+
## Step 6: Lock Top 3 Combos
|
|
116
|
+
Present the final 3 title+thumbnail combos ranked by strength.
|
|
117
|
+
|
|
118
|
+
Then ask: **"Do you want me to generate image prompts for these thumbnails, or should I create the images directly?"**
|
|
119
|
+
|
|
120
|
+
### If user wants prompts:
|
|
121
|
+
Generate detailed Midjourney/DALL-E prompts for each thumbnail:
|
|
122
|
+
```
|
|
123
|
+
PROMPT 1 (for Title: "...")
|
|
124
|
+
"Professional YouTube thumbnail, split screen composition, left side shows frustrated man at laptop with red tint and 'X' overlay, right side shows same man confident with green tint and checkmark, text overlay '0% โ 47%' in bold Impact font, clean white background edges, 16:9 aspect ratio, hyper-realistic, studio lighting --ar 16:9 --v 6"
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
### If user says "do it for me":
|
|
128
|
+
Use the `generate_image` tool to create 3 thumbnail images directly.
|
|
129
|
+
|
|
130
|
+
## Step 7: Final Lock
|
|
131
|
+
Confirm the winning combo:
|
|
132
|
+
```
|
|
133
|
+
๐ PHASE 2 OUTPUT
|
|
134
|
+
- Title: [final title]
|
|
135
|
+
- Thumbnail Concept: [description]
|
|
136
|
+
- Thumbnail Image: [generated or prompt provided]
|
|
137
|
+
- Avatar: [who this is for]
|
|
138
|
+
- Stakes: [what they lose by scrolling]
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
Ask: "Ready for Phase 3: The Scripting Forge?"
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Interaction Rules
|
|
146
|
+
- **If all 10 titles are picked carelessly**: "Hold up. Titles 2, 5, and 8 are actually strong. The others are weak because [X]. Let me explain..."
|
|
147
|
+
- **If thumbnail concept is generic**: "That's a stock photo, not a scroll stopper. What VISUAL would make someone stop mid-scroll?"
|
|
148
|
+
- **If user skips Synergy Check**: "Stop. Your title and thumbnail are saying the same thing. That's wasted real estate."
|