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

Using Claude to Build a LinkedIn Lead Gen Pipeline That Replaced €3,000 Freelancer Quote
A developer spent 30 minutes writing a detailed 2-page prompt with Claude Sonnet to create a LinkedIn lead generation system that identifies lead magnet posts, filters and scores prospects, and runs daily on a $5 VPS, replacing quotes of €2,000-5,000 from freelancers.

Independent Researcher Uses Claude AI to Write Quantum Mechanics Paper and 30-50k Lines of Rust Code
An independent researcher used Claude AI as a collaborator to write a research paper titled 'Clifford Geometry as the Foundation of Quantum Mechanics' and develop 30-50k lines of Rust code with zero external dependencies. The code verifies Bell correlations and wave dynamics in a phase lattice.

RunLobster AI agent builds functional dashboard from natural language request
A developer reports that RunLobster built and deployed a complete dashboard with Stripe integration and authentication in response to a single natural language command, completing in minutes what would normally take days.

Building a Pixel-Art JRPG with Claude Code: A Developer's Workflow and Stack
A developer used Claude Code (Opus 4.6) to build Bakemachi, a pixel-art JRPG for learning Japanese with a playable demo. The stack includes Vite, React, Phaser 3, TypeScript, and Zustand, with Claude handling most of the code implementation.