<?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: Maxime Houle</title>
    <description>The latest articles on DEV Community by Maxime Houle (@maximehoule).</description>
    <link>https://dev.to/maximehoule</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%2F4038387%2F9c714ae0-1eaf-4f55-a2ac-ccffa6fe0d79.png</url>
      <title>DEV Community: Maxime Houle</title>
      <link>https://dev.to/maximehoule</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/maximehoule"/>
    <language>en</language>
    <item>
      <title>I built an open-source "CI for AI agents", and here is why I went open-source</title>
      <dc:creator>Maxime Houle</dc:creator>
      <pubDate>Mon, 20 Jul 2026 15:14:39 +0000</pubDate>
      <link>https://dev.to/maximehoule/i-built-an-open-source-ci-for-ai-agents-and-here-is-why-i-went-open-source-47nn</link>
      <guid>https://dev.to/maximehoule/i-built-an-open-source-ci-for-ai-agents-and-here-is-why-i-went-open-source-47nn</guid>
      <description>&lt;p&gt;Hi, my name is &lt;a href="https://x.com/themaxthule" rel="noopener noreferrer"&gt;Max&lt;/a&gt;. I built &lt;a href="https://github.com/seldonframe/reelier" rel="noopener noreferrer"&gt;Reelier&lt;/a&gt;, an open-source tool that gives AI agent workflows the thing normal code has had for decades: snapshot tests and CI.&lt;/p&gt;

&lt;p&gt;Here is the itch. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;My coding agent kept re-deriving the same tool-call workflow on every run. &lt;/li&gt;
&lt;li&gt;Fetch this, transform that, post the result. &lt;/li&gt;
&lt;li&gt;Same tokens, same seconds, for a task with exactly one correct answer. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And every so often it did it a little differently, and nothing caught it. That second part is the scary one.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbkh2u8b4ja95rqnygg2n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbkh2u8b4ja95rqnygg2n.png" alt=" " width="800" height="453"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why open-source it
&lt;/h2&gt;

&lt;p&gt;Agent tooling is flooded right now. New closed tools ship every day, and most of them ask you to trust a black box with your workflows and your keys. &lt;/p&gt;

&lt;p&gt;Open-source is how a small tool earns trust in that noise: you can read exactly what it does, run it on your own machine, and keep your data as plain files.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it actually does
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fczp0dmo36dp2x0dnp0ip.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fczp0dmo36dp2x0dnp0ip.png" alt=" " width="800" height="286"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You record one agent run that worked. &lt;/li&gt;
&lt;li&gt;Reelier compiles it into a readable SKILL.md file, a recipe with typed inputs, typed outputs, and an assertion on every step. &lt;/li&gt;
&lt;li&gt;Then it replays that file deterministically: no model call, 0 tokens, byte-identical, in milliseconds. &lt;/li&gt;
&lt;li&gt;Every replay is a receipt. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And reelier diff compares two runs and exits 1 when a step drifts, so a silent regression fails your build instead of reaching production.&lt;/p&gt;

&lt;h2&gt;
  
  
  The honest part
&lt;/h2&gt;

&lt;p&gt;It only replays deterministic tool calls, HTTP and MCP. &lt;/p&gt;

&lt;p&gt;It does not replay file edits or free-form reasoning, and it never fabricates a step it cannot reproduce. It is for the deterministic half of what agents do. &lt;/p&gt;

&lt;p&gt;I say that up front because the version that would go viral (record my whole agent) is the version I will not claim, since it would not be true.&lt;/p&gt;

&lt;p&gt;Numbers, from the benchmark in the repo: 1000 of 1000 replays byte-identical, 0 tokens per replay, about 50x cheaper and 59x faster than the agent re-running the same task.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbcg47avefcsxj3vc2l0p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbcg47avefcsxj3vc2l0p.png" alt=" " width="800" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It is AGPL-3.0, BYOK, and runs entirely on your machine.&lt;/p&gt;

&lt;p&gt;Any help you can give me would be super tremendous! 🥹&lt;br&gt;
I would be happy to get a star if possible ❤️&lt;a href="https://github.com/seldonframe/reelier" rel="noopener noreferrer"&gt;https://github.com/seldonframe/reelier&lt;/a&gt;. &lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>showdev</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
