blog-analyze
Audit and score blog posts on a 5-category 100-point scoring system covering content quality, SEO optimization, E-E-A-T signals, technical elements, and AI…
Generate audio narration of blog posts using Google Gemini TTS. Supports summary narration, full article read-aloud, and two-speaker podcast/dialogue mode with 30 voice options. Outputs MP3 with HTML5 audio embed code. Works standalone via /blog audio or internally from
$ npx -y skills add AgriciDaniel/claude-blog --skill blog-audio --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/blog-audioContext preview
The summary Claude sees to decide when to auto-load this skill.
Generate audio narration of blog posts using Google Gemini TTS. Supports summary narration, full article read-aloud, and two-speaker podcast/dialogue mode with 30 voice options. Outputs MP3 with HTML5 audio embed code. Works standalone via /blog audio or internally from
name: blog-audio description: > Generate audio narration of blog posts using Google Gemini TTS. Supports summary narration, full article read-aloud, and two-speaker podcast/dialogue mode with 30 voice options. Outputs MP3 with HTML5 audio embed code. Works standalone via /blog audio or internally from blog-write. Falls back gracefully when API key is not configured. Use when user says "blog audio", "narrate blog", "audio version", "text to speech", "tts", "podcast mode", "read aloud", "audio narration", "voice", "narration", "generate audio". user-invokable: true argument-hint: "[generate|voices|setup] [file-or-text] [--mode summary|full|dialogue] [--voice name]" license: MIT metadata: author: AgriciDaniel version: "2.2.0"
Generate professional audio narration of blog content using Google's Gemini TTS. Three modes: summary (200-300 word spoken overview), full article read-aloud, or two-speaker podcast dialogue. 30 voices, 80+ languages, HTML5 embed output.
| Command | What it does | |---------|-------------| | `/blog audio generate <file>` | Generate audio narration of a blog post | | `/blog audio voices` | Show available voices with characteristics | | `/blog audio setup` | Check/configure API key for Gemini TTS |
# CORRECT: python3 scripts/run.py generate_audio.py --text "..." --voice Charon --json # WRONG: python3 scripts/generate_audio.py --text "..." # Fails without venv
Before generating audio, check for the API key:
test -n "${GOOGLE_AI_API_KEY:-}" && echo "GOOGLE_AI_API_KEY is set" || echo "GOOGLE_AI_API_KEY is not set""Audio generation requires a Google AI API key. Get one free at https://aistudio.google.com/apikey Then set it: `export GOOGLE_AI_API_KEY=your-key` This can be the same key used by `/blog image`, but it must be exported in the shell."
Never block the writing workflow.
For `/blog audio setup`:
1. Check if `GOOGLE_AI_API_KEY` is set in environment 2. If blog-image uses project `.mcp.json`, confirm the referenced env var is exported 3. If not, guide user to https://aistudio.google.com/apikey 4. Verify with a dry run: `python3 scripts/run.py generate_audio.py --text "Test" --dry-run --json`
For `/blog audio voices`:
Load `references/voices.md` and present the voice catalog to the user.
Ask the user which voice they prefer, or recommend based on content type:
For `/blog audio generate <file>`:
Read the file and extract:
Ask the user (or auto-select if they specified `--mode`):
| Mode | When to use | Output | |------|-------------|--------| | **Summary** | Quick audio overview (1-2 min) | 200-300 word spoken summary | | **Full** | Complete read-aloud (5-15 min) | Full article as natural speech | | **Dialogue** | Podcast-style (3-8 min) | Two-person conversation about the article |
Claude prepares the text; the script does TTS only.
**Summary mode:** Write a 200-300 word spoken summary of the article. Rules:
**Full mode:** Strip the markdown content to clean spoken text:
**Dialogue mode:** Write a 2-person conversation script about the article:
If the user chose a voice, use it. Otherwise, recommend based on mode:
Write the prepared text to a file under the working directory, then call:
# Single voice (summary or full mode) python3 scripts/run.py generate_audio.py \ --text-file blog_audio_prepared.txt \ --voice Charon \ --model flash \ --output audio/post-slug.mp3 \ --json # Two voices (dialogue mode) python3 scripts/run.py generate_audio.py \ --text-file blog_audio_dialogue.txt \ --voice Puck \ --voice2 Kore \ --model pro \ --output audio/post-slug-dialogue.mp3 \ --json
**Model selectio
claude-blog is a Claude Code skill suite that writes, optimizes, audits, localizes, and refreshes blog content at scale. Every article is evaluated for Google-aligned usefulness and internal AI citation readiness heuristics.
Repo: AgriciDaniel/claude-blog
Audit and score blog posts on a 5-category 100-point scoring system covering content quality, SEO optimization, E-E-A-T signals, technical elements, and AI…
Full-site blog health assessment scanning all blog files for quality scores, orphan pages, topic cannibalization, stale content, and AI citation readiness.…
Establish durable brand and voice context for cross-skill consumption. Generates BRAND.md (audience, positioning, do/don't editorial rules, taboo phrases,…
Generate detailed content briefs for blog posts with target keywords, content outlines, competitive analysis, recommended statistics, image and chart…
Generate editorial calendars for blogs with topic clusters, publishing schedules, material-change reviews, update plans, seasonal opportunities, content mix…
Detect keyword cannibalization across blog posts by extracting primary keywords from titles and headings, clustering semantically similar targets, and flagging…