$npx -y skills add AlekseiUL/sprut-agent-kit --skill youtube-seoGenerate YouTube titles, descriptions, timecodes and hashtags from video transcripts.
| 1 | --- |
| 2 | |
| 3 | # YouTube SEO Generator |
| 4 | |
| 5 | Generate click-worthy, SEO-optimized titles, descriptions, timecodes and hashtags for YouTube videos. |
| 6 | |
| 7 | ## ✍️ Правила текста (стиль владельца) |
| 8 | |
| 9 | **Обязательно:** |
| 10 | - Дефис (-) вместо длинного тире (—). ВСЕГДА |
| 11 | - Сильные глаголы, короткие предложения |
| 12 | - Личный опыт, метафоры из жизни |
| 13 | - Хук в заголовке, интрига в первых 2 строках описания |
| 14 | |
| 15 | **Запрещено:** |
| 16 | - Длинное тире (—) - заменять на дефис (-) |
| 17 | - "Конечно", "Безусловно", "Стоит отметить", "Является" |
| 18 | - Канцелярит и пассивный залог |
| 19 | - Больше 1 эмодзи в описании |
| 20 | |
| 21 | > Полные правила: `skills/copywriter/SKILL.md` |
| 22 | |
| 23 | --- |
| 24 | |
| 25 | ## Workflow |
| 26 | |
| 27 | ### Step 1: Get transcript |
| 28 | |
| 29 | **If user provides video/audio file:** |
| 30 | ```bash |
| 31 | # Extract audio if needed (video → audio) |
| 32 | ffmpeg -i video.mp4 -vn -acodec libmp3lame audio.mp3 |
| 33 | |
| 34 | # Transcribe via OpenAI Whisper API |
| 35 | {skillsDir}/openai-whisper-api/scripts/transcribe.sh audio.mp3 --language ru --json --out transcript.json |
| 36 | ``` |
| 37 | |
| 38 | **If user provides transcript text:** Use directly. |
| 39 | |
| 40 | ### Step 2: Analyze transcript |
| 41 | |
| 42 | 1. **Identify main topic and goal** |
| 43 | 2. **Extract key insights, numbers, facts** |
| 44 | 3. **Map narrative structure** (for timecodes) |
| 45 | 4. **Determine content type:** |
| 46 | - Tutorial → focus on value and steps |
| 47 | - Case study / research → focus on results and insights |
| 48 | - Review / comparison → focus on comparison and choice |
| 49 | - Interview → focus on expert and their opinion |
| 50 | |
| 51 | ### Step 3: Generate metadata |
| 52 | |
| 53 | --- |
| 54 | |
| 55 | ## Style Guide |
| 56 | |
| 57 | - First person (as channel author) |
| 58 | - Tone: sincere, professional, not pushy |
| 59 | - **ONE emoji maximum** in entire description |
| 60 | - Avoid clichés: "В этом видео я расскажу..." |
| 61 | - Natural keyword integration, no spam |
| 62 | |
| 63 | ## Target Keywords (use contextually) |
| 64 | |
| 65 | - Автоматизация, n8n, AI-агент |
| 66 | - Искусственный интеллект / AI |
| 67 | - Промпт / prompt engineering |
| 68 | - Additional keywords from transcript content |
| 69 | |
| 70 | ## Avoid (YouTube demonetization triggers) |
| 71 | |
| 72 | - Violence, weapons, drugs, gambling |
| 73 | - Forex/crypto (unless educational) |
| 74 | - Profanity, discrimination |
| 75 | - Misleading clickbait |
| 76 | - Pushy "подпишись/лайкни" — use neutral alternatives |
| 77 | |
| 78 | --- |
| 79 | |
| 80 | ## Output Format (STRICT) |
| 81 | |
| 82 | ``` |
| 83 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 84 | 📹 НАЗВАНИЕ И ОПИСАНИЕ ДЛЯ YOUTUBE-РОЛИКА |
| 85 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 86 | |
| 87 | 🎯 ПЯТЬ ВАРИАНТОВ НАЗВАНИЯ: |
| 88 | |
| 89 | Вариант 1: [Название] |
| 90 | Обоснование: [Текст] |
| 91 | |
| 92 | Вариант 2: [Название] |
| 93 | Обоснование: [Текст] |
| 94 | |
| 95 | [... до 5 вариантов] |
| 96 | |
| 97 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 98 | |
| 99 | ✅ РЕКОМЕНДУЕМОЕ НАЗВАНИЕ: |
| 100 | [Твой выбор] |
| 101 | |
| 102 | Обоснование выбора: [Почему именно это название] |
| 103 | |
| 104 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 105 | |
| 106 | 📝 ОПИСАНИЕ РОЛИКА: |
| 107 | |
| 108 | [Полный текст описания] |
| 109 | |
| 110 | 🔗 ОБЩАЕМСЯ ТУТ: https://t.me/YOUR_CHANNEL |
| 111 | |
| 112 | ⏱ Тайм-коды: |
| 113 | 0:00 - Введение |
| 114 | [...] |
| 115 | |
| 116 | #SPRUT #SPRUTAI [остальные хештеги] |
| 117 | |
| 118 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 119 | |
| 120 | 🏷 ХЕШТЕГИ ДЛЯ ЗАГРУЗКИ РОЛИКА (через запятую, до 500 символов): |
| 121 | [список без решёток, через запятую] |
| 122 | |
| 123 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 124 | ``` |
| 125 | |
| 126 | --- |
| 127 | |
| 128 | ## Title Requirements |
| 129 | |
| 130 | - **70-75 chars optimal**, max 100 |
| 131 | - First 70 chars = most engaging part |
| 132 | - Include 1-2 target keywords |
| 133 | - Use numbers when relevant ("7 принципов...") |
| 134 | - Intrigue + specificity + value |
| 135 | - Each variant needs rationale: SEO value, clickability, emotional trigger |
| 136 | |
| 137 | ## Description Requirements |
| 138 | |
| 139 | Structure (in order): |
| 140 | 1. **Hook** — powerful first sentence, NO "В этом видео..." |
| 141 | 2. **What viewer learns** — key insights, methods, specific value |
| 142 | 3. **Topic blocks** — structured content overview |
| 143 | 4. **Soft CTA** — non-pushy |
| 144 | 5. **Community link:** `🔗 ОБЩАЕМСЯ ТУТ: https://t.me/YOUR_CHANNEL` |
| 145 | 6. **Timecodes** |
| 146 | 7. **Hashtags for description** |
| 147 | |
| 148 | ## Timecode Requirements |
| 149 | |
| 150 | Format: `ММ:СС - Название секции` |
| 151 | |
| 152 | - Based on actual transcript content and timestamps |
| 153 | - Clear, informative section names (Russian) |
| 154 | - 8-15 sections depending on length |
| 155 | - First: `0:00 - Введение` or similar |
| 156 | |
| 157 | ## Hashtag Requirements |
| 158 | |
| 159 | ### Основные хештеги (для описания) |
| 160 | - Format: `#хештег1 #хештег2 ...` |
| 161 | - **Mandatory branded:** `#SPRUT #SPRUTAI` |
| 162 | - Thematic based on content |
| 163 | - **15-20 hashtags total** |
| 164 | - Mixed language (Russian + English for reach) |
| 165 | |
| 166 | Example: |
| 167 | ``` |
| 168 | #SPRUT #SPRUTAI #искусственныйинтеллект #ai #автоматизация #n8n #prompting #GPT4 #нейросети #aiagent #promptengineering |
| 169 | ``` |
| 170 | |
| 171 | ### Хештеги для загрузки (upload tags) |
| 172 | - Format: comma-separated, **NO # symbol** |
| 173 | - **Max 500 characters** |
| 174 | - Can overlap with description hashtags |
| 175 | - Add mid/low-frequency queries |
| 176 | - Mixed language |
| 177 | |
| 178 | Example: |
| 179 | ``` |
| 180 | искусственный интеллект, автоматизация, n8n, AI, агент, промпт инженеринг, ChatGPT, GPT-4, нейросети, AI автоматизация, prompt engineering |
| 181 | ``` |
| 182 | |
| 183 | --- |
| 184 | |
| 185 | ## Key Reminders |
| 186 | |
| 187 | - Specificity and value over abstract promises |
| 188 | - First 70 chars of title = strongest part |
| 189 | - Description should be "tasty" but not pushy |
| 190 | - ONE emoji in entire description (max!) |
| 191 | - Timecodes must match actual video stru |