<?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: Matthew</title>
    <description>The latest articles on DEV Community by Matthew (@mattbaconz).</description>
    <link>https://dev.to/mattbaconz</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3886323%2F25b6ddfb-79b0-48c8-a854-5440ad226722.png</url>
      <title>DEV Community: Matthew</title>
      <link>https://dev.to/mattbaconz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mattbaconz"/>
    <language>en</language>
    <item>
      <title>Building Phonton: a local-first AI coding CLI that verifies diffs before review</title>
      <dc:creator>Matthew</dc:creator>
      <pubDate>Sun, 03 May 2026 04:33:25 +0000</pubDate>
      <link>https://dev.to/mattbaconz/building-phonton-a-local-first-ai-coding-cli-that-verifies-diffs-before-review-1hbn</link>
      <guid>https://dev.to/mattbaconz/building-phonton-a-local-first-ai-coding-cli-that-verifies-diffs-before-review-1hbn</guid>
      <description>&lt;p&gt;I have been building &lt;strong&gt;Phonton CLI&lt;/strong&gt;, an open-source local-first AI coding agent.&lt;/p&gt;

&lt;p&gt;The idea is simple: instead of treating an AI coding tool like a chat box, Phonton treats it like an engineering workflow.&lt;/p&gt;

&lt;p&gt;It tries to follow this loop:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;You give it a goal.&lt;/li&gt;
&lt;li&gt;It creates a plan.&lt;/li&gt;
&lt;li&gt;It works against your local repo context.&lt;/li&gt;
&lt;li&gt;It verifies the generated diff.&lt;/li&gt;
&lt;li&gt;You review the result before accepting it.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Most AI coding tools are optimized for speed and convenience. Phonton is more focused on making AI-generated changes easier to trust.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;I wanted a CLI agent that was:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;local-first&lt;/li&gt;
&lt;li&gt;BYOK, so you use your own provider keys&lt;/li&gt;
&lt;li&gt;review-oriented&lt;/li&gt;
&lt;li&gt;built around verification&lt;/li&gt;
&lt;li&gt;able to remember repo decisions locally&lt;/li&gt;
&lt;li&gt;useful from the terminal&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is not to replace every tool like Claude Code, Codex, Cursor, or OpenCode. The goal is to explore a stricter workflow for AI-assisted coding: &lt;strong&gt;plan, verify, review, then ship&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Current status
&lt;/h2&gt;

&lt;p&gt;Phonton is still early alpha.&lt;/p&gt;

&lt;p&gt;It currently has:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a Rust CLI/TUI&lt;/li&gt;
&lt;li&gt;provider adapters&lt;/li&gt;
&lt;li&gt;planning&lt;/li&gt;
&lt;li&gt;local memory&lt;/li&gt;
&lt;li&gt;repo indexing&lt;/li&gt;
&lt;li&gt;verification flow&lt;/li&gt;
&lt;li&gt;review commands&lt;/li&gt;
&lt;li&gt;checkpoint/rollback work&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There are still rough edges, and I am not claiming it is production-ready yet.&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;-g&lt;/span&gt; phonton-cli
phonton doctor
phonton plan &lt;span class="s2"&gt;"add input validation to config loading"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;GitHub:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/phonton-dev/phonton-cli" rel="noopener noreferrer"&gt;https://github.com/phonton-dev/phonton-cli&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I would appreciate feedback from developers who already use AI coding agents and care about local-first workflows, reviewable diffs, and verification.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>cli</category>
      <category>opensource</category>
      <category>rust</category>
    </item>
    <item>
      <title>SIGNAL; shrinking agent skills so context stays for code</title>
      <dc:creator>Matthew</dc:creator>
      <pubDate>Sat, 18 Apr 2026 16:49:12 +0000</pubDate>
      <link>https://dev.to/mattbaconz/signal-shrinking-agent-skills-so-context-stays-for-code-40p1</link>
      <guid>https://dev.to/mattbaconz/signal-shrinking-agent-skills-so-context-stays-for-code-40p1</guid>
      <description>&lt;p&gt;&lt;strong&gt;SIGNAL&lt;/strong&gt; is a small open-source &lt;strong&gt;agent skill bundle&lt;/strong&gt; for people who hit &lt;strong&gt;context limits&lt;/strong&gt;: tiered modes, symbolic shorthand, checkpoints, a disk-backed &lt;code&gt;.signal_state.md&lt;/code&gt;, and separate skills for &lt;strong&gt;diff/search summaries&lt;/strong&gt; and &lt;strong&gt;git&lt;/strong&gt; (commit / push / PR) plus &lt;strong&gt;structured review&lt;/strong&gt;. Each skill ships as readable &lt;code&gt;*.md&lt;/code&gt; and a tight &lt;code&gt;*.min.md&lt;/code&gt; so you can load less instruction surface when you want.&lt;/p&gt;

&lt;h3&gt;
  
  
  Install
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills add mattbaconz/signal
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Repo: github.com/mattbaconz/signal
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Benchmarks (honest caveat)&lt;/strong&gt;&lt;br&gt;
The repo includes scripted fixtures and heuristic token estimates (ceil(chars/4)). That’s useful for comparing shapes, not for quoting exact billed tokens from a provider.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I’d like from readers&lt;/strong&gt;&lt;br&gt;
If you’ve tried skills packs or fat AGENTS.md files: does the canonical + minified split match how you’d maintain this, or is it too much friction? I’m open to blunt feedback.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>productivity</category>
      <category>claude</category>
    </item>
  </channel>
</rss>
