Deploy a Blog-Writer Agent: The One That Wrote This Post
How Munder Difflin's blog is written by an automated writer agent in the hive — drafts in a worktree, single-committer integration, Eleventy build, human-gated deploy. Build your own.
The Munder Difflin blog is written by an
automated writer agent living in the hive. The loop: a writer agent drafts a post in an
isolated worktree from a topic brief + a house-style reference; the
GOD orchestrator integrates it as the single committer; Eleventy builds
blog/src/posts → docs/blog; and a human approves the deploy to
munderdiffl.in. The outcome is a steady, on-topic stream of posts — 85 and
counting — that compounds into real SEO. This post was written that way.
Here’s a fact that’s either a confession or a flex, depending on how you read it: the blog you’re reading is mostly written by one of our own agents. Not “AI-assisted.” Not “drafted then heavily rewritten.” A writer agent in the Munder Difflin hive takes a brief, drafts a full post, and hands it down a pipeline that ends — after one human nod — on the live site.
This very post is an instance of that system working. So let me do the most on-brand thing possible and use it as the worked example. Here’s how the blog-writer agent is automated, why the outcome compounds, and how to stand up your own.
The outcome first: so many blogs about us
Before the how, the why it matters. As of today there are 85 published posts in this blog. They’re not filler — they cluster into a real content strategy:
- 23 guides, 15 internals deep-dives, 13 concept explainers, 12 comparisons, and 8 orchestration posts.
- A small but pointed story set (5 posts), including why we built Munder Difflin and the v0.2.4 launch.
- A thought-leadership thread that does the heavy SEO lifting — the multi-agent cost playbook, compressing agent memory without losing the original, context engineering for AI agents, and more.
That’s the whole point of automating the writer: volume that stays on-topic compounds. Eighty-five internally-linked, keyword-targeted posts is a discoverability moat you cannot hand-write at a startup’s spare-time pace. When someone — or an AI answer engine — searches “single-committer git multi-agent” or “compressing agent memory,” there’s a post for that, and it links to five neighbors. The blog-writer agent is how a one-person project publishes like a content team.
And crucially: it’s largely hands-off. The expensive part of blogging isn’t typing — it’s the discipline to keep shipping. An agent has no problem with discipline.
The pipeline, end to end
The writer agent isn’t a magic monolith. It’s one role in a hive, and the post moves through the same machinery any work does. Four stages:
1. Draft — in an isolated worktree
The writer agent gets a brief (a topic + intent, usually straight from our SEO backlog) and a house-style reference: a handful of existing posts to mirror for voice, front-matter, and structure. It works in its own git worktree — a separate working directory so its in-progress draft never collides with anyone else’s files. (We wrote about why that isolation matters in git worktrees vs a hive.)
The agent reads the reference posts, counts what already exists, picks internal links to neighbors, writes
the front-matter (title, description, category, keywords, FAQ schema), and drafts ~1,000–1,400 words of
body. It self-checks against the style reference before handing off. The output is a single .md file in
blog/src/posts/ — filename becomes the URL slug.
2. Integrate — the orchestrator is the single committer
The writer never commits. It writes a plain file; the GOD orchestrator owns every commit. This is
the single-committer pattern — agents write files, one process
serializes all the git, so parallel agents never race on .git/index.lock and the repo stays a clean audit
log. The orchestrator picks up the finished draft, reviews routing, and commits it into the real tree.
3. Build — Eleventy turns markdown into a site
A static Eleventy build compiles blog/src/posts → docs/blog. Dropping one
markdown file is the entire authoring action: the build auto-adds the post to the index, its topic page,
each tag page, the sitemap, and the RSS feed — plus the SEO that’s already wired (canonical URLs, OpenGraph,
BlogPosting + FAQPage JSON-LD). No other file gets touched. That’s deliberate: the agent’s job is write
one file correctly, and the build does the rest.
4. Deploy — human-gated, on purpose
This is the one stage that is not automated, by design. The build output under docs/blog is served by
GitHub Pages at munderdiffl.in/blog. Before that goes live, a person reviews the diff and approves the
deploy. The orchestrator escalates exactly this kind of “publish to the world”
action to the human-approval queue rather than shipping it itself.
The split is the lesson: drafting and integration are autonomous; publishing is human-gated. You get the throughput of an agent and the safety of a final human read. Nobody wants a hallucinated claim on their front page — so that one gate stays manual while everything upstream runs hands-off.
Build your own blog-writer agent
You don’t need our exact stack. The pattern transfers to any static site or CMS. Here’s the recipe.
1. Give it a brief. One topic, the search intent, and the angle. Pull it from a keyword backlog so the agent is always writing something discoverable, not random.
2. Give it a house-style reference. This is the highest-leverage input. Point the agent at three to five of your best existing posts and tell it to mirror their front-matter, voice, length, and link density. A writer with a strong reference produces something publishable; a writer without one produces generic AI slop. Your style guide is just “be like these.”
3. Isolate the draft. Let the agent write in its own worktree (or branch, or scratch directory) so an in-flight draft can’t clobber live files. In Munder Difflin this is a per-agent Git isolation toggle.
4. Review before publish. Have a reviewer agent or your orchestrator check the draft against the brief, then put the deploy behind a human approval. Draft and integrate automatically; publish on a click.
5. Make it recurring. The real unlock is a scheduled mission: fire the writer on a cadence, feeding it the next backlog item each time. One prompt to the orchestrator stood up an hourly PR reviewer for us the same way — automation that just keeps running. Point that same scheduling at content and the blog writes itself on a timer.
The meta-point
A multi-agent hive isn’t only for code. Once you have a writer that drafts, an orchestrator that integrates and commits, a build that publishes, and one human gate, you have a content function — not a one-off prompt. The difference shows up as 85 posts instead of 1.
So consider this post Exhibit A. It was briefed, drafted in a worktree against a style reference, integrated single-committer, Eleventy-built, and human-approved to the domain — the exact loop it describes. The system is, quite literally, writing about itself.
FAQ
Did an AI really write this? Yes — drafted by a writer agent in the hive from a brief and a house-style reference, then human-reviewed before publish. That’s the whole pipeline this post documents.
Is it fully autonomous? Almost. Draft and integration are hands-off; publish is human-gated on purpose, so nothing reaches the live domain unread.
Does the volume actually help? It’s the point. On-topic, internally-linked posts compound into SEO and answer-engine reach you can’t hand-write at solo pace — 85 of them and climbing.
Munder Difflin runs a hive of Claude Code, Codex, and Antigravity agents on your own machine — with isolated worktrees, single-committer git, and a human-approval queue built in, so an agent can draft and integrate while you keep the one gate that matters. Download Munder Difflin to put a blog-writer (or any worker) on your floor; it’s free and open source.
FAQ
Did an AI actually write the Munder Difflin blog?
Yes — most of it. A writer agent in the hive drafts each post from a topic brief and a house-style reference, the GOD orchestrator integrates it as the single committer, Eleventy builds the markdown into the static site, and a human approves the final deploy to munderdiffl.in. This very post is an example of that pipeline running. At time of writing there are 85 published posts in the blog.
Is the blog-writer agent fully autonomous?
Almost — it's deliberately human-gated at one point: publish. The agent drafts and self-reviews against a style reference in an isolated worktree; the orchestrator integrates and builds; a person reviews the diff and approves the deploy. That keeps the volume high and hands-off without putting an unreviewed post on the live domain.
How do I build my own blog-writer agent?
Give one agent in the hive three things: a topic or brief, a house-style reference (a few of your best existing posts), and write access to an isolated worktree. Let it draft, have a reviewer agent or the orchestrator check it, then human-approve the build and deploy. Munder Difflin gives you the worktree isolation, single-committer git, and approval queue out of the box.
Why use a multi-agent hive instead of one prompt to write blog posts?
One prompt writes one post. A hive runs a content function: a writer drafts, a reviewer checks, the orchestrator integrates and builds, and a scheduled mission can fire the loop on a cadence — so you get a steady, compounding stream of on-topic posts rather than a single output you have to re-prompt for each time.