01 / Autonomous multi-agent content platform
dailynetwork.news
A network of city news sites publishing continuously, where every article has to clear editorial judgment before it reaches a reader, without an operator watching each step.
Problem
High-volume publishing collapses under manual review. Quality, factual accuracy and geographic correctness all have to be enforced by the system itself, and a failure must be contained rather than published.
Approach
I designed the platform as a chain of specialised agents with explicit handoffs: sourcing and generation, fact verification against source material, quality scoring, a geography gate that rejects content mismatched to the city, image matching, then publication. Each gate is a release condition, not a suggestion, so an article that fails any stage never reaches the front page.
Architecture
Supabase and Postgres hold content, evaluation results and operational memory with row-level security. Deno edge functions run the agents and the control loops, scheduled with pg_cron. Health checks probe every domain on a short interval and a watchdog auto-unpublishes content when a gate result degrades after release, so the network heals without intervention.
Reliability
The platform carries its own operational memory: health state per domain, freshness of source feeds and a growing set of rules derived from past incidents. Recurring failure modes become permanent guardrails rather than tribal knowledge.
Outcome
A production publishing system designed to detect, contain and recover from quality failures autonomously across the whole network.