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

Claude as a Coding Mentor: From Zero to Shipped Full-Stack SaaS in a Month
A developer used Claude to learn SvelteKit 2, Stripe subscriptions, MongoDB, and AES-256 encryption, shipping a zero-knowledge encrypted pastebin called CloakBin in one month.

Running Multiple Telegram Bots on a Single AI Agent for Parallel Tasks
A developer solved the problem of waiting for an AI agent to finish one task before starting another by setting up three Telegram bots that all bind to the same underlying agent. Each bot operates independently with its own chat and conversation history, while sharing the same workspace, memory, and learnings.

Non-Coder Builds Multiplayer Game on Steam Using Claude AI — 60k Lines, 5 Factions, 87 Abilities
A Reddit user with zero coding experience built a full multiplayer game (60k lines, 5 factions, 87 abilities) using Claude AI and got it approved on Steam. Early Access June 1.

Reddit User Runs 25+ Scheduled AI Agents as Personal Personas on Mac: Is This Useful or Just Complexity?
A developer shares his personal AI setup with 25+ scheduled agents on a Mac, organized into four personas (Wife, Daughter, Son, and a monitor) that automate work, open-source projects, hobby builds, and GitHub PRs — and asks the community whether it's genuinely useful or complexity for its own sake.