Automating a Daily AI News Podcast with Claude Code and Three AI Agents

Pipeline Architecture and Key Design Decisions
This automated podcast system follows a four-step pipeline orchestrated by Claude Code. The most critical design decision is the source weighting system: official AI company blogs (40%), industry thought leaders (30%), and community signals like Hacker News and GitHub Trending (30%).
Three Specialized AI Agents in Sequence
- Collector Agent: Pulls and de-noises content from all weighted sources
- Editor Agent: Selects the top 5 stories and writes narration scripts using a "super prompt" with recursive summarization
- Proofreader Agent: Fact-checks every claim against original sources plus Google search. Failed checks trigger automatic rewrites
Voice Generation and Publishing
The system uses ListenHub API for Chinese TTS with cloned voice (requires ~2 minutes of sample audio). For English, ElevenLabs would work. The complete workflow is: collect → edit → proofread → TTS → combine audio segments → publish to podcast platform (RedCircle or Spotify for Podcasters).
Practical Implementation Tips
- Focus on curation rules rather than model selection—determining "what's worth listening to" is the core challenge
- Add de-duplication mechanisms for daily runs (the developer encountered repeated topics in week 2)
- Start with text-only version (skip steps 3-4) which delivers 80% of the value
The entire system runs on Claude Code with any TTS tool and preferred podcast hosting service, demonstrating how specialized AI agents can handle different aspects of content creation and verification.
📖 Read the full source: r/ClaudeAI
👀 See Also

OpenClaw agent generates CAD models and STL files from dimension specifications
A user discovered their OpenClaw agent can create STL and SCAD files from dimension specifications, producing functional 3D models with exact requested dimensions in about 20 seconds.

Deep Research Reports with Hermes Agent and Qwen3.6-35b-a3b: A Practical Walkthrough
A social researcher shares their workflow using Hermes Agent and qwen3.6-35b-a3b Q6_K to produce 21-page policy reports autonomously, with full repo of prompts, skills, and intermediate artifacts.

Building a 200k LOC Production App via Vibe Coding from a Phone
A developer built Vibe Remote, a mobile vibe-coding tool with ~200,000 lines of code (140k Go, 60k Swift), primarily by messaging Claude Code through the app from their phone. The project revealed key challenges like DRY violations and E2E test bottlenecks.
Claude Code vs Codex: 6-Project Practical Experiment Breakdown
A practical experiment comparing Claude Code and Codex across 6 projects—web, backend, and free challenge—with cross-reviews, self-audits, and scoring.