← Reddit

I made a market news podcast :)

Reddit · sysadmin420 · August 1, 2026
INFORMANT is a fully automated, self-hosted satirical market-news station that monitors Truth Social posts and measures actual market responses, employing a "number firewall" to ensure all spoken figures are real measured values rather than AI-generated claims. The system produces multiple long-form shows with synthetic voices, auto-rendered videos, news bulletins, and RSS feeds entirely on local hardware without external API calls. The development used Claude Code sessions with adversarial review stages that identified and prevented critical errors before broadcast, including timing mismatches between audio and captions.

Detailed Analysis

A Reddit post detailing "INFORMANT," a self-hosted satirical market-news broadcasting station built almost entirely through Claude Code sessions, offers a striking case study in how far amateur builders can push agentic AI coding tools when given sustained, month-long engagement. The project combines nine long-form podcast shows with fifteen cloned synthetic voices (generated via F5-TTS running on a home GPU), automated 4K video and Shorts rendering through a headless Chrome pipeline, YouTube uploads, an RSS feed, a Bluesky bot, and even a monthly self-audit episode where the station reviews its own prior predictions. Notably, the entire content pipeline runs locally—using a Qwen3.6 mixture-of-experts model for writing and a vision model for media processing—with no API calls involved, meaning the system operates independently of hosted LLM services for its actual runtime, even though Claude Code was the tool used to build it.

The most distinctive design element is what the creator calls a "number firewall": a hard separation between the language model generating satirical scripts and the broadcast pipeline, enforced by output validators that reject any script containing a figure not drawn from measured, real-world data. This reflects a growing concern in AI-generated content more broadly—hallucinated statistics presented with false authority—and the project's response is architectural rather than merely promptual, treating factual grounding as a systems-engineering problem rather than a prompting nicety. The creator explicitly frames this as a house rule against becoming "Fox Stock News," positioning satire in the interpretive framing of Truth Social posts and market reactions while keeping the underlying numbers verifiably real.

What makes this a compelling artifact for the Claude Code community specifically is the described development workflow: brainstorm, written spec, implementation plan, a fresh subagent dispatched per task, adversarial review of each task's output, and a final whole-branch review before anything ships to the live station. The creator offers concrete evidence that this review discipline caught real bugs—a race condition where a fallback audio path could have shipped captions mismatched to a different rendering (a "silent honesty violation" given the project's truth-in-numbers ethos), and an instance where an implementing agent refused to follow the human's plan because it would have silently dropped an audio segment the previous code preserved. These anecdotes illustrate an emerging pattern in agentic coding: using multiple specialized subagent passes, including agents assigned explicitly adversarial or reviewer roles, functions as a practical safeguard against the kind of subtle correctness bugs that single-pass code generation tends to miss.

More broadly, this project sits at the intersection of several trends reshaping how individuals build software and media systems in 2025-2026: the maturation of local, self-hosted AI stacks (open-weight LLMs, local TTS voice cloning, local vision models) that reduce dependence on cloud APIs and their costs; the rise of "vibe coding" and agentic development workflows where non-professional or hobbyist builders orchestrate complex, multi-service systems through natural-language collaboration with coding agents rather than writing most code by hand; and increasing public experimentation with AI-generated media that carries built-in disclosure and factual-integrity constraints, addressing anxieties about synthetic content trustworthiness. The fact that a single creator, working through iterative Claude Code sessions, could stand up a fully automated, unattended, month-long-running media operation—complete with voice cloning, video rendering, multi-platform publishing, and self-auditing—underscores how agentic coding tools are compressing the effort required to build production-grade, always-on software systems, while also foregrounding the need for architectural guardrails (like the number firewall) to keep AI-generated output honest at scale.

Read original article →