Last week, something happened that would have sounded like a one-off demo a year ago: we told an AI agent to research a topic, and it went from idea to a live, published article on a real website — researched, fact-checked, written, styled, and deployed — in under an hour. No human touched the content pipeline after the initial instruction.
This post is about what we actually built, and the two things it taught us that matter for any company thinking about AI-native development.
What the pipeline does
The system works in five stages:
- Topic in — we give it a subject and a target section of the site.
- Bounded research — it searches the web, pulls 3–6 sources, and extracts the claims it wants to use. Every number, date, and name must appear in a source it actually fetched. If a fact can't be verified, it gets dropped. (We learned this the hard way: one early run silently invented a date that looked perfectly plausible. The rule is now non-negotiable.)
- Draft — it writes a 3,000–5,000 character article with a single thesis, concrete numbers, and inline source links. No filler, no invented statistics.
- Publish — it renders the article into the site's design system and deploys it through the normal git-based release flow.
- Verify — it checks the live URL, confirms the title and content are actually serving, and reports back.
The whole loop takes 30–60 minutes, including research. A human reviews the draft before it goes live — the machine does the production, the human owns the judgment.
What this is actually about
The interesting part is not the demo. It's what the pipeline forces you to think about:
Fact-checking is the engineering problem, not the writing. Anyone can make an LLM write fluent paragraphs. The hard part is making sure the paragraphs are true. Our biggest investment is the verification layer: source-fetching, claim-matching, and a hard rule that unverifiable numbers don't ship. This is what separates a useful AI workflow from a liability.
Time-boxed research beats open-ended research. The system is deliberately constrained: 3–6 sources, a 20-minute research budget, and a hard length cap. If a topic needs more depth than that, the pipeline stops and escalates to a heavier research process instead of half-doing the job. Scope discipline is a feature, not a limitation.
Human-in-the-loop at the decision point, not at the keystroke. Nobody is reviewing every sentence. The human reviews the finished draft once, before publication. The AI handles the 95% of grunt work; the human keeps the 5% that requires judgment — what to say, what to leave out, whether the thesis is right.
What this means for your project
If you're evaluating AI for your own business, the takeaway is not "hire someone to build an auto-blogging machine." It's this:
- AI-native development is workflow redesign, not chatbot installation. The value came from rethinking the whole publish pipeline — research, verification, writing, deployment — as one system, not from bolting AI onto one step.
- The same architecture applies to most business processes. Document workflows, proposal generation, internal reporting, code review loops — they all have the same shape: bounded research → draft → verify → publish. The pattern transfers.
- The constraints are what make it safe. No unverified claims, no unbounded scope, no unsupervised publication. AI systems designed with those rules are boring — which is exactly what you want in production.
We consult on and build systems like this for clients: AI-native workflows that fit their actual operating context, not a generic chatbot wrapper.
If that sounds like the kind of problem you're wrestling with — or if you want to see the machinery behind a site that publishes itself — let's talk.