skills/essay-cluster-from-transcript/SKILL.md
Take a long stream-of-thought transcript (voice memo, video reflection, text dump) and turn it into a cluster of 5-20 publishable blog essays. Clusters ideas by theme, drafts each essay via parallel sub-agents, generates Gemini hero images, batch-commits, and (optionally) sends a grouped link list via the user's preferred messaging surface. Use when the user shares a transcript and says 'turn this into essays', 'write a series', 'split into posts', 'draft all of them', or pastes a long stream of ideas they want shipped.
npx skillsauth add razbakov/skills essay-cluster-from-transcriptInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Trigger this skill when:
Do NOT use this for single-essay requests, polishing existing drafts, or extracting one quick takeaway. This is for the case where one transcript becomes 5-20 essays.
Before drafting, confirm or read from the project's CLAUDE.md:
| Input | Where it usually lives |
|---|---|
| Blog repo path | Project Path Registry in user's CLAUDE.md |
| Blog post path convention | Repo's CLAUDE.md (e.g. content/blog/YYYY-MM-DD-slug-en.md) |
| Hero image path convention | Repo's CLAUDE.md (e.g. public/images/blog/<slug>/hero.png) |
| Frontmatter shape | An existing recent post in the same repo |
| Brand voice + style | Repo's CLAUDE.md (tone, words to use, words to avoid) |
| Hero image style guide | Repo's CLAUDE.md (palette, typography, motifs) |
| Default state for new posts | hidden: true if the repo has a draft mechanism, else publish directly |
| Messaging surface for the link list | User's CLAUDE.md (Telegram bot, Slack channel, etc.) |
If any are missing or unclear, ask one consolidated question — don't draft 17 essays in the wrong voice.
Read the full transcript end-to-end. Identify distinct ideas. Group them — typical structure:
Aim for 5-20 essays. Fewer if the transcript is thin; more if it's dense. Each title should be a single concrete claim — not a category. Bad: "Thoughts on Productivity". Good: "I Stopped Treating Myself Like a One-Job Person".
Present the numbered list to the user grouped by theme. Suggest a 3-5 essay reading order for the impatient. Confirm before drafting.
For each essay, dispatch one sub-agent (in Claude Code: the Agent tool with subagent_type: general-purpose and run_in_background: true). The prompt for each agent must include:
description)Send all dispatch calls in a single message (parallel). The skill orchestrator does the git work after, not the sub-agents — otherwise they race on git status.
When all agents report back:
ls, file size > 0).Compose a single message with:
Send via the messaging surface configured in the user's CLAUDE.md. Format using whatever markup the surface supports (HTML for Telegram, mrkdwn for Slack).
/image-from-gemini — never HTML+headless Chrome (looks generic).public/images/blog/<slug>/hero.png (or whatever the repo uses).If the repo has a draft mechanism (a hidden: or draft: field with a query-param toggle on the homepage), default new clusters to draft. The user reviews 17 essays before deciding to publish — that's the right gate. Confirm with the user before flipping the publish switch.
If the repo has no draft mechanism, publish directly only after the user explicitly says "publish" — not from "draft them".
draft: true. If you use Nuxt Content, the draft field is reserved — pages with draft: true are excluded from queryContent results in production. Use hidden: true (or any other field name) instead, with a manual filter in the homepage component.route.query, both SSR (empty query) and CSR (full query) render different lists, and Vue's hydration reuses DOM nodes from the smaller list against the larger one — titles end up paired with the wrong hrefs. Defer the toggle inside onMounted so SSR and initial CSR match exactly, and watch the route afterward.crawlLinks: true, hidden posts that don't appear on the homepage never get prerendered → 404 on direct URLs. Scan the content directory at build time and explicitly add hidden routes to the prerender list.After the cluster ships, ask the user whether to translate the cluster (or specific essays) using the translate-blog-post skill. Translations are usually a separate, lower-priority pass.
tools
--- name: handoff description: Get an agent past a browser/UI wall it can't (or must not) cross on its own — a login-gated dashboard, a CAPTCHA, a 2FA prompt, an API that keeps rejecting the write, or an irreversible click that policy says a human must make. This skill is an ESCALATION LADDER, not a first move: it tells you to try the automated browser surfaces FIRST (Chrome-in-Claude, computer-use, an autonomous browser sub-agent) and only fall back to the Handoff app — a wrapper browser that h
documentation
Summarize one or more YouTube videos from their links. Use this whenever the user pastes a youtube.com or youtu.be URL (or several) and wants to know what it's about — phrasings like "summarize to telegram", "tldr these videos", "what do these say", "summary of this talk", or just dropping links with no instruction at all. Fetches each video's real transcript via yt-dlp (not the page text, which never contains the transcript), cleans the captions, and writes a per-video summary. Default delivery is Telegram; honor any other surface the user names ("to my notes", "just here in chat", "email it"). Trigger even when the user only pastes bare links — bare YouTube links almost always mean "tell me what's in these".
data-ai
Daily Digest — Chief-of-Staff role consolidates the six top-managers into one Telegram message to the Commander, instead of six. Implements the protocol from agent-proactivity.md.
development
Seed a new or empty Instagram account with a 9-post grid (3×3) so the profile looks established the moment a new visitor lands. Designed for festivals, new businesses, product launches, conferences, communities — any time an empty IG profile would hurt conversion from external traffic (QR scans, flyer drops, cross-promo). Generates assets via /image-from-gemini (per content-publishing rules — never HTML), writes captions with hashtag sets, and outputs a posting order + cadence plan. Trigger generously: phrases like '9 posts for instagram', 'fill my IG', 'starter grid', 'launch grid', 'instagram seed', '9-post grid', 'IG account not to look empty', 'first instagram posts', 'feed bootstrap', '3x3 grid', 'instagram launch content'. Even if the user mentions only one piece (just the images, just the captions, just the order), use this skill — the grid only works as an integrated bundle.