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

Solo dev builds native Swift iOS therapy app using Claude Opus 4.6 for coding, debugging, and architecture
A solo developer built Prelude, a free offline iOS therapy prep app, using Claude Opus 4.6. The AI handled code generation, debugging a voice agent, and architecting the on-device AI pipeline.

Field Report: AI Research Partner Fails Peer Review, Prompting Methodology Codification
A geologist/geophysicist using Claude Opus for complex multi-file projects discovered the AI produced a flawed critical analysis of an offshore wind study, with four of six points failing verification despite real citations. The user rebuilt the evidence and codified a methodology for future evaluations.

Multi-pane Claude Code setup with role separation and execution hooks
A developer shares a setup using four iTerm2 panes with separate Claude Code instances for implementation, auditing, planning, and prompt refinement, plus pre- and post-tool use hooks for safety and a session log for context retention.

Building Non-Coding AI Agents with Claude Code: Three Practical Examples
A Reddit user shares their personal setup for creating AI agents using Claude Code, detailing three specific implementations: an automated morning briefing agent pulling from emails, todos, and calendar; a tmux-based pipeline for capturing Substack articles; and a meeting summarization agent.