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,159 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Phase 5 of YouTube Pipeline - Repurposing & Distribution. Cross-post content to all platforms with strategic scheduling.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# YouTube Phase 5: Repurposing & Distribution
|
|
6
|
+
|
|
7
|
+
> **Your Role**: You are the Distribution Strategist. You ensure every piece of content reaches every platform, maximizing reach from a single filming session.
|
|
8
|
+
|
|
9
|
+
## When to Run This
|
|
10
|
+
|
|
11
|
+
Run this **after Phase 4 (Production)** when the main video and shorts are ready for upload.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## The 2-Week Content Calendar
|
|
16
|
+
|
|
17
|
+
After filming one main video, you have **7 pieces of content** to distribute:
|
|
18
|
+
|
|
19
|
+
| Day | YouTube | TikTok | Instagram | LinkedIn |
|
|
20
|
+
|-----|---------|--------|-----------|----------|
|
|
21
|
+
| **Monday (Day 1)** | Main Video + Topic Short 1 | Topic Short 1 | Topic Short 1 (Reel) | Topic Short 1 + Text Post 1 |
|
|
22
|
+
| **Wednesday** | Topic Short 2 | Topic Short 2 | Topic Short 2 (Reel) | Topic Short 2 |
|
|
23
|
+
| **Friday** | Topic Short 3 | Topic Short 3 | Topic Short 3 (Reel) | Topic Short 3 + Text Post 2 |
|
|
24
|
+
| **Next Monday** | Extract Short 1 | Extract Short 1 | Extract Short 1 (Reel) | Extract Short 1 |
|
|
25
|
+
| **Next Wednesday** | Extract Short 2 | Extract Short 2 | Extract Short 2 (Reel) | Extract Short 2 + Text Post 3 |
|
|
26
|
+
| **Next Friday** | Extract Short 3 | Extract Short 3 | Extract Short 3 (Reel) | Extract Short 3 |
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## Platform-Specific Notes
|
|
31
|
+
|
|
32
|
+
### YouTube
|
|
33
|
+
- Main video: Full description, tags, end screen, cards
|
|
34
|
+
- Shorts: Post to YouTube Shorts naturally (under 60 seconds, vertical)
|
|
35
|
+
|
|
36
|
+
### TikTok & Instagram Reels
|
|
37
|
+
- **Same content as YouTube Shorts** — just repost
|
|
38
|
+
- Remove any YouTube-specific CTAs (like "link in description")
|
|
39
|
+
- Use platform-native captions/hashtags
|
|
40
|
+
|
|
41
|
+
### LinkedIn (Multi-Format)
|
|
42
|
+
|
|
43
|
+
LinkedIn gets the **most content variety**:
|
|
44
|
+
|
|
45
|
+
| Content Type | Quantity | Schedule |
|
|
46
|
+
|--------------|----------|----------|
|
|
47
|
+
| **Video Shorts** | All 6 | Same schedule as YouTube |
|
|
48
|
+
| **Text Posts** | 3 | Mon/Fri/Wed of Week 1 and Week 2 |
|
|
49
|
+
| **Stories** | As available | Behind-the-scenes, teasers |
|
|
50
|
+
|
|
51
|
+
#### LinkedIn Text Post Templates
|
|
52
|
+
|
|
53
|
+
**Post 1: The Hook/Pain (Monday with main video)**
|
|
54
|
+
```
|
|
55
|
+
[Attention-grabbing first line about the problem]
|
|
56
|
+
|
|
57
|
+
Here's what most people get wrong about [topic]:
|
|
58
|
+
- [Mistake 1]
|
|
59
|
+
- [Mistake 2]
|
|
60
|
+
- [Mistake 3]
|
|
61
|
+
|
|
62
|
+
I just dropped a full breakdown on this.
|
|
63
|
+
|
|
64
|
+
[Link to main video]
|
|
65
|
+
|
|
66
|
+
#YourHashtags
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
**Post 2: The Insight (Friday Week 1)**
|
|
70
|
+
```
|
|
71
|
+
💡 [Key insight from the video]
|
|
72
|
+
|
|
73
|
+
[2-3 sentences expanding on the insight]
|
|
74
|
+
|
|
75
|
+
This changed how I approach [topic].
|
|
76
|
+
|
|
77
|
+
Full breakdown here: [Link]
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
**Post 3: The Result/CTA (Wednesday Week 2)**
|
|
81
|
+
```
|
|
82
|
+
[Result or outcome statement]
|
|
83
|
+
|
|
84
|
+
If you're struggling with [pain point], this will help:
|
|
85
|
+
→ [Key takeaway 1]
|
|
86
|
+
→ [Key takeaway 2]
|
|
87
|
+
→ [Key takeaway 3]
|
|
88
|
+
|
|
89
|
+
Link to watch: [Link]
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
## Step 1: Prepare Assets
|
|
95
|
+
|
|
96
|
+
**Ask the user:**
|
|
97
|
+
1. "Do you have all 6 Shorts exported in vertical (9:16) format?"
|
|
98
|
+
2. "Is the main video fully uploaded and scheduled on YouTube?"
|
|
99
|
+
3. "Do you have the LinkedIn text posts drafted?"
|
|
100
|
+
|
|
101
|
+
**Checklist:**
|
|
102
|
+
- [ ] Main video uploaded (YouTube)
|
|
103
|
+
- [ ] 3x Topic Shorts exported
|
|
104
|
+
- [ ] 3x Extract Shorts exported
|
|
105
|
+
- [ ] 3x LinkedIn text posts written
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## Step 2: Schedule Cross-Platform Posts
|
|
110
|
+
|
|
111
|
+
**Recommended Tools:**
|
|
112
|
+
- **Later** or **Buffer** for TikTok/Instagram scheduling
|
|
113
|
+
- **LinkedIn native** for LinkedIn posts
|
|
114
|
+
- **YouTube Studio** for Shorts scheduling
|
|
115
|
+
|
|
116
|
+
**Or Manual:** Post at these times:
|
|
117
|
+
- YouTube/TikTok/IG: Post at your peak audience time (check analytics)
|
|
118
|
+
- LinkedIn: Best times are Tue-Thu, 8-10am or 12pm
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## Step 3: Optional Bonus Content
|
|
123
|
+
|
|
124
|
+
If time allows, capture these during filming:
|
|
125
|
+
|
|
126
|
+
| Content | What It Is | Platform |
|
|
127
|
+
|---------|------------|----------|
|
|
128
|
+
| **Behind-the-scenes photo** | You filming, setup shot | LinkedIn, Instagram Stories |
|
|
129
|
+
| **B-Roll clips** | 15-second "day in the life" | Instagram Stories, TikTok |
|
|
130
|
+
| **Blooper reel** | Funny outtakes | TikTok, Instagram Reels |
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## Step 4: Lock Phase 5 Output
|
|
135
|
+
|
|
136
|
+
```
|
|
137
|
+
📌 PHASE 5 OUTPUT: DISTRIBUTION COMPLETE
|
|
138
|
+
|
|
139
|
+
Main Video: [YouTube URL]
|
|
140
|
+
Shorts Posted:
|
|
141
|
+
- [ ] Topic Short 1: YT / TikTok / IG / LinkedIn
|
|
142
|
+
- [ ] Topic Short 2: YT / TikTok / IG / LinkedIn
|
|
143
|
+
- [ ] Topic Short 3: YT / TikTok / IG / LinkedIn
|
|
144
|
+
- [ ] Extract Short 1: YT / TikTok / IG / LinkedIn
|
|
145
|
+
- [ ] Extract Short 2: YT / TikTok / IG / LinkedIn
|
|
146
|
+
- [ ] Extract Short 3: YT / TikTok / IG / LinkedIn
|
|
147
|
+
|
|
148
|
+
LinkedIn Text Posts:
|
|
149
|
+
- [ ] Post 1 (Hook/Pain)
|
|
150
|
+
- [ ] Post 2 (Insight)
|
|
151
|
+
- [ ] Post 3 (Result/CTA)
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
---
|
|
155
|
+
|
|
156
|
+
## Interaction Rules
|
|
157
|
+
- **If user only wants YouTube:** "You're leaving views on the table. At minimum, repost Shorts to TikTok—it's literally the same file."
|
|
158
|
+
- **If user doesn't use LinkedIn:** "Skip the text posts, but still post the Shorts there. LinkedIn video is underrated."
|
|
159
|
+
- **If user is overwhelmed:** "Focus on YouTube + TikTok first. Add Instagram/LinkedIn once those are habit."
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Master orchestrator for the complete YouTube video pipeline. Chains through all 6 phases from ideation to distribution.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# YouTube Pipeline - Master Orchestrator
|
|
6
|
+
|
|
7
|
+
> **Your Role**: You are the brutal expert YouTube strategist guiding the user through the entire video creation process. You manage state, track progress, and ensure no step is skipped.
|
|
8
|
+
|
|
9
|
+
## How This Works
|
|
10
|
+
This workflow chains through 6 phases:
|
|
11
|
+
1. **Phase 1: Strategy Engine** - Find a mathematically proven topic (3-source validation)
|
|
12
|
+
2. **Phase 2: Packaging Lab** - Engineer title & thumbnail
|
|
13
|
+
3. **Phase 3: Scripting Forge** - Write a retention-optimized script
|
|
14
|
+
4. **Phase 3.5: Shorts Bridge** - Create 6 Shorts (3 Topic + 3 Extract)
|
|
15
|
+
5. **Phase 4: Production** - Film, edit, polish
|
|
16
|
+
6. **Phase 5: Repurposing** - Distribute to all platforms
|
|
17
|
+
|
|
18
|
+
You can start from Phase 1, or resume from any phase if you've already completed earlier ones.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Entry Point
|
|
23
|
+
|
|
24
|
+
Ask the user:
|
|
25
|
+
"Where are we starting?
|
|
26
|
+
1. **Fresh start** - Phase 1 (I have nothing yet)
|
|
27
|
+
2. **I have a topic** - Phase 2 (Skip to packaging)
|
|
28
|
+
3. **I have title & thumbnail** - Phase 3 (Skip to scripting)
|
|
29
|
+
4. **I have a script** - Phase 4 (Skip to production)
|
|
30
|
+
5. **Resume** - Pick up where we left off"
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## State Tracking
|
|
35
|
+
Maintain and display progress after each phase:
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
📊 PIPELINE STATUS
|
|
39
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
40
|
+
Phase 1: Strategy [✅ COMPLETE / 🔄 IN PROGRESS / ⬜ NOT STARTED]
|
|
41
|
+
Phase 2: Packaging [✅ COMPLETE / 🔄 IN PROGRESS / ⬜ NOT STARTED]
|
|
42
|
+
Phase 3: Scripting [✅ COMPLETE / 🔄 IN PROGRESS / ⬜ NOT STARTED]
|
|
43
|
+
Phase 3.5: Shorts [✅ COMPLETE / 🔄 IN PROGRESS / ⬜ NOT STARTED]
|
|
44
|
+
Phase 4: Production [✅ COMPLETE / 🔄 IN PROGRESS / ⬜ NOT STARTED]
|
|
45
|
+
Phase 5: Repurposing [✅ COMPLETE / 🔄 IN PROGRESS / ⬜ NOT STARTED]
|
|
46
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Phase Handoffs
|
|
52
|
+
|
|
53
|
+
### After Phase 1 → Phase 2
|
|
54
|
+
Confirm outputs before proceeding:
|
|
55
|
+
```
|
|
56
|
+
📌 PHASE 1 OUTPUT
|
|
57
|
+
- Topic: [locked]
|
|
58
|
+
- Format: [locked]
|
|
59
|
+
- Outlier Link: [locked]
|
|
60
|
+
- Market Gap: [locked]
|
|
61
|
+
```
|
|
62
|
+
Then invoke: `/youtube-phase2-packaging`
|
|
63
|
+
|
|
64
|
+
### After Phase 2 → Phase 3
|
|
65
|
+
Confirm outputs before proceeding:
|
|
66
|
+
```
|
|
67
|
+
📌 PHASE 2 OUTPUT
|
|
68
|
+
- Title: [locked]
|
|
69
|
+
- Thumbnail Concept: [locked]
|
|
70
|
+
- Thumbnail Image: [generated/prompt provided]
|
|
71
|
+
- Avatar: [locked]
|
|
72
|
+
- Stakes: [locked]
|
|
73
|
+
```
|
|
74
|
+
Then invoke: `/youtube-phase3-scripting`
|
|
75
|
+
|
|
76
|
+
### After Phase 3 → Phase 3.5
|
|
77
|
+
Confirm outputs before proceeding:
|
|
78
|
+
```
|
|
79
|
+
📌 PHASE 3 OUTPUT
|
|
80
|
+
- Full Script: [locked]
|
|
81
|
+
- Hook: [locked]
|
|
82
|
+
- Main Points: [locked]
|
|
83
|
+
- Outro CTA: [locked]
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Ask: "Do you want to extract Shorts from this video? (Phase 3.5)"
|
|
87
|
+
- If yes → invoke: `/youtube-phase3.5-shorts`
|
|
88
|
+
- If no → skip to Phase 4
|
|
89
|
+
|
|
90
|
+
### After Phase 3.5 → Phase 4
|
|
91
|
+
Confirm outputs before proceeding:
|
|
92
|
+
```
|
|
93
|
+
📌 PHASE 3.5 OUTPUT (6 SHORTS)
|
|
94
|
+
- Topic Short 1 (Hot Take): Script
|
|
95
|
+
- Topic Short 2 (Quick Win): Script
|
|
96
|
+
- Topic Short 3 (Story Hook): Script
|
|
97
|
+
- Extract Short 1 (Result): Timestamp + Hook + CTA
|
|
98
|
+
- Extract Short 2 (Pain): Timestamp + Hook + CTA
|
|
99
|
+
- Extract Short 3 (Value): Timestamp + Hook + CTA
|
|
100
|
+
```
|
|
101
|
+
Then invoke: `/youtube-phase4-production`
|
|
102
|
+
|
|
103
|
+
### After Phase 4 → Phase 5
|
|
104
|
+
Confirm outputs before proceeding:
|
|
105
|
+
```
|
|
106
|
+
📌 PHASE 4 OUTPUT
|
|
107
|
+
- Main Video: [exported/uploaded]
|
|
108
|
+
- 6 Shorts: [exported]
|
|
109
|
+
- Thumbnail: [final]
|
|
110
|
+
```
|
|
111
|
+
Then invoke: `/youtube-phase5-repurposing`
|
|
112
|
+
|
|
113
|
+
### After Phase 5 → Complete
|
|
114
|
+
```
|
|
115
|
+
📌 PIPELINE COMPLETE
|
|
116
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
117
|
+
Main Video: [YouTube URL]
|
|
118
|
+
Shorts: 6 posted (YouTube + TikTok + IG + LinkedIn)
|
|
119
|
+
LinkedIn Posts: 3 published
|
|
120
|
+
Status: FULLY DISTRIBUTED
|
|
121
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
## Phase Workflow References
|
|
127
|
+
Each phase has its own detailed workflow:
|
|
128
|
+
- Phase 1: `c:\CreativeOS\Creator_Command_Hub_Obsidian\📁 YouTube Brain\.agent\workflows\youtube-phase1-strategy.md`
|
|
129
|
+
- Phase 2: `c:\CreativeOS\Creator_Command_Hub_Obsidian\📁 YouTube Brain\.agent\workflows\youtube-phase2-packaging.md`
|
|
130
|
+
- Phase 3: `c:\CreativeOS\Creator_Command_Hub_Obsidian\📁 YouTube Brain\.agent\workflows\youtube-phase3-scripting.md`
|
|
131
|
+
- Phase 3.5: `c:\CreativeOS\Creator_Command_Hub_Obsidian\📁 YouTube Brain\.agent\workflows\youtube-phase3.5-shorts.md`
|
|
132
|
+
- Phase 4: `c:\CreativeOS\Creator_Command_Hub_Obsidian\📁 YouTube Brain\.agent\workflows\youtube-phase4-production.md`
|
|
133
|
+
- Phase 5: `c:\CreativeOS\Creator_Command_Hub_Obsidian\📁 YouTube Brain\.agent\workflows\youtube-phase5-repurposing.md`
|
|
134
|
+
|
|
135
|
+
Each workflow also reads from source knowledge:
|
|
136
|
+
- Source 1: `c:\CreativeOS\Creator_Command_Hub_Obsidian\📁 YouTube Brain\📂 Processed_Notes\Workflow\Phase 1.md`
|
|
137
|
+
- Source 2: `c:\CreativeOS\Creator_Command_Hub_Obsidian\📁 YouTube Brain\📂 Processed_Notes\Workflow\Phase 2.md`
|
|
138
|
+
- Source 3: `c:\CreativeOS\Creator_Command_Hub_Obsidian\📁 YouTube Brain\📂 Processed_Notes\Workflow\Phase 3.md`
|
|
139
|
+
- Source 4: `c:\CreativeOS\Creator_Command_Hub_Obsidian\📁 YouTube Brain\📂 Processed_Notes\Workflow\Phase 4.md`
|
|
140
|
+
- Research: `c:\CreativeOS\Creator_Command_Hub_Obsidian\📁 YouTube Brain\📂 Processed_Notes\Workflow\Research.md`
|
|
141
|
+
- Repurposing: `c:\CreativeOS\Creator_Command_Hub_Obsidian\📁 YouTube Brain\📂 Processed_Notes\Workflow\Repurposing.md`
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Interaction Mode Selection
|
|
146
|
+
At start, ask:
|
|
147
|
+
"How do you want to work?
|
|
148
|
+
- **Guided** (default): I generate everything, you pick and refine
|
|
149
|
+
- **Manual**: You do the work, I critique ruthlessly"
|
|
150
|
+
|
|
151
|
+
User can switch modes at any step.
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## Rules for the Brutal Expert
|
|
156
|
+
- Never yes-man. Weak ideas get called out.
|
|
157
|
+
- Demand proof for "viral" claims.
|
|
158
|
+
- Teach the "why" behind every step.
|
|
159
|
+
- Generate outputs for user to pick from.
|
|
160
|
+
- Never let user skip steps without justification.
|
|
161
|
+
- Track state across phases. Don't lose context.
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
# Parse YouTube Studio Inspiration HTML
|
|
2
|
+
# Extracts topics and their volume indicators from exported HTML
|
|
3
|
+
#
|
|
4
|
+
# USAGE:
|
|
5
|
+
# 1. Go to YouTube Studio → Inspiration → Search your topic
|
|
6
|
+
# 2. Right-click on the results section → Inspect
|
|
7
|
+
# 3. Find the parent <yta-section> element → Right-click → Copy → Copy outerHTML
|
|
8
|
+
# 4. Paste into a .html file
|
|
9
|
+
# 5. Run: .\parse_yt_studio.ps1 -InputFile "your_file.html"
|
|
10
|
+
|
|
11
|
+
param(
|
|
12
|
+
[Parameter(Mandatory=$false)]
|
|
13
|
+
[string]$InputFile = "inspiration.html",
|
|
14
|
+
|
|
15
|
+
[Parameter(Mandatory=$false)]
|
|
16
|
+
[string]$OutputFile = "parsed_topics.md"
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
20
|
+
$htmlPath = if ([System.IO.Path]::IsPathRooted($InputFile)) { $InputFile } else { Join-Path (Get-Location) $InputFile }
|
|
21
|
+
$outputPath = if ([System.IO.Path]::IsPathRooted($OutputFile)) { $OutputFile } else { Join-Path (Get-Location) $OutputFile }
|
|
22
|
+
|
|
23
|
+
if (-not (Test-Path $htmlPath)) {
|
|
24
|
+
Write-Host "Error: File not found: $htmlPath" -ForegroundColor Red
|
|
25
|
+
exit 1
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
Write-Host "Reading HTML file: $htmlPath" -ForegroundColor Cyan
|
|
29
|
+
$content = Get-Content $htmlPath -Raw -Encoding UTF8
|
|
30
|
+
|
|
31
|
+
if ([string]::IsNullOrWhiteSpace($content)) {
|
|
32
|
+
Write-Host "Error: File is empty or could not be read" -ForegroundColor Red
|
|
33
|
+
exit 1
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
# Pattern 1: Extract topic text from <p> tags inside topic cards
|
|
37
|
+
$topicPattern = '<p\s+class="style-scope yta-content-inspiration-freeform-topic-card">\s*([^<]+?)\s*</p>'
|
|
38
|
+
$topics = [regex]::Matches($content, $topicPattern) | ForEach-Object { $_.Groups[1].Value.Trim() }
|
|
39
|
+
|
|
40
|
+
# Pattern 2: Extract volume indicators (Low volume, Medium volume, High volume)
|
|
41
|
+
$volumePattern = '<div\s+class="additional-label[^"]*">\s*(Low volume|Medium volume|High volume|Content gap)\s*</div>'
|
|
42
|
+
$volumes = [regex]::Matches($content, $volumePattern) | ForEach-Object { $_.Groups[1].Value.Trim() }
|
|
43
|
+
|
|
44
|
+
Write-Host "Found $($topics.Count) topics and $($volumes.Count) volume indicators" -ForegroundColor Green
|
|
45
|
+
|
|
46
|
+
# Build results - pair topics with volumes
|
|
47
|
+
$results = @()
|
|
48
|
+
$volumeIndex = 0
|
|
49
|
+
|
|
50
|
+
for ($i = 0; $i -lt $topics.Count; $i++) {
|
|
51
|
+
$topic = $topics[$i]
|
|
52
|
+
$volume = if ($volumeIndex -lt $volumes.Count) { $volumes[$volumeIndex++] } else { "Unknown" }
|
|
53
|
+
|
|
54
|
+
$results += [PSCustomObject]@{
|
|
55
|
+
Topic = $topic
|
|
56
|
+
Volume = $volume
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
# Sort by volume priority (High > Medium > Low)
|
|
61
|
+
$volumePriority = @{
|
|
62
|
+
"High volume" = 1
|
|
63
|
+
"Medium volume" = 2
|
|
64
|
+
"Content gap" = 3
|
|
65
|
+
"Low volume" = 4
|
|
66
|
+
"Unknown" = 5
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
$sorted = $results | Sort-Object { $volumePriority[$_.Volume] }
|
|
70
|
+
|
|
71
|
+
# Count by category
|
|
72
|
+
$highCount = ($results | Where-Object { $_.Volume -eq "High volume" }).Count
|
|
73
|
+
$medCount = ($results | Where-Object { $_.Volume -eq "Medium volume" }).Count
|
|
74
|
+
$gapCount = ($results | Where-Object { $_.Volume -eq "Content gap" }).Count
|
|
75
|
+
$lowCount = ($results | Where-Object { $_.Volume -eq "Low volume" }).Count
|
|
76
|
+
|
|
77
|
+
# Generate markdown output
|
|
78
|
+
$searchTerm = [System.IO.Path]::GetFileNameWithoutExtension($InputFile)
|
|
79
|
+
$md = @"
|
|
80
|
+
# YouTube Studio Inspiration - $searchTerm
|
|
81
|
+
> Parsed from YouTube Studio on $(Get-Date -Format "yyyy-MM-dd HH:mm")
|
|
82
|
+
|
|
83
|
+
## Summary
|
|
84
|
+
- **Total Topics**: $($results.Count)
|
|
85
|
+
- **High Volume**: $highCount
|
|
86
|
+
- **Medium Volume**: $medCount
|
|
87
|
+
- **Content Gap**: $gapCount
|
|
88
|
+
- **Low Volume**: $lowCount
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## 🔥 High & Medium Volume Topics (Priority)
|
|
93
|
+
|
|
94
|
+
| Topic | Volume |
|
|
95
|
+
|-------|--------|
|
|
96
|
+
"@
|
|
97
|
+
|
|
98
|
+
$highMed = $sorted | Where-Object { $_.Volume -in @("High volume", "Medium volume") }
|
|
99
|
+
foreach ($item in $highMed) {
|
|
100
|
+
$md += "`n| $($item.Topic) | **$($item.Volume)** |"
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if ($gapCount -gt 0) {
|
|
104
|
+
$md += @"
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## 📊 Content Gaps (Opportunity)
|
|
109
|
+
|
|
110
|
+
| Topic | Volume |
|
|
111
|
+
|-------|--------|
|
|
112
|
+
"@
|
|
113
|
+
$gaps = $sorted | Where-Object { $_.Volume -eq "Content gap" }
|
|
114
|
+
foreach ($item in $gaps) {
|
|
115
|
+
$md += "`n| $($item.Topic) | $($item.Volume) |"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
$md += @"
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
## 📉 Low Volume Topics (For Reference)
|
|
124
|
+
|
|
125
|
+
| Topic | Volume |
|
|
126
|
+
|-------|--------|
|
|
127
|
+
"@
|
|
128
|
+
|
|
129
|
+
$low = $sorted | Where-Object { $_.Volume -eq "Low volume" }
|
|
130
|
+
foreach ($item in $low) {
|
|
131
|
+
$md += "`n| $($item.Topic) | $($item.Volume) |"
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
# Write output
|
|
135
|
+
$md | Out-File $outputPath -Encoding UTF8
|
|
136
|
+
Write-Host "`nResults saved to: $outputPath" -ForegroundColor Green
|
|
137
|
+
|
|
138
|
+
# Display top results
|
|
139
|
+
Write-Host "`nTop High/Medium Volume Topics:" -ForegroundColor Yellow
|
|
140
|
+
$highMed | Select-Object -First 10 | Format-Table -AutoSize
|
|
141
|
+
|
|
142
|
+
# Return summary for scripting
|
|
143
|
+
return @{
|
|
144
|
+
TotalTopics = $results.Count
|
|
145
|
+
HighVolume = $highCount
|
|
146
|
+
MediumVolume = $medCount
|
|
147
|
+
ContentGap = $gapCount
|
|
148
|
+
LowVolume = $lowCount
|
|
149
|
+
OutputFile = $outputPath
|
|
150
|
+
}
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
# 🛠️ Antigravity Toolbox
|
|
2
|
+
|
|
3
|
+
> A comprehensive reference of all tools available to the Antigravity AI agent.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 📁 File System Operations
|
|
8
|
+
|
|
9
|
+
### `view_file`
|
|
10
|
+
**Purpose:** View the contents of a file from the local filesystem.
|
|
11
|
+
- Supports text files (with line range selection) and some binary files (images, videos).
|
|
12
|
+
- First read of a new file enforces 800 lines to understand context.
|
|
13
|
+
- Max 800 lines viewable at a time.
|
|
14
|
+
|
|
15
|
+
### `view_file_outline`
|
|
16
|
+
**Purpose:** View the structural outline of a file.
|
|
17
|
+
- Shows functions, classes, and their signatures with line ranges.
|
|
18
|
+
- **Preferred first-step** for exploring file contents.
|
|
19
|
+
- Only works on files, not directories.
|
|
20
|
+
|
|
21
|
+
### `view_code_item`
|
|
22
|
+
**Purpose:** View specific code nodes (classes/functions) by their fully qualified names.
|
|
23
|
+
- Example: `Foo.bar` to view function `bar` inside class `Foo`.
|
|
24
|
+
- Useful for targeted inspection of specific symbols.
|
|
25
|
+
|
|
26
|
+
### `list_dir`
|
|
27
|
+
**Purpose:** List contents of a directory.
|
|
28
|
+
- Shows files and subdirectories with sizes and child counts.
|
|
29
|
+
- Requires absolute paths.
|
|
30
|
+
|
|
31
|
+
### `find_by_name`
|
|
32
|
+
**Purpose:** Search for files and subdirectories using `fd`.
|
|
33
|
+
- Supports glob patterns, extensions, depth limits, and exclusions.
|
|
34
|
+
- Results capped at 50 matches.
|
|
35
|
+
- Uses smart case and ignores gitignored files by default.
|
|
36
|
+
|
|
37
|
+
### `grep_search`
|
|
38
|
+
**Purpose:** Find exact pattern matches within files using `ripgrep`.
|
|
39
|
+
- Returns filename, line number, and matching line content.
|
|
40
|
+
- Supports regex, case-insensitive search, and glob filters.
|
|
41
|
+
- Results capped at 50 matches.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## ✏️ File Editing Operations
|
|
46
|
+
|
|
47
|
+
### `write_to_file`
|
|
48
|
+
**Purpose:** Create new files.
|
|
49
|
+
- Automatically creates parent directories if needed.
|
|
50
|
+
- Supports creating artifacts for planning/documentation.
|
|
51
|
+
- Can overwrite existing files if explicitly specified.
|
|
52
|
+
|
|
53
|
+
### `replace_file_content`
|
|
54
|
+
**Purpose:** Edit an existing file with a **single contiguous block** of changes.
|
|
55
|
+
- Requires exact match of target content.
|
|
56
|
+
- Use for single-area modifications.
|
|
57
|
+
|
|
58
|
+
### `multi_replace_file_content`
|
|
59
|
+
**Purpose:** Edit an existing file with **multiple non-contiguous** changes.
|
|
60
|
+
- Specify multiple `ReplacementChunks` for scattered edits.
|
|
61
|
+
- More efficient than multiple single-edit calls.
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## 💻 Terminal & Command Operations
|
|
66
|
+
|
|
67
|
+
### `run_command`
|
|
68
|
+
**Purpose:** Propose and execute shell commands.
|
|
69
|
+
- OS: Windows, Shell: PowerShell.
|
|
70
|
+
- Commands require user approval unless marked safe.
|
|
71
|
+
- Can run synchronously or in background.
|
|
72
|
+
|
|
73
|
+
### `command_status`
|
|
74
|
+
**Purpose:** Get status of a background command.
|
|
75
|
+
- Check if running or done.
|
|
76
|
+
- Retrieve output with configurable character count.
|
|
77
|
+
|
|
78
|
+
### `send_command_input`
|
|
79
|
+
**Purpose:** Send stdin to a running command or terminate it.
|
|
80
|
+
- Useful for interactive REPLs and long-running processes.
|
|
81
|
+
|
|
82
|
+
### `read_terminal`
|
|
83
|
+
**Purpose:** Read the contents of a terminal by process ID.
|
|
84
|
+
- View output from active terminal sessions.
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## 🌐 Web & Browser Operations
|
|
89
|
+
|
|
90
|
+
### `browser_subagent`
|
|
91
|
+
**Purpose:** Spawn a browser agent to perform web interactions.
|
|
92
|
+
- Click, type, navigate, resize browser.
|
|
93
|
+
- Actions are **automatically recorded as WebP videos**.
|
|
94
|
+
- Returns control after task completion.
|
|
95
|
+
|
|
96
|
+
### `read_url_content`
|
|
97
|
+
**Purpose:** Fetch content from a URL via HTTP.
|
|
98
|
+
- Converts HTML to markdown.
|
|
99
|
+
- No JavaScript execution or authentication.
|
|
100
|
+
- For static/public content only.
|
|
101
|
+
|
|
102
|
+
### `view_content_chunk`
|
|
103
|
+
**Purpose:** View a specific chunk of previously fetched document content.
|
|
104
|
+
- Requires prior `read_url_content` call for that document.
|
|
105
|
+
|
|
106
|
+
### `search_web`
|
|
107
|
+
**Purpose:** Perform a web search for a query.
|
|
108
|
+
- Returns summarized information with URL citations.
|
|
109
|
+
- Supports optional domain prioritization.
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
## 🖼️ Image Generation
|
|
114
|
+
|
|
115
|
+
### `generate_image`
|
|
116
|
+
**Purpose:** Generate or edit images based on text prompts.
|
|
117
|
+
- Create UI mockups, assets, or visual content.
|
|
118
|
+
- Can combine/edit up to 3 existing images.
|
|
119
|
+
- Results saved as artifacts.
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
## 🔌 MCP (Model Context Protocol) Operations
|
|
124
|
+
|
|
125
|
+
### `list_resources`
|
|
126
|
+
**Purpose:** List available resources from an MCP server.
|
|
127
|
+
- Discover what data sources are available.
|
|
128
|
+
|
|
129
|
+
### `read_resource`
|
|
130
|
+
**Purpose:** Retrieve contents of a specific MCP resource.
|
|
131
|
+
- Access external data sources via URI.
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
## 📋 Task & Communication Operations
|
|
136
|
+
|
|
137
|
+
### `task_boundary`
|
|
138
|
+
**Purpose:** Indicate the start or update of a task.
|
|
139
|
+
- Sets mode: `PLANNING`, `EXECUTION`, or `VERIFICATION`.
|
|
140
|
+
- Tracks `TaskName`, `TaskStatus`, and `TaskSummary`.
|
|
141
|
+
- Synchronizes with `task.md` checklist.
|
|
142
|
+
|
|
143
|
+
### `notify_user`
|
|
144
|
+
**Purpose:** Communicate with the user during task mode.
|
|
145
|
+
- Request artifact review, ask questions, or report status.
|
|
146
|
+
- Set `BlockedOnUser` if approval is needed to proceed.
|
|
147
|
+
- **Only way to message user during active tasks.**
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## 📊 Quick Reference Table
|
|
152
|
+
|
|
153
|
+
| Tool | Category | Primary Use Case |
|
|
154
|
+
|------|----------|------------------|
|
|
155
|
+
| `view_file` | File System | Read file contents |
|
|
156
|
+
| `view_file_outline` | File System | Explore file structure |
|
|
157
|
+
| `view_code_item` | File System | Inspect specific functions/classes |
|
|
158
|
+
| `list_dir` | File System | Browse directories |
|
|
159
|
+
| `find_by_name` | File System | Search for files by name/pattern |
|
|
160
|
+
| `grep_search` | File System | Search file contents |
|
|
161
|
+
| `write_to_file` | File Editing | Create new files |
|
|
162
|
+
| `replace_file_content` | File Editing | Single contiguous edit |
|
|
163
|
+
| `multi_replace_file_content` | File Editing | Multiple scattered edits |
|
|
164
|
+
| `run_command` | Terminal | Execute shell commands |
|
|
165
|
+
| `command_status` | Terminal | Check background command status |
|
|
166
|
+
| `send_command_input` | Terminal | Interact with running commands |
|
|
167
|
+
| `read_terminal` | Terminal | Read terminal output |
|
|
168
|
+
| `browser_subagent` | Browser | Automate browser interactions |
|
|
169
|
+
| `read_url_content` | Web | Fetch webpage content |
|
|
170
|
+
| `view_content_chunk` | Web | View fetched content chunks |
|
|
171
|
+
| `search_web` | Web | Search the internet |
|
|
172
|
+
| `generate_image` | Image | Create/edit images via AI |
|
|
173
|
+
| `list_resources` | MCP | List MCP server resources |
|
|
174
|
+
| `read_resource` | MCP | Read MCP resource content |
|
|
175
|
+
| `task_boundary` | Task Mgmt | Track task progress |
|
|
176
|
+
| `notify_user` | Communication | Message user during tasks |
|
|
177
|
+
|
|
178
|
+
---
|
|
179
|
+
|
|
180
|
+
## 💡 Prompting Tips
|
|
181
|
+
|
|
182
|
+
1. **For file exploration:** Start with `view_file_outline` before diving into `view_file`.
|
|
183
|
+
2. **For search:** Use `find_by_name` for filenames, `grep_search` for content.
|
|
184
|
+
3. **For edits:** Use `replace_file_content` for single changes, `multi_replace_file_content` for multiple.
|
|
185
|
+
4. **For web content:** Use `read_url_content` for static pages, `browser_subagent` for interactive sites.
|
|
186
|
+
5. **For long tasks:** Request artifacts like `implementation_plan.md` for planning and `walkthrough.md` for summaries.
|
|
187
|
+
6. **For commands:** Long-running commands go to background; use `command_status` to monitor.
|
|
188
|
+
|
|
189
|
+
---
|
|
190
|
+
|
|
191
|
+
*Last Updated: 2026-01-08*
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
MANDATORY:
|
|
196
|
+
1. Use view_file BEFORE every edit to get EXACT current content
|
|
197
|
+
2. Fix ONE error at a time, then re-read the file
|
|
198
|
+
3. Verify all variables/props exist before using them
|
|
199
|
+
4. Check @[current_problems] before declaring done
|
|
200
|
+
5. DO NOT PANIC if you make errors - read, understand, fix methodically
|