<?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: Gogoout</title>
    <description>The latest articles on DEV Community by Gogoout (@gogoout).</description>
    <link>https://dev.to/gogoout</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%2F4139883%2Fafc26add-5ed4-47d8-8991-0ff9e42b2caa.png</url>
      <title>DEV Community: Gogoout</title>
      <link>https://dev.to/gogoout</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gogoout"/>
    <language>en</language>
    <item>
      <title>Differential: a TUI code reviewer with semantic grouping</title>
      <dc:creator>Gogoout</dc:creator>
      <pubDate>Wed, 23 Sep 2026 17:21:24 +0000</pubDate>
      <link>https://dev.to/gogoout/differential-a-tui-code-reviewer-with-semantic-grouping-2016</link>
      <guid>https://dev.to/gogoout/differential-a-tui-code-reviewer-with-semantic-grouping-2016</guid>
      <description>&lt;p&gt;Hi all — for those of you still reviewing code by hand, I built a tool to make that easier. There are plenty of alternatives out there already, but none of them quite checked all the boxes for me, so I made my own. Feedback welcome!&lt;/p&gt;

&lt;p&gt;Here's what differential does differently:&lt;/p&gt;

&lt;p&gt;It filters out echoes before anything else. Every hunk gets hashed into a "shape class" — strings, numbers, and identifiers get normalized away, so a signature change touching two hundred call sites collapses into a single class instead of two hundred separate things to read.&lt;/p&gt;

&lt;p&gt;So that say a refactor would be filtered away. Granted this doesn't work every time (if the changes are all in different shape), but it's a cheap way to filter out noise.&lt;/p&gt;

&lt;p&gt;It figures out what depends on what. It builds a symbol dependency graph straight from the AST using treesitter. Then orders groups foundation-first, so you hit an abstraction before you hit its consumers. Each group gets tagged foundation, consumer, mechanical, or noise, and cycles get reported instead of hidden.&lt;/p&gt;

&lt;p&gt;The LLM then group the shapes. This is what produce you a reading plan where each plan is smaller.&lt;/p&gt;

&lt;p&gt;It shows the declaration of a symbol at best effort. This is useful when you want to pull in some context about a symbol. You can press z on a highlighted symbol — a peek modal shows the declaration.&lt;/p&gt;

&lt;p&gt;Search covers the whole change, not just diff hunks. / searches every changed files, with the current plan's files showed up on the top.&lt;/p&gt;

&lt;p&gt;It can also renders the whole plan as a stack of synthetic commits you can read in tig or plain git log or your IDE. It can review a live GitHub PR or GitLab MR in place, replying to and resolving existing threads.&lt;/p&gt;

&lt;p&gt;It's a terminal program written in rust with ratatui.&lt;/p&gt;

&lt;p&gt;Repo: &lt;a href="https://github.com/thepartly/differential" rel="noopener noreferrer"&gt;https://github.com/thepartly/differential&lt;/a&gt;&lt;/p&gt;

</description>
      <category>rust</category>
      <category>tui</category>
      <category>git</category>
      <category>cli</category>
    </item>
  </channel>
</rss>
