<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Michael Truong</title>
    <description>The latest articles on DEV Community by Michael Truong (@michaeltruong).</description>
    <link>https://dev.to/michaeltruong</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3965775%2F868d43f8-59c8-45ca-93f1-3f2428fb222d.jpg</url>
      <title>DEV Community: Michael Truong</title>
      <link>https://dev.to/michaeltruong</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/michaeltruong"/>
    <language>en</language>
    <item>
      <title>I fixed my AI reviewer. Then I kept solving the wrong problem</title>
      <dc:creator>Michael Truong</dc:creator>
      <pubDate>Wed, 08 Jul 2026 05:09:51 +0000</pubDate>
      <link>https://dev.to/michaeltruong/i-fixed-my-ai-reviewer-then-i-kept-solving-the-wrong-problem-58am</link>
      <guid>https://dev.to/michaeltruong/i-fixed-my-ai-reviewer-then-i-kept-solving-the-wrong-problem-58am</guid>
      <description>&lt;p&gt;I've been building an AI-assisted editorial pipeline for technical writing. Notion cards become markdown drafts in the repo, pass through review, then sync to dev.to.&lt;/p&gt;

&lt;p&gt;Last month I shipped a post about the first big fix to my &lt;strong&gt;editor-critique&lt;/strong&gt; reviewer skill: &lt;a href="https://dev.to/michaeltruong/the-ai-reviewer-scored-2325-and-missed-the-point-51mh"&gt;The AI reviewer scored 23/25 and missed the point&lt;/a&gt;. The problem was sequence. A score-first pass treated a polished rubric as the first lens and produced QA feedback when I needed editorial feedback. Reordering the skill so analysis precedes scoring fixed that.&lt;/p&gt;

&lt;p&gt;I assumed the next improvements would come from rubric tuning. Longer prompts. Another scoring dimension. Sharper checklists.&lt;/p&gt;

&lt;p&gt;That assumption was half right. The rubric still matters. But every useful fix after the baseline shared a different shape.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The pattern I kept missing&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;After I reordered analysis before scoring, reviewer failures kept arriving from different incidents. A critique that agreed with itself too easily. Drafts that grew every revision without getting shorter. A middle section that felt like a second article.&lt;/p&gt;

&lt;p&gt;Each time I reached for the same lever: expand the rubric, add a rule, lengthen the prompt.&lt;/p&gt;

&lt;h2&gt;
  
  
  Incident 1: When the reviewer needs to argue with itself
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;editor-critique&lt;/strong&gt; produced decisive scorecards and prioritized feedback, but the report rarely challenged its own conclusions. A draft could earn &lt;strong&gt;Ready to sync&lt;/strong&gt; with medium items left unexamined.&lt;/p&gt;

&lt;p&gt;Score-first review had failed because it judged too early. This failure was different: the primary critique could be thorough and still under-falsified.&lt;/p&gt;

&lt;p&gt;The fix was another staged pass. After the primary critique drafts, freeze it. Run adversarial review that assumes the primary assessment is wrong until draft-supported counter-evidence proves otherwise. Then synthesize: change the publication recommendation only when falsification is material.&lt;/p&gt;

&lt;p&gt;I added adversarial review, synthesis, and canonical report assembly as new skill steps. A follow-up pass tightened adversarial review with an anchor requirement: every counter-evidence bullet must name the frozen primary claim it challenges. No orphan hypotheticals like "title spoils thesis?" when the primary critique already praised title strategy.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Editorial read-through
→ Score
→ Critique
→ Post report
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;After:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Editorial read-through
→ Score
→ Primary critique
→ Adversarial review (frozen inputs)
→ Synthesis
→ Post report
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That was the first time staging a different kind of reasoning into its own pass beat rubric expansion. Two more failures would repeat the same shape before I stopped treating it as coincidence.&lt;/p&gt;

&lt;h2&gt;
  
  
  Incident 2: When critique only adds
&lt;/h2&gt;

&lt;p&gt;Self-falsification helped, but drafts were still growing. Investigation while critiquing &lt;a href="https://dev.to/michaeltruong/upgrades-dont-have-to-be-a-blind-trust-exercise-13mj"&gt;Upgrades don't have to be a blind trust exercise&lt;/a&gt; showed feedback was consistently additive, but not subtractive. &lt;strong&gt;editor-critique&lt;/strong&gt; found missing framing and evidence boundaries reliably. It did not ask what should be removed when new material arrived.&lt;/p&gt;

&lt;p&gt;The result was layered drafts: an opening stacked on another opening, the same four-step investigation loop restated in three sections, a mental-model diagram that walked through event flow the prose had already established in the previous section.&lt;/p&gt;

&lt;p&gt;The fix was not "be shorter" in the rubric. It was naming another cognitive job in the read-through: subtractive editing. Every paragraph should continue earning its place. Flag existing redundancy and addition-induced redundancy. Pair expansion recommendations with material that would become redundant if adopted.&lt;/p&gt;

&lt;p&gt;A companion technique, &lt;strong&gt;single-owner ideas&lt;/strong&gt;, lists 2–4 core ideas and flags when the same idea appears in multiple sections without new evidence. I codified subtractive editing in the skill file along with a test case that catches additive-only critique regressions and a lightweight subtractive pass in the human revision step.&lt;/p&gt;

&lt;p&gt;The primary critique still owns expansion. Subtractive editing is a separate observational pass, not a rewrite engine.&lt;/p&gt;

&lt;h2&gt;
  
  
  Incident 3: When a section becomes its own article
&lt;/h2&gt;

&lt;p&gt;The last failure pushed past critique mechanics into reader cognition. While critiquing draft variants in my editorial workflow, several middle-body sections were technically correct but felt wrong in context. In one draft, an implementation walkthrough interrupted the investigation arc. In another, a full section on validation tooling read like its own mini-article.&lt;/p&gt;

&lt;p&gt;The failure mode was narrow: a section stopped advancing the reader's current question and temporarily made another explanatory thread the center of gravity.&lt;/p&gt;

&lt;p&gt;Adding a rubric dimension for "section focus" would have been vague. What worked was an observational lens in the editorial read-through step: name the primary thread, name the secondary thread, decide whether to compress, delay, embed later, or leave as-is.&lt;/p&gt;

&lt;p&gt;I codified this as a &lt;strong&gt;Secondary explanatory thread&lt;/strong&gt; lens in the skill file. The rubric stayed the same. It simply added a named cognitive job: track whether prose is serving the reader's current question or drifting into a side article.&lt;/p&gt;

&lt;h2&gt;
  
  
  What stayed constant
&lt;/h2&gt;

&lt;p&gt;Three incidents, three skill changes, one pattern. Across all three, a few constraints held:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The five-dimension rubric stayed mostly intact.&lt;/li&gt;
&lt;li&gt;Read-only governance did not change: critique still does not write repo files or gate publish.&lt;/li&gt;
&lt;li&gt;Each pass added another observational lens, not another scoring dimension.&lt;/li&gt;
&lt;li&gt;The expensive part was naming the cognitive job precisely enough to operationalize in a skill file.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The recurring mistake was treating undifferentiated reasoning as one pass. Each fix changed the sequence, not the rubric weight. A capable reviewer can read before it scores and still under-read if falsifying primary judgment, displacing redundant prose, and tracking reader focus all compete in the same step.&lt;/p&gt;

&lt;h2&gt;
  
  
  Before you expand the rubric
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;List the failure modes&lt;/strong&gt; that survived your last sequence fix.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;For each one, name the cognitive job&lt;/strong&gt; that failed (self-falsification, subtractive editing, reader-focus tracking).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Stage that job as its own observational pass&lt;/strong&gt; with a frozen handoff to the next step.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Expand the rubric only if&lt;/strong&gt; that observational pass still misses failures in production.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Once &lt;strong&gt;editor-critique&lt;/strong&gt; understood before judging, the remaining improvements came from separating kinds of reasoning into distinct stages, not from a bigger rubric or a longer single pass. I suspect the pattern may generalize beyond editorial critique.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Takeaway:&lt;/strong&gt; When a reviewer skill plateaus after a sequence fix, ask which cognitive jobs are still sharing one undifferentiated pass. Stage them before you expand the rubric.&lt;/p&gt;




&lt;p&gt;If you'd like to see the project behind these workflow experiments, try &lt;a href="https://codenames-ai.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=my-ai-reviewer-improved-by-separating-kinds-of-reasoning-not-expanding-its-rubric&amp;amp;utm_content=footer" rel="noopener noreferrer"&gt;Codenames AI&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>workflow</category>
      <category>agents</category>
      <category>automation</category>
    </item>
    <item>
      <title>Upgrades don't have to be a blind trust exercise</title>
      <dc:creator>Michael Truong</dc:creator>
      <pubDate>Fri, 03 Jul 2026 09:02:30 +0000</pubDate>
      <link>https://dev.to/michaeltruong/upgrades-dont-have-to-be-a-blind-trust-exercise-13mj</link>
      <guid>https://dev.to/michaeltruong/upgrades-dont-have-to-be-a-blind-trust-exercise-13mj</guid>
      <description>&lt;p&gt;I've been building &lt;a href="https://codenames-ai.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=evidence-driven-dependency-upgrades&amp;amp;utm_content=intro" rel="noopener noreferrer"&gt;Codenames AI&lt;/a&gt; as a solo project I want to keep alive. Renovate helps dependency upgrades move without maintenance eventually crushing momentum.&lt;/p&gt;

&lt;p&gt;You don't need my exact setup to follow along.&lt;/p&gt;

&lt;p&gt;Every project accumulates maintenance work. Framework upgrades are one place that work stalls, not because engineers do not know how to migrate, but because proving what actually needs to change takes time. That tradeoff shows up on a hobby repo as "I'll look at this when I have an uninterrupted evening." It shows up in production as major versions piling up while investigation competes with feature work.&lt;/p&gt;

&lt;p&gt;That's the problem I was trying to solve.&lt;/p&gt;

&lt;p&gt;Before AI, my realistic choices were narrow: trust the automation and hope, spend hours mapping release notes to my codebase, or leave the upgrade sitting.&lt;/p&gt;

&lt;p&gt;I was not trying to invent a better review process.&lt;/p&gt;

&lt;p&gt;I was trying to keep maintenance cost below available time.&lt;/p&gt;

&lt;p&gt;AI changed the cost of investigation enough that I stopped treating it as something to postpone.&lt;/p&gt;

&lt;p&gt;When Renovate opened a pull request for one of those framework majors, upgrading Vite from &lt;code&gt;^6.0.11&lt;/code&gt; to &lt;code&gt;^8.0.0&lt;/code&gt; and &lt;code&gt;@vitejs/plugin-react&lt;/code&gt; from &lt;code&gt;^4.3.4&lt;/code&gt; to &lt;code&gt;^6.0.0&lt;/code&gt;, my first instinct was still to treat it like migration work. Read the guides. Find the breaking changes. Plan the code changes. Validate the app. Then merge.&lt;/p&gt;

&lt;p&gt;It was also the wrong starting assumption.&lt;/p&gt;

&lt;p&gt;The useful work was not implementing the migration. The useful work was proving whether a migration existed for this repo at all.&lt;/p&gt;

&lt;h2&gt;
  
  
  The review gate was right
&lt;/h2&gt;

&lt;p&gt;Renovate grouped the update as a frontend React/Vite major. My review policy sorts packages into low-risk and high-touch buckets: a patch-level bump to a type definition or a lint plugin can auto-merge, but anything that builds or serves the app (the bundler, the React plugin) is high-touch.&lt;/p&gt;

&lt;p&gt;Both Vite and &lt;code&gt;@vitejs/plugin-react&lt;/code&gt; sit in that high-touch bucket, so any version change routes to a human instead of auto-merge.&lt;/p&gt;

&lt;p&gt;The pull request looked serious on paper:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Vite 8 release notes included explicit breaking changes.&lt;/li&gt;
&lt;li&gt;The lockfile churn was large because Vite moved from the Rollup-centered dependency shape toward Rolldown packages.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The old workflow would have started with a migration plan. The evidence-first workflow started with a different goal:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Which documented breaking changes actually apply to this repository?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;CI showed the branch built; it did not show the breaking changes were irrelevant to this repository. I ran the PR through an AI-assisted review and used the four-step checklist below to audit the result. My job was not to re-derive every fact by hand; it was to decide whether the evidence was enough to merge.&lt;/p&gt;

&lt;h2&gt;
  
  
  Investigation before implementation
&lt;/h2&gt;

&lt;p&gt;The checklist covers four increasingly specific questions. For the Vite bump, the resulting evidence packet looked like this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Inspect the upstream change.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Both packages shipped documented breaking changes. The review used those notes to name possible failure modes, not to assume which ones touched this repo. Vite 8's release notes called out, for example, SSR pipeline shifts and stricter &lt;code&gt;import.meta.hot&lt;/code&gt; handling.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Map those changes to actual usage.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The packet reframed the question from "does Vite 8 have breaking changes?" to "does this app use the surfaces those changes break?" This repo has an ordinary Vite React setup with no custom SSR.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Identify custom risk.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The packet flagged one meaningful project-specific area: a small custom Vite plugin, &lt;code&gt;cssBeforeModuleScript&lt;/code&gt;, that hooks &lt;code&gt;transformIndexHtml&lt;/code&gt; to reorder the stylesheet and module-script tags. A bundler swap from Rollup to Rolldown could plausibly change that behavior, so this remained unresolved until the app was exercised.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Validate the app.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;CI's &lt;code&gt;test&lt;/code&gt; job had already been green; the packet still called for proof the custom-risk path and production build held. A ready Vercel preview closed that gap: it ran a production build through the new Vite with &lt;code&gt;cssBeforeModuleScript&lt;/code&gt; included, and the rendered page was where broken stylesheet or module-script ordering would have shown up.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;At that point, the recommendation changed.&lt;/p&gt;

&lt;p&gt;The packet had not found migration work. It had found enough evidence that no migration was required.&lt;/p&gt;

&lt;h2&gt;
  
  
  Evidence over migration plans
&lt;/h2&gt;

&lt;p&gt;The merged PR changed two files: &lt;code&gt;frontend/package.json&lt;/code&gt; and &lt;code&gt;package-lock.json&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;No source files. No Vite config rewrite. No component changes. No test rewrites. No custom shim.&lt;/p&gt;

&lt;p&gt;That is easy to misread as "the upgrade was trivial." It was not trivial. The pull request carried real risk signals. The absence of source changes only became meaningful after the investigation proved they did not require code changes.&lt;/p&gt;

&lt;p&gt;Implementation only belongs once the evidence asks for it. The human job shifts from "please migrate this dependency" to auditing whether the packet answers the four steps above.&lt;/p&gt;

&lt;h2&gt;
  
  
  What this changed about manual review
&lt;/h2&gt;

&lt;p&gt;Before this, "review manually" sounded like a parking lot. A major upgrade arrived, the automation refused to merge it, and the human picked it up later. Assembling the evidence packet by hand was often what stalled the review.&lt;/p&gt;

&lt;p&gt;Now I treat "review manually" as an evidence-gathering lane. AI makes that lane practical: much of the packet assembly no longer has to happen in one sitting at your keyboard. That's what changed the economics. Investigation stopped being the expensive part that made maintenance easy to postpone. On the Vite bump, AI helped assemble the evidence; I audited whether it was enough to merge without migration work.&lt;/p&gt;

&lt;p&gt;For low-risk patches the question stays simple: did CI pass and did the diff stay inside package files? For high-touch framework upgrades it gets richer: can the packet cover upstream changes, repo usage, custom risk, and real app validation well enough for a human to decide without first doing speculative migration work?&lt;/p&gt;

&lt;p&gt;That does not remove judgment or the merge decision. It moves both earlier: gather the packet first, then audit whether implementation is actually required.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd do on the next major upgrade
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Classify the package honestly.&lt;/strong&gt; Runtime and framework packages deserve more evidence than a patch-level dev tool bump.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Run the four-step loop above&lt;/strong&gt; against release notes, repo usage, custom risk, and real app validation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Treat zero source changes as a conclusion, not an assumption.&lt;/strong&gt; If no implementation is required, say what evidence proved that.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Takeaway:&lt;/strong&gt; When investigation is cheap enough to run, deferral stops being the default. Do the audit before you write the migration plan.&lt;/p&gt;




&lt;p&gt;If you'd like to see the project behind these workflow experiments, try &lt;a href="https://codenames-ai.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=evidence-driven-dependency-upgrades&amp;amp;utm_content=footer" rel="noopener noreferrer"&gt;Codenames AI&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>dependencies</category>
      <category>typescript</category>
    </item>
    <item>
      <title>The AI reviewer scored 23/25 and missed the point</title>
      <dc:creator>Michael Truong</dc:creator>
      <pubDate>Fri, 26 Jun 2026 15:14:45 +0000</pubDate>
      <link>https://dev.to/michaeltruong/the-ai-reviewer-scored-2325-and-missed-the-point-51mh</link>
      <guid>https://dev.to/michaeltruong/the-ai-reviewer-scored-2325-and-missed-the-point-51mh</guid>
      <description>&lt;p&gt;I've been building an AI-assisted editorial pipeline for my technical writing. Notion cards become markdown drafts in the repo, pass through review, then sync to dev.to.&lt;/p&gt;

&lt;p&gt;The motivation was simple: I already had a review loop I trusted for code. Open a PR, run Cursor's &lt;strong&gt;Bugbot&lt;/strong&gt; against a review guide, fix what mattered, merge. I wanted the same rhythm for writing: draft, critique, revise, publish. So I built my own AI review skill called &lt;strong&gt;editor-critique&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I had also started adding HTML comments inside drafts, much like code comments. They captured the editorial intent behind a section, including why it opened where it did and why evidence sat where it did, without becoming part of the published post.&lt;/p&gt;

&lt;p&gt;That made the review step look straightforward. Give the AI a rubric, score the draft, return prioritized feedback.&lt;/p&gt;

&lt;p&gt;If the rubric was good, I assumed the critique would be good.&lt;/p&gt;

&lt;p&gt;That assumption failed in a very specific way.&lt;/p&gt;

&lt;p&gt;The first version of &lt;strong&gt;editor-critique&lt;/strong&gt; did what I asked. It read a draft, applied five scoring dimensions, and produced a polished report. While reviewing my article, &lt;a href="https://dev.to/michaeltruong/the-agent-plan-had-every-step-except-where-to-stop-357h"&gt;"The agent plan had every step except where to stop"&lt;/a&gt;, it scored the piece &lt;strong&gt;23/25&lt;/strong&gt; and mostly suggested polish.&lt;/p&gt;

&lt;p&gt;It also missed the feedback I actually needed.&lt;/p&gt;

&lt;h2&gt;
  
  
  Valid rubric, shallow read
&lt;/h2&gt;

&lt;p&gt;The draft did not need another pass on commas and section labels. It needed a colder editorial read.&lt;/p&gt;

&lt;p&gt;A useful reviewer should have asked:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Does the title reveal the lesson before the incident earns it?&lt;/li&gt;
&lt;li&gt;Does the article assume private repo context a dev.to reader will not have?&lt;/li&gt;
&lt;li&gt;Are links to PRs, plans, and standards supporting evidence, or required reading?&lt;/li&gt;
&lt;li&gt;Is governance framing outrunning what the incident actually proved?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Those are reader-journey questions, not formatting checks.&lt;/p&gt;

&lt;p&gt;The score-first reviewer treated the rubric as the first lens. If the thesis was present, evidence was named, and the arc looked complete, the draft read as ready. The rubric turned critique into publication preflight: complete sections, reasonable voice, no obvious holes.&lt;/p&gt;

&lt;p&gt;Useful, but not enough.&lt;/p&gt;

&lt;h2&gt;
  
  
  What changed in the sequence
&lt;/h2&gt;

&lt;p&gt;I revised the reviewer skill so analysis precedes scoring.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Load draft
→ Score rubric dimensions
→ Generate critique
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;After:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Load draft
→ Editorial read-through
→ Score rubric dimensions
→ Generate critique
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The rubric stayed. It stopped being the opening move.&lt;/p&gt;

&lt;p&gt;Before scoring, the reviewer now reads visible prose like a cold dev.to audience member. It mentally strips author notes and asks whether the lesson still works if repo links and hidden rationale disappeared. Then it checks thesis timing, audience assumptions, reference framing, and speculation drift.&lt;/p&gt;

&lt;p&gt;The annotation loop mattered here. Because the comments sat beside the sections they explained, critique could compare intent against effect: the note described what the section was trying to do, while the reader-facing paragraph showed whether it actually did it. Sometimes the article needed the edit. Sometimes the annotation exposed that &lt;strong&gt;editor-critique&lt;/strong&gt; itself was reading the section too mechanically. Either way, the disagreement became useful training material for the reviewer skill.&lt;/p&gt;

&lt;p&gt;Only after that read does it assign scores.&lt;/p&gt;

&lt;p&gt;The output became more editorial. Instead of asking only "does this draft satisfy the rubric?", it started asking "what will break for the reader?"&lt;/p&gt;

&lt;p&gt;On the same article, the revised reviewer surfaced title spoiling the lesson, private PR assumptions, weak framing for repo artifacts, and governance language potentially ahead of the evidence. The &lt;strong&gt;23/25&lt;/strong&gt; pass had treated those as minor or invisible.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why order beat rubric tuning
&lt;/h2&gt;

&lt;p&gt;A rubric compresses judgment into categories: thesis, structure, evidence, voice, readiness. That compression helps consistency.&lt;/p&gt;

&lt;p&gt;Compression too early can hide the problem.&lt;/p&gt;

&lt;p&gt;Once the reviewer committed to a numerical assessment, the rest of the report tended to justify that assessment. A &lt;strong&gt;23/25&lt;/strong&gt; draft needed &lt;strong&gt;23/25&lt;/strong&gt; feedback, so the model organized its reasoning around why the piece was mostly ready instead of independently discovering what a reader would struggle with.&lt;/p&gt;

&lt;p&gt;It is a little like running a linter before reading a design doc. The linter can confirm imports and formatting are clean. It cannot tell you whether the design makes sense. Start with the linter and the document can feel more complete than it is.&lt;/p&gt;

&lt;p&gt;That is what happened here. The rubric was not bad. It was premature.&lt;/p&gt;

&lt;p&gt;Once analysis came first, the same categories became more honest. "Evidence and specificity" could include link-only dependence. "Thesis and opening" could include title spoiling the lesson. "Publish readiness" could include whether prose survives without private repo access.&lt;/p&gt;

&lt;p&gt;The score became a summary of the read-through, not a substitute for it.&lt;/p&gt;

&lt;h2&gt;
  
  
  QA review vs editorial review
&lt;/h2&gt;

&lt;p&gt;The revision made me distinguish two kinds of AI review.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;QA review asks:&lt;/strong&gt; Did the artifact satisfy the stated criteria?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Editorial review asks:&lt;/strong&gt; What will the reader misunderstand, miss, or not believe?&lt;/p&gt;

&lt;p&gt;This was not completely new to me. In code review, I already used different Bugbot guides depending on what I wanted it to optimize for: security, game-state changes, UX regressions, or plan intent. The same diff could be reviewed through different lenses.&lt;/p&gt;

&lt;p&gt;Writing turned out to have the same property as code review. A QA reviewer checks completeness and publishing criteria. An editorial reviewer reads for audience confusion and belief. The artifact stayed the same. The review lens changed.&lt;/p&gt;

&lt;p&gt;Both matter. Broken frontmatter, missing sections, or absent takeaways still need QA. But if the reviewer starts and ends there, it can produce a confident report that never engages the reader's path through the article.&lt;/p&gt;

&lt;p&gt;The first reviewer was not useless. It was doing QA under the name of critique.&lt;/p&gt;

&lt;p&gt;The revised reviewer still scores, but it has to earn the score by reading first.&lt;/p&gt;

&lt;p&gt;That sequencing shift moved output from "this article is mostly ready" toward "this article assumes too much context, reveals its lesson too early, and needs stronger in-narrative evidence before the governance argument about where an agent should stop lands."&lt;/p&gt;

&lt;p&gt;That is the feedback I needed.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd do on the next reviewer
&lt;/h2&gt;

&lt;p&gt;For the next AI reviewer I build, I would design sequence before I tune rubric dimensions.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Start with an ungated read.&lt;/strong&gt; Inspect audience, intent, risk, and evidence before scoring thresholds appear.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Make the rubric summarize the analysis.&lt;/strong&gt; Scores should cite read-through observations, not invent them after the fact.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Separate checklist pass from judgment pass.&lt;/strong&gt; "Is it complete?" and "is it good?" are different questions.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Force reader-impact language.&lt;/strong&gt; Critique items should say what breaks for the reader, not only which rule was violated.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Let scores come last.&lt;/strong&gt; Once a number appears, everything organizes around it.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is not only about writing. I suspect the same pattern may apply to PR review, architecture review, incident analysis, and evaluation reports: if a reviewer scores before it understands, it overfits to the rubric and under-reads the situation.&lt;/p&gt;

&lt;p&gt;The shape feels portable. Evaluation criteria are not enough. The order in which a reviewer thinks changes what it notices.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Takeaway:&lt;/strong&gt; If your AI reviewer keeps producing technically correct but shallow feedback, do not only rewrite the rubric. Move analysis before scoring.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Editor's note (July 2026)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This article documents the first major architectural change to &lt;strong&gt;editor-critique&lt;/strong&gt;: separating analysis from scoring. That sequence change held up, but it also exposed a new class of reviewer failures that couldn't be solved through rubric expansion alone. The follow-up, &lt;a href="https://dev.to/michaeltruong/i-fixed-my-ai-reviewer-then-i-kept-solving-the-wrong-problem-58am"&gt;I fixed my AI reviewer. Then I kept solving the wrong problem&lt;/a&gt;, explores that next stage.&lt;/p&gt;




&lt;p&gt;If you'd like to see the project behind these workflow experiments, try &lt;a href="https://codenames-ai.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=reviewers-analysis-before-scoring&amp;amp;utm_content=footer" rel="noopener noreferrer"&gt;Codenames AI&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>workflow</category>
    </item>
    <item>
      <title>The agent plan had every step except where to stop</title>
      <dc:creator>Michael Truong</dc:creator>
      <pubDate>Fri, 19 Jun 2026 06:29:47 +0000</pubDate>
      <link>https://dev.to/michaeltruong/the-agent-plan-had-every-step-except-where-to-stop-357h</link>
      <guid>https://dev.to/michaeltruong/the-agent-plan-had-every-step-except-where-to-stop-357h</guid>
      <description>&lt;p&gt;I've been running multi-slice agent plans in the &lt;a href="https://codenames-ai.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=agent-plans-authority-handoffs&amp;amp;utm_content=intro" rel="noopener noreferrer"&gt;Codenames AI&lt;/a&gt; repo — Renovate migrations, content-pipeline skills, dependency upgrades. I split multi-PR work into &lt;strong&gt;slices&lt;/strong&gt; (usually one pull request each), each backed by a markdown file with file paths, verification commands, and merge-safe acceptance criteria.&lt;/p&gt;

&lt;p&gt;You do not need Cursor to recognize the shape: any agent workflow that can open branches, push commits, or merge PRs from a written plan has the same gap. In my setup I paste each slice into a fresh agent chat as a delegation prompt — not a ticket summary, but executable instructions — and start a new chat when that PR is ready.&lt;/p&gt;

&lt;p&gt;I assumed the checklist was enough. The plan described &lt;em&gt;what&lt;/em&gt; to build. I treated &lt;em&gt;how far the agent could go&lt;/em&gt; as implicit.&lt;/p&gt;

&lt;p&gt;Then an agent merged a pull request I expected to review first.&lt;/p&gt;

&lt;h2&gt;
  
  
  The merge that reframed planning
&lt;/h2&gt;

&lt;p&gt;The trigger was mundane. During the first slice of a Renovate migration, an agent regrouped dependency buckets in &lt;code&gt;renovate.json&lt;/code&gt; — config-only, no version bumps, no runtime behavior. It ran lint and typecheck, opened the pull request, and merged it.&lt;/p&gt;

&lt;p&gt;The change itself was reasonable. Config-only &lt;code&gt;renovate.json&lt;/code&gt; regrouping is exactly the kind of slice you'd want off your plate.&lt;/p&gt;

&lt;p&gt;What surprised me was the &lt;em&gt;absence of a documented stop line&lt;/em&gt;. The migration plan described the edit, the verification commands, and the acceptance criteria. It did not say whether the executing agent should stop at "open PR" or continue to "merge after green checks." The plan was an implementation spec. The agent treated it as permission to finish the job.&lt;/p&gt;

&lt;h2&gt;
  
  
  Implementation specs vs authority handoffs
&lt;/h2&gt;

&lt;p&gt;Traditional engineering plans answer: &lt;strong&gt;what work should happen, in what order, with what verification?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Agent plans increasingly need a second answer: &lt;strong&gt;how much autonomy does the next actor get?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Those questions diverge the moment an agent can take repository actions — create branches, push commits, open pull requests, merge — instead of only recommending diffs in chat.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Question&lt;/th&gt;
&lt;th&gt;Implementation plan&lt;/th&gt;
&lt;th&gt;Authority handoff&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;What to change&lt;/td&gt;
&lt;td&gt;File paths, diffs, acceptance&lt;/td&gt;
&lt;td&gt;Same&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to verify&lt;/td&gt;
&lt;td&gt;Commands, CI checks&lt;/td&gt;
&lt;td&gt;Same&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Where to stop&lt;/td&gt;
&lt;td&gt;Often implicit ("human reviews")&lt;/td&gt;
&lt;td&gt;Must be explicit&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Who enforces limits&lt;/td&gt;
&lt;td&gt;Code review habit&lt;/td&gt;
&lt;td&gt;Plan recommendation + branch protection&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;A human teammate might read "prepare this for review" and stop. An agent reads a completed checklist and reasonably asks: "Verification passed — what's left?"&lt;/p&gt;

&lt;h2&gt;
  
  
  The first response wasn't the plan
&lt;/h2&gt;

&lt;p&gt;My first reaction was not to rewrite the migration plan. It was to tighten the repository boundary.&lt;/p&gt;

&lt;p&gt;Branch protection became the safety layer GitHub enforced when the plan stayed silent — required CI checks on &lt;code&gt;main&lt;/code&gt;, review rules, merge gates — infrastructure answering "may this land on &lt;code&gt;main&lt;/code&gt;?" regardless of what the agent thought the plan implied.&lt;/p&gt;

&lt;p&gt;That helped. It also surfaced the next question: if branch protection is the final gate, what should the &lt;em&gt;plan&lt;/em&gt; say about intent before the gate?&lt;/p&gt;

&lt;p&gt;Repository guardrails and plan language solve different problems. Branch protection is authoritative — if merge is blocked, the agent stops. But protection alone does not tell the agent whether &lt;em&gt;this slice&lt;/em&gt; was supposed to end at an open PR or proceed to merge. You still need the handoff to be legible before someone reviews the diff.&lt;/p&gt;

&lt;h2&gt;
  
  
  Making execution authority explicit
&lt;/h2&gt;

&lt;p&gt;The follow-up was documentation, not a ban on agent merges.&lt;/p&gt;

&lt;p&gt;The portable fix: every slice names exactly how far the executor may go before any implementation detail. We use two levels:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Level&lt;/th&gt;
&lt;th&gt;Label&lt;/th&gt;
&lt;th&gt;Agent instruction&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Default&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Open PR only&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Do not merge. Stop after opening the PR.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Elevated&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Merge granted&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;You may merge after documented verification passes.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Default is &lt;strong&gt;Open PR only&lt;/strong&gt;. &lt;strong&gt;Merge granted&lt;/strong&gt; requires explicit rationale — config-only changes, docs-only closure PRs, isolated tooling with green CI. Branch protection remains the final gate even when merge is recommended.&lt;/p&gt;

&lt;p&gt;Each slice also states &lt;strong&gt;Rationale&lt;/strong&gt; (why this level fits) and copies the &lt;strong&gt;Agent instruction&lt;/strong&gt; verbatim into the prompt so a fresh chat is self-contained. A plan-level summary table at the top lets you scan a multi-PR plan and see where merge is elevated before you read file paths.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Handoff model:&lt;/strong&gt; On that slice, the checklist implied edit, verify, and open PR; nothing stated whether merge was in scope, so the agent treated verification success as permission to finish. The chain we wanted spelled out: plan recommends authority → human accepts by executing the plan → agent follows the recommendation → branch protection enforces the final boundary.&lt;/p&gt;

&lt;p&gt;In our private repo, a follow-up docs change codified this as &lt;strong&gt;Recommended execution authority&lt;/strong&gt; in our planning standards and plan template — motivated directly by the regrouping merge. You do not need those files to apply the pattern; you need the label on every slice before the agent reads the checklist.&lt;/p&gt;

&lt;p&gt;The Renovate migration's first slice is the motivating example: config-only grouping where merge &lt;em&gt;can&lt;/em&gt; be reasonable — if the plan says so out loud.&lt;/p&gt;

&lt;h2&gt;
  
  
  What changed on the next slice
&lt;/h2&gt;

&lt;p&gt;The Renovate migration's second slice was the first prompt I rewrote with authority at the top: &lt;strong&gt;Open PR only&lt;/strong&gt;, a one-line rationale ("runtime-adjacent dependency bumps need human review"), and an imperative agent instruction copied verbatim into the chat. The regrouping slice would have been legible with the same block — either &lt;strong&gt;Merge granted&lt;/strong&gt; with rationale for config-only regrouping, or explicitly &lt;strong&gt;Open PR only&lt;/strong&gt;; silence defaulted to "finish the job."&lt;/p&gt;

&lt;p&gt;I am not arguing for autonomous merge bots on every repo. The lesson is narrower: &lt;strong&gt;once agents act, plans delegate autonomy whether you write that down or not.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Human delegation has always been fuzzy — "take a pass at this" means different things to different people. Agent delegation punishes ambiguity faster because the agent will complete every step it can justify from the text in front of it.&lt;/p&gt;

&lt;p&gt;The plan becomes the contract between author and executor. Implementation steps say what to build. Authority steps say how far to carry it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why not just forbid agent merges?
&lt;/h2&gt;

&lt;p&gt;Fair pushback. If unexpected merges are the risk, disable merge capability and be done.&lt;/p&gt;

&lt;p&gt;That misses what actually happened on the regrouping merge. The merge was not reckless — it was a config-only change with local verification and CI checks. Forbidding all agent merges would have blocked a useful outcome and pushed the work back to manual toil.&lt;/p&gt;

&lt;p&gt;The interesting conclusion is not "agents should never merge." It is &lt;strong&gt;"agents need explicit authority boundaries."&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Sometimes the right recommendation is &lt;strong&gt;Open PR only&lt;/strong&gt; — runtime migrations, sensitive paths, slices that need human judgment before landing. Sometimes &lt;strong&gt;Merge granted&lt;/strong&gt; is appropriate — docs-only closure, config-only regrouping, low-risk tooling with clear verification. The plan author chooses per slice. The agent follows the label. Branch protection catches mistakes either way.&lt;/p&gt;

&lt;p&gt;Without the label, the agent invents its own stopping point from task completion heuristics. That is how you get surprised by a merge that was, by some readings, the correct next step.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd do on the next agent plan
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Default every slice to Open PR only&lt;/strong&gt; unless I can defend merge with rationale and verification.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Put authority at the top of each slice&lt;/strong&gt; — recommended level, rationale, imperative agent instruction — not buried after acceptance criteria.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mirror authority in the plan-level summary table&lt;/strong&gt; so scanning a multi-PR plan shows where elevation happens.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Treat branch protection as enforcement, not specification&lt;/strong&gt; — it blocks bad merges; it does not replace telling the agent where to stop.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Re-read the plan as a handoff&lt;/strong&gt;, not a spec: if I pasted this into a fresh agent chat, would "stop after PR" vs "merge after green CI" be unambiguous?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Prompt engineering still matters for implementation quality. It does not substitute for stating how much autonomy you are delegating when the executor can act on the repo.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Takeaway:&lt;/strong&gt; When agents can merge, push, and open PRs, a plan that only describes &lt;em&gt;what&lt;/em&gt; to build is incomplete. You are handing off work &lt;em&gt;and&lt;/em&gt; authority — write both down, or the agent will infer the second from the first.&lt;/p&gt;




&lt;p&gt;If you'd like to see the project that inspired these lessons, you can try &lt;a href="https://codenames-ai.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=agent-plans-authority-handoffs&amp;amp;utm_content=footer" rel="noopener noreferrer"&gt;Codenames AI&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>automation</category>
      <category>programming</category>
      <category>governance</category>
    </item>
    <item>
      <title>One good example beat every AI writing rule I wrote</title>
      <dc:creator>Michael Truong</dc:creator>
      <pubDate>Fri, 12 Jun 2026 07:38:06 +0000</pubDate>
      <link>https://dev.to/michaeltruong/one-good-example-beat-every-ai-writing-rule-i-wrote-7oo</link>
      <guid>https://dev.to/michaeltruong/one-good-example-beat-every-ai-writing-rule-i-wrote-7oo</guid>
      <description>&lt;p&gt;I've been building an AI-assisted content pipeline around &lt;a href="https://codenames-ai.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=one-example-beats-style-guide&amp;amp;utm_content=intro" rel="noopener noreferrer"&gt;Codenames AI&lt;/a&gt; — field reports from the repo, drafted in markdown, synced to dev.to. The part I assumed would be hard was publish automation. The part that actually burned time was teaching the model how to &lt;em&gt;sound&lt;/em&gt; like me.&lt;/p&gt;

&lt;h2&gt;
  
  
  The experiment
&lt;/h2&gt;

&lt;p&gt;I started where most people start: the prompt. I wrote a Cursor rule with tone guidance, pacing notes, section shapes, and a list of things to avoid. If the draft felt flat, add another paragraph to the rule. If it over-corrected, tighten the rule. Iterate until the voice stabilizes.&lt;/p&gt;

&lt;p&gt;That felt like the correct lever.&lt;/p&gt;

&lt;p&gt;I assumed a longer, more detailed AI writing rule would produce better drafts. Voice felt like something you could specify in prose: a style encyclopedia with tone, pacing, and guardrails.&lt;/p&gt;

&lt;h2&gt;
  
  
  The failure loop
&lt;/h2&gt;

&lt;p&gt;Each revision made the output worse in a &lt;em&gt;different&lt;/em&gt; way.&lt;/p&gt;

&lt;p&gt;The cycle was predictable: generate a draft, dislike the tone, add rules, get over-correction, revert partway, add different rules, hit a new failure mode. Some passes sounded like generic engineering docs: correct, but missing the observations that made the article worth reading. Others had no concrete details. Others followed every instruction and lost personality entirely.&lt;/p&gt;

&lt;p&gt;The rule file kept growing. The drafts kept rotating through new ways to miss the mark.&lt;/p&gt;

&lt;h2&gt;
  
  
  The accidental discovery
&lt;/h2&gt;

&lt;p&gt;The useful move, in hindsight, was deleting most of the rules.&lt;/p&gt;

&lt;p&gt;I replaced the checklist with one shipped article: &lt;a href="https://dev.to/michaeltruong/schema-first-prompt-second-valid-json-wasnt-enough-3nhm"&gt;Schema first, prompt second: valid JSON wasn't enough&lt;/a&gt;. That post already had the shape I wanted — field report, wrong assumption up front, specific failures, tradeoffs, a single takeaway.&lt;/p&gt;

&lt;p&gt;The Cursor rule shrank to a pointer: read the example, match the example.&lt;/p&gt;

&lt;p&gt;"Write more like this article" beat "be direct, avoid metaphors, use short paragraphs, include a takeaway."&lt;/p&gt;

&lt;p&gt;Drafts stopped sounding like engineering documentation. They started carrying the observations and pacing of a field report instead of a rule checklist.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why the example transferred better
&lt;/h2&gt;

&lt;p&gt;Rules describe voice from the outside. An example demonstrates it.&lt;/p&gt;

&lt;p&gt;For long-form writing, an exemplar turned out to be closer to a spec than a style encyclopedia. Rule text and example text fail differently — a checklist compresses badly; an example carries decisions that are hard to encode as rules: pacing, level of detail, how much context to provide, and when to introduce examples.&lt;/p&gt;

&lt;p&gt;When I asked for "direct engineer-to-engineer tone," the model complied literally and stripped the texture that makes a post readable. When I pointed at a finished article, it copied structural choices I hadn't thought to name: opening with context and a wrong assumption, using bold labels for contrast, ending sections with a concrete mistake instead of a principle.&lt;/p&gt;

&lt;p&gt;The interesting part wasn't that the example contained better instructions. It contained decisions I didn't know how to describe.&lt;/p&gt;

&lt;p&gt;I could recognize those choices when I saw them. I just wasn't very good at encoding them as rules.&lt;/p&gt;

&lt;h2&gt;
  
  
  What changed
&lt;/h2&gt;

&lt;p&gt;Git history tells the story cleanly: the checklist-era rule peaked at &lt;strong&gt;69 lines&lt;/strong&gt;; the example-pointer rule landed at &lt;strong&gt;23 lines&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;After the switch, I spent less time fighting over-compliance and stripping generic phrasing. Voice became more consistent across drafts because the target was an article, not a growing instruction list.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Maintenance lesson:&lt;/strong&gt; At 69 lines, the rule had enough instructions to contradict itself. A single canonical example stays honest. If the next post should sound different, update the example or add a second one for a new format. The rule stays an import statement.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tradeoff:&lt;/strong&gt; One example encodes one format. Field reports work; a tutorial or release note might need a second exemplar later.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tradeoff:&lt;/strong&gt; Examples can go stale. If the canonical post ages badly, future drafts inherit the wrong target. Treat the example like code you refactor, not like documentation you forget.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I'd do differently next time:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Ship one article I'm proud of before investing in voice rules.&lt;/li&gt;
&lt;li&gt;Point agents at that article.&lt;/li&gt;
&lt;li&gt;Keep the Cursor rule as workflow plus a link, not a paraphrase of the example.&lt;/li&gt;
&lt;li&gt;Add rules only for things examples can't carry: where files live, what not to paste into Notion, publish steps.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Prompt engineering still matters for facts, structure, and evidence gathering. For &lt;em&gt;tone&lt;/em&gt; on long-form posts, though, one good example beat every style guide I wrote.&lt;/p&gt;

&lt;h2&gt;
  
  
  Takeaway
&lt;/h2&gt;

&lt;p&gt;If your AI writing rules keep growing and the drafts keep getting worse, stop adding rules. Find an article that already sounds right and make that the spec.&lt;/p&gt;




&lt;p&gt;If you'd like to see the project behind these posts, try &lt;a href="https://codenames-ai.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=one-example-beats-style-guide&amp;amp;utm_content=footer" rel="noopener noreferrer"&gt;Codenames AI&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>ai</category>
    </item>
    <item>
      <title>Schema first, prompt second: valid JSON wasn't enough</title>
      <dc:creator>Michael Truong</dc:creator>
      <pubDate>Thu, 04 Jun 2026 05:27:30 +0000</pubDate>
      <link>https://dev.to/michaeltruong/schema-first-prompt-second-valid-json-wasnt-enough-3nhm</link>
      <guid>https://dev.to/michaeltruong/schema-first-prompt-second-valid-json-wasnt-enough-3nhm</guid>
      <description>&lt;p&gt;Over the last month I've been building &lt;a href="https://codenames-ai.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=schema-first-valid-json-wasnt-enough&amp;amp;utm_content=intro" rel="noopener noreferrer"&gt;Codenames AI&lt;/a&gt;, a small web game where an LLM plays Codenames with you. The guesser never sees unrevealed card identities. The server sends the board state and a clue; the model returns structured guesses with confidence scores and short explanations.&lt;/p&gt;

&lt;p&gt;When I started, I assumed the hard part was prompting. I was half right. Getting &lt;em&gt;something&lt;/em&gt; reasonable out of the model was fast. Making the system safe to expose to players was not.&lt;/p&gt;

&lt;p&gt;My first milestone felt responsible: &lt;code&gt;response_format: { type: "json_object" }&lt;/code&gt; on the chat completion, plus Zod schemas for the response body. If the JSON didn't parse or failed Zod, retry. Ship it.&lt;/p&gt;

&lt;p&gt;Then I watched the model comply perfectly with the schema and still propose moves that would ruin a game.&lt;/p&gt;

&lt;h2&gt;
  
  
  Valid JSON, invalid game
&lt;/h2&gt;

&lt;p&gt;Here's the distinction that mattered.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;JSON schema (via Zod) answers:&lt;/strong&gt; Did the model return the keys and types I asked for?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Domain validation answers:&lt;/strong&gt; Is this output allowed on &lt;em&gt;this&lt;/em&gt; board, for &lt;em&gt;this&lt;/em&gt; clue, under &lt;em&gt;these&lt;/em&gt; rules?&lt;/p&gt;

&lt;p&gt;Those are not the same questions.&lt;/p&gt;

&lt;p&gt;Three examples I hit while testing and running the game:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. The model echoed the clue as a guess.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Codenames forbids guessing the clue word. The model would sometimes put it in &lt;code&gt;guesses[]&lt;/code&gt; anyway—confidently, with a tidy explanation object. Zod was thrilled. The game was not.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. The model hallucinated words that weren't on the board.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Perfect JSON. A guess list full of words that don't exist on the 25-card grid, or that were already revealed. Again, schema-valid.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. The spymaster returned illegal clues.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Single-word clues can't match a codename, can't be a substring of one (or vice versa), and can't be near-miss spellings. The model regularly suggested clues that a human referee would reject. Valid JSON every time.&lt;/p&gt;

&lt;p&gt;I spent too long fixing these by adding sentences to the system prompt. That helped a little. It did not help enough.&lt;/p&gt;

&lt;h2&gt;
  
  
  What actually moved reliability
&lt;/h2&gt;

&lt;p&gt;The bigger wins came from code paths I treated as boring infrastructure.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Sanitization before trust.&lt;/strong&gt; After Zod parses the guess payload, we strip clue echoes, off-board words, revealed cards, and duplicates, then realign the explanation array with whatever survived. The model can return whatever explanation it wants; the server decides which guesses survive validation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Deterministic validators with explicit error strings.&lt;/strong&gt; Clue validation returns things like "Clue cannot be a substring of a board word"—not "invalid." Those strings go back into the next attempt as &lt;code&gt;rejectionFeedback&lt;/code&gt;, alongside an exclude list of clue words that already failed, so the next attempt could avoid repeating the same violations.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Post-processing for uncertainty.&lt;/strong&gt; Even valid guesses get filtered by a confidence threshold before the client plays them. If nothing clears the bar, the API returns an empty guess list—the AI Guesser passes the turn rather than firing a weak pick. That's a product decision, but it only works because the earlier layers stopped nonsense from masquerading as success.&lt;/p&gt;

&lt;p&gt;None of this required readers to know Codenames. It's the same shape as any LLM feature with invariants: inventory counts that can't go negative, user IDs that must exist, action enums that must match state machines.&lt;/p&gt;

&lt;h2&gt;
  
  
  Mistakes, surprises and tradeoffs
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Mistake:&lt;/strong&gt; Treating structured output as the guardrail. It only enforced shape.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Surprise:&lt;/strong&gt; Sanitization outperformed prompt engineering for the dumbest failures (echoed clue, off-board tokens). Cheap deterministic filters beat another paragraph of "IMPORTANT RULES."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Surprise:&lt;/strong&gt; Retry feedback with the &lt;em&gt;reason&lt;/em&gt; a clue failed worked better than "try again." The model stopped repeating substring violations faster when the server named the violation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tradeoff:&lt;/strong&gt; Retries burn tokens. Logging validation errors per attempt was essential to know whether we had a prompt problem or a missing rule.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tradeoff:&lt;/strong&gt; Sanitization can mask drift. If you silently drop bad guesses, monitor what you're dropping or you'll quietly turn the validator into the thing making all the decisions.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd do on the next project
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Define the wire shape (JSON + schema).&lt;/li&gt;
&lt;li&gt;List domain invariants as pure functions with test cases&lt;/li&gt;
&lt;li&gt;Add sanitization for the failure modes observed in the first 50 live calls.&lt;/li&gt;
&lt;li&gt;Only then invest in prompt nuance—and feed validator messages into retries.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Prompt engineering still matters for quality. It is not a substitute for enforcement when the user can lose a game—or money, or data—because the model followed the JSON spec and ignored reality.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Takeaway:&lt;/strong&gt; If your LLM integration stops at "parse JSON, call it a day," you haven't finished the feature. You've finished the demo.&lt;/p&gt;




&lt;p&gt;If you'd like to see the project that inspired these lessons, you can try &lt;a href="https://codenames-ai.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=schema-first-valid-json-wasnt-enough&amp;amp;utm_content=footer" rel="noopener noreferrer"&gt;Codenames AI&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>typescript</category>
      <category>node</category>
    </item>
  </channel>
</rss>
