<?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: Nedal Elbaz</title>
    <description>The latest articles on DEV Community by Nedal Elbaz (@nedalelbaz).</description>
    <link>https://dev.to/nedalelbaz</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%2F4079015%2F331f7d50-ec26-4c2d-9a0d-f03050d0964e.png</url>
      <title>DEV Community: Nedal Elbaz</title>
      <link>https://dev.to/nedalelbaz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nedalelbaz"/>
    <language>en</language>
    <item>
      <title>Vibe Fast, Ship with Proof: Building Guardrails for AI Coding Agents</title>
      <dc:creator>Nedal Elbaz</dc:creator>
      <pubDate>Sat, 15 Aug 2026 13:39:29 +0000</pubDate>
      <link>https://dev.to/nedalelbaz/vibe-fast-ship-with-proof-building-guardrails-for-ai-coding-agents-245l</link>
      <guid>https://dev.to/nedalelbaz/vibe-fast-ship-with-proof-building-guardrails-for-ai-coding-agents-245l</guid>
      <description>&lt;p&gt;AI coding agents (Codex, Claude Code, Cursor) are incredibly fast, but opaque. They make changes, run tests, maybe pass — but there's no structured, verifiable trail of what they did, what scope they touched, and what actually passed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;WorktreeProof&lt;/strong&gt; is a local-first guardrail layer you wrap around any AI coding agent. It enforces an evidence-backed loop:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;plan → reserve → run → close
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Plan&lt;/strong&gt; — one named lane, explicit file scope, named acceptance gate.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reserve&lt;/strong&gt; — isolated Git worktree, conflict check, bounded lease.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Run&lt;/strong&gt; — your argv (no shell), bounded/redacted output.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Close&lt;/strong&gt; — validates a caller-supplied JSON receipt against the closure schema. No evidence = no close.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No cloud, no account, no telemetry, zero runtime dependencies.&lt;/p&gt;

&lt;h2&gt;
  
  
  What makes it different
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Immutable task contracts&lt;/strong&gt; — frozen before the first mutation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SAFE-3 circuit breaker&lt;/strong&gt; — freezes at 40 calls / 0 closures.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fixed terminal ledger&lt;/strong&gt; — progress = &lt;code&gt;terminal_closed / terminal_total&lt;/code&gt; only.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Clean architecture&lt;/strong&gt; — proof domain independent of Git/shell/browser adapters.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fail-closed CLI&lt;/strong&gt; — &lt;code&gt;run&lt;/code&gt; without a reservation → &lt;code&gt;ERR_PROTOCOL&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Portable Agent Skills&lt;/strong&gt; — same state works with Codex and Claude Code; plus 5 OpenCode plugins (54 tools) and /goal /plan /task /review commands.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Release discipline
&lt;/h2&gt;

&lt;p&gt;v0.4.0 is published with SBOM (CycloneDX), SHA256SUMS, release manifest, npm provenance, and green CI (Node 20/22 x ubuntu/windows, CodeQL, dependency review, Pages). Clean-install verified on Node 20/22/24.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;--global&lt;/span&gt; github:Nedal7707/worktree-proof#v0.4.0
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or clone and run &lt;code&gt;install.bat&lt;/code&gt; / &lt;code&gt;npm run setup&lt;/code&gt; — one-click install for any agentic app: 286 skills, 54 tools, MCP wiring, and a complete gap-free workflow.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Repo:&lt;/strong&gt; &lt;a href="https://github.com/Nedal7707/worktree-proof" rel="noopener noreferrer"&gt;https://github.com/Nedal7707/worktree-proof&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Docs:&lt;/strong&gt; &lt;a href="https://nedal7707.github.io/worktree-proof/" rel="noopener noreferrer"&gt;https://nedal7707.github.io/worktree-proof/&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;npm:&lt;/strong&gt; &lt;a href="https://www.npmjs.com/package/worktree-proof" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/worktree-proof&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Apache-2.0, local-first, honest status: new project, 0 stars — but the engineering is the product.&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>git</category>
      <category>softwareengineering</category>
    </item>
  </channel>
</rss>
