Turn Your OpenClaw Briefing into a Podcast Feed for Apple Podcasts

One developer turned their OpenClaw morning briefing into a podcast feed they listen to on the drive to work. The core workflow: take the briefing output, run it through text-to-speech to generate an MP3, host that file somewhere accessible, then append the episode to a simple RSS XML feed. Subscribe to that feed in Apple Podcasts, and the latest briefing is waiting at 7:30 AM.
Key Details
- Source: Reddit user u/fermatf on r/openclaw.
- Components: TTS engine of choice (e.g., OpenAI TTS, Amazon Polly), storage for MP3s (local server, S3, etc.), RSS feed generator (hand-written XML or a static site generator).
- Additional use: The same pipeline works for Substack articles — paste the link, get an episode ready to listen later.
- MCP server: The author also packaged it as an MCP server so others can skip the build (bring your own OpenAI API key).
Practical Workflow
- Generate the briefing using OpenClaw (standard morning briefing prompt).
- Convert text to speech (e.g.,
curlto OpenAI TTS API). - Save resulting MP3 to a public URL (e.g.,
https://example.com/podcast/2025-04-03.mp3). - Update RSS XML (add
<item>with title, enclosure, pubDate). - Serve the XML at a fixed URL (e.g.,
https://example.com/feed.xml). - Subscribe in Apple Podcasts using that feed URL.
The author notes the setup is straightforward and open to answering questions in the Reddit comments.
📖 Read the full source: r/openclaw
👀 See Also

How I built 62 free tools in a month using Claude Code + a loop script
A developer shipped 62 browser-based, SEO-ready tools in 30 days using a shell script called Ralph that runs Claude Code autonomously in layers, plus a parallel cook.sh to run multiple tools at once.

How Claude Drafted a Pre-Litigation Notice and Got a Full Refund for a Defective MacBook
A Reddit user describes using Claude to analyze Indian consumer law, draft a pre-litigation notice, and recover Rs. 40,219 (~$480) from a company that initially offered only 85% refund.

Claude for Engineering Compliance: 6-Month Workflow Breakdown
A technical firm shares how they use Claude Projects, Artifacts, and constraint-following to avoid hallucinations in client-facing specs.

Running Multiple AI Coding Agents with OpenClaw: Custom Provider Setup & Cross-Agent Memory Challenges
This post details configuring OpenClaw with a third-party API provider (DeepInfra) to run multiple coding agents (backend, frontend, migrations) without hitting rate limits, and the cross-agent memory isolation issue that arose.