Dev.to AI πŸ€– Ai πŸ‘ 0 πŸ“– 4 min read

Field Notes from an Agent-Run Site #1: The Machine Ships. I Approve.

Originally published at mrsaynothing.dev. This site has published every single day for nineteen days, deployed itself, translated itself into eighteen languages, and measured its own traffic. I wrote none of the posts.

Field Notes from an Agent-Run Site #1: The Machine Ships. I Approve.

Originally published at mrsaynothing.dev.

This site has published every single day for nineteen days, deployed itself, translated itself into eighteen languages, and measured its own traffic. I wrote none of the posts. I approved the pipeline once, and I read the ledger. That is the whole job now β€” and the interesting part is not that it works. It is precisely where it breaks.

The machine doesn't need me to be impressive. It needs me to be reachable.

The crew

Nothing exotic runs this site. No fine-tuning, no vector database, no multi-agent theatre. Three scheduled jobs on one desktop box:

  1. The daily writer β€” mines autocomplete for real query language, checks it against a ledger of what already worked, writes to a strict contract (frontmatter schema, word counts, code that actually runs), then deploys.
  2. The ops layer β€” GitOps pull-deploys through CI and a registry, an IndexNow ping per post, cross-posting, and a translation pass across 18 locales.
  3. The watchers β€” job boards and founder forums, matched against a profile, piped to a phone within hours of a posting going up.

Cron plus written contracts. The contracts are the product; the model is a haircut you renew monthly.

Receipts, not vibes

Analytics went live on 17 September, so these are the first real numbers β€” verbatim from Rybbit, our self-hosted tracker:

$ jrybbit overview --days 7
metric          value
--------------  -----
visitors        146
sessions        188
pageviews       288
bounce_rate     79.8%
visit_duration  2m15s

Nineteen posts in nineteen days since the first one on running local models, zero missed slots, zero rollbacks. Google Search Console still holds 25 pages in "Discovered – currently not indexed" β€” the normal queue for a young domain, and a useful humility receipt: agents control the shipping, not the ranking.

And the feedback loop compounds. Yesterday's piece on RAM β€” the first non-tutorial on the site β€” did 69 views in 24 hours against a trailing median of 13 for tutorials. The ledger caught it, and the ledger decides what gets written next. No committee required.

The honest ledger: what actually broke

Four failures in nineteen days, all of them mine β€” none of them the model's:

  • Watched the wrong deploy. On day eleven an agent watched the newest CI run instead of the one it had just pushed, celebrated a green check from a stranger's commit, and shipped nothing. The fix is embarrassingly boring: select runs by the commit SHA you pushed. Write the rule down or re-learn it monthly.
  • A goal that counted zero. The blog-read conversion tracked **/blog/* β€” one star, one path segment β€” so every nested post path silently missed. Backfilling after the fix surfaced 94 real conversions that had been happening unmeasured. The site worked; the scoreboard lied.
  • The build that ate its own images. The static build script cleared the images directory on every run, so the first two post banners 404'd in production while looking perfect locally. Deleted the deletion, kept the assets per-locale.
  • Translation drift as policy risk. Eighteen locales multiplied any laziness by eighteen, so the rule became mechanical: whatever ships in English ships in all locales the same run, and a linter makes the gap unshippable rather than advisory.

An agent stack is a contract with a compiler. Every rule you leave unwritten is a future incident, and the incidents arrive on schedule.

Notice what all four have in common: the model did exactly what it was told. Every failure was a specification error by a human who was sure he'd been clear enough.


SSH Permission Denied (publickey): The Real Fix
mrsaynothing profile
Mr Say Nothing
Mr Say Nothing
Mr Say Nothing
Follow
Sep 18

SSH Permission Denied (publickey): The Real Fix

#ssh #linux #troubleshooting #devops
4 min read

The part nobody advertises

Draft-by-default is the load-bearing wall. Every outbound email, comment and campaign renders as a draft until a human passes one word. Zero embarrassing sends in nineteen days β€” not because the model writes carefully, but because the pipeline doesn't care how confident it sounds. Confidence without a send button is just prose.

The second unadvertised part: agents are better at following laws than people are. "Render everything, animate opacity only" ended a layout-shift problem that months of tweaking never did β€” because the agent treats a law as a law, not as a suggestion to revisit under deadline.

Your turn β€” and the next dispatch

Series question first, since this is #1: what should the next Field Notes cover? Candidates on the bench: the translation pipeline as a trust problem, what the analytics actually changed about topic choice, or the job watcher stack. Say the word and #2 writes itself β€” literally.

And the broader one: if a machine shipped your work daily and the ledger says it's outperforming your median, what exactly would you still be for?

More field notes at mrsaynothing.dev Β· code at GitHub Β· say hi: [email protected]

πŸ“° Read the original article on Dev.to AI

Originally published by Dev.to AI. Aggregated on AIWithGhost for educational purposes β€” full credit and traffic to the original publisher.