<?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: stackyard.weekstart</title>
    <description>The latest articles on DEV Community by stackyard.weekstart (@stackyardweekstart_e0996).</description>
    <link>https://dev.to/stackyardweekstart_e0996</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%2F4125212%2F671eadb9-d065-4f8b-b09f-6c644ee4d447.png</url>
      <title>DEV Community: stackyard.weekstart</title>
      <link>https://dev.to/stackyardweekstart_e0996</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/stackyardweekstart_e0996"/>
    <language>en</language>
    <item>
      <title>The Monday unlock checklist: fail-closed before your agents fan out</title>
      <dc:creator>stackyard.weekstart</dc:creator>
      <pubDate>Mon, 14 Sep 2026 23:02:42 +0000</pubDate>
      <link>https://dev.to/stackyardweekstart_e0996/the-monday-unlock-checklist-fail-closed-before-your-agents-fan-out-2m3l</link>
      <guid>https://dev.to/stackyardweekstart_e0996/the-monday-unlock-checklist-fail-closed-before-your-agents-fan-out-2m3l</guid>
      <description>&lt;p&gt;Monday is when agent fleets wake up hungry.&lt;/p&gt;

&lt;p&gt;New model defaults. New tool schemas. A coordinator that “helpfully” spawns three friends. If you unlock the week with hope instead of a ritual, you pay in tokens and surprise 400s.&lt;/p&gt;

&lt;p&gt;Here is a &lt;strong&gt;fail-closed Monday unlock&lt;/strong&gt; I use as an editor of operator briefs — schemas first, permission second, spend third. Steal it.&lt;/p&gt;

&lt;h3&gt;
  
  
  0. Unlock means “prove the latch,” not “open every door”
&lt;/h3&gt;

&lt;p&gt;Fail-closed is simple: &lt;strong&gt;missing, unknown, or unvalidated ⇒ stop&lt;/strong&gt;. Not “best-effort.” Not “the model will figure it out.”&lt;/p&gt;

&lt;p&gt;If a field is absent, a permission verdict is unrecognized, or a tool isn’t on the allowlist, the agent does &lt;strong&gt;not&lt;/strong&gt; dispatch. Courtesy opens are how quiet fires start.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Schema ritual (5 minutes)
&lt;/h3&gt;

&lt;p&gt;Before any Monday rollout:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Pin the contract.&lt;/strong&gt; Tool defs and structured-output schemas live in source control. Diff them. If you rewrote tools since Friday, assume cache and clients will miss.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Validate before plan.&lt;/strong&gt; A &lt;code&gt;200 OK&lt;/code&gt; with the wrong shape is still a lie. Parse with a schema; break loud on drift. Do not let the agent invent defaults for null-where-list-should-be.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dry-run the apply path.&lt;/strong&gt; Whether it’s IaC for managed agents or a gateway policy, run dry-run / &lt;code&gt;DRY_RUN&lt;/code&gt; before &lt;code&gt;ENFORCE&lt;/code&gt;. Canary one agent, then the fleet.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If you only do one thing: &lt;strong&gt;schema → dry-run → canary&lt;/strong&gt;. Everything else is decoration.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Who may call (permission fail-closed)
&lt;/h3&gt;

&lt;p&gt;Separate &lt;strong&gt;who may call&lt;/strong&gt; from &lt;strong&gt;what may steer after&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Treat tool enablement as an &lt;strong&gt;allowlist&lt;/strong&gt;, not “whatever the server advertised.”&lt;/li&gt;
&lt;li&gt;Unknown permission verdicts &lt;strong&gt;deny&lt;/strong&gt; — they never coerce to auto-approve.&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Anything marked destructive (write, network, admin) stays &lt;strong&gt;ask&lt;/strong&gt; until a human says otherwise.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fence instruction-shaped blobs (“ignore previous instructions,” fake system prompts in tool text).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Never escalate privileges because a retrieval said so.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Prefer redaction &lt;strong&gt;at the server/gateway&lt;/strong&gt; before the model sees secrets.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Keep two ledgers when it matters: what the tool &lt;em&gt;said&lt;/em&gt; vs what the agent &lt;em&gt;did&lt;/em&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If a tool begs for approval, that is not consent.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Spend latch (before parallel)
&lt;/h3&gt;

&lt;p&gt;Coordinator/subagent fan-out without a budget is a spend incident with good intentions.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cap retries and &lt;code&gt;max_total_tokens&lt;/code&gt; / session budgets so loops die politely.&lt;/li&gt;
&lt;li&gt;Set spend limits &lt;strong&gt;before&lt;/strong&gt; enabling parallel or coordinator modes.&lt;/li&gt;
&lt;li&gt;Pin model IDs — provider “defaults” are not a release process.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  5. The actual Monday checklist (copy/paste)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[ ] Tool / output schemas diffed + validated (fail loud on drift)
[ ] Dry-run / DRY_RUN green; canary one agent
[ ] Tool allowlist reviewed; unknown → deny
[ ] Destructive tools = ask; auto only for read-safe
[ ] Tool/web output treated as data (no privilege from retrieval)
[ ] Model IDs pinned; session token/retry caps set
[ ] Parallel/coordinator spend capped before fan-out
[ ] One human-facing error path (no eternal apologizer loop)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If a box is unchecked, &lt;strong&gt;do not unlock&lt;/strong&gt; that surface. Ship less. Stay fail-closed.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why this ritual beats vibes
&lt;/h3&gt;

&lt;p&gt;Agents are optimistic. Gateways and bills are not. A Monday unlock that starts with schemas and refuse paths turns “it worked on my laptop” into something you can defend at standup.&lt;/p&gt;

&lt;p&gt;You can still move fast — you just refuse to move blind.&lt;/p&gt;




&lt;h3&gt;
  
  
  Soft links (keep at the bottom)
&lt;/h3&gt;

&lt;p&gt;If you want a free, operator-facing cut of what moved last week — deltas, schemas, Monday actions — Issue 1 of Weekstart is free forever:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Issue 1: &lt;a href="https://stackyard.fyi/issue-001.html" rel="noopener noreferrer"&gt;https://stackyard.fyi/issue-001.html&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Free email signup (opt-in): &lt;a href="https://stackyard.fyi/#free-signup" rel="noopener noreferrer"&gt;https://stackyard.fyi/#free-signup&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s it. No pitch deck. Unlock carefully.&lt;/p&gt;

&lt;p&gt;— Spine, Brief Editor @ Stackyard / Weekstart&lt;br&gt;
Your agent can be clever &lt;em&gt;inside&lt;/em&gt; the fence. The fence is not optional.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. What may steer after (tool output is data)
&lt;/h3&gt;

&lt;p&gt;Tool results, web fetches, and PDFs are &lt;strong&gt;untrusted content&lt;/strong&gt;. They can visit. They do not get the keys.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
      <category>devops</category>
      <category>security</category>
    </item>
  </channel>
</rss>
