<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: Mitchem</title><link>https://news.ycombinator.com/user?id=Mitchem</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 09 Jul 2026 03:57:08 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=Mitchem" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by Mitchem in "SWE-1.7 Reach Near GPT 5.5 and Opus Intelligence"]]></title><description><![CDATA[
<p>While I am skeptical of the results here, I am very excited for this new trend of making models faster. Running capable models at 1k TPS is more valuable for me than running better models at 30 TPS. I can only imagine the trend continues to move from "let's only make models smarter" to just incremental intelligence gains but with step improvements in speed.</p>
]]></description><pubDate>Wed, 08 Jul 2026 17:43:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=48834897</link><dc:creator>Mitchem</dc:creator><comments>https://news.ycombinator.com/item?id=48834897</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48834897</guid></item><item><title><![CDATA[AI is about to get fast, and it's never going to slow down]]></title><description><![CDATA[
<p>Article URL: <a href="https://medium.com/@NMitchem/ai-is-about-to-get-fast-and-its-never-going-to-slow-down-78e13e794375">https://medium.com/@NMitchem/ai-is-about-to-get-fast-and-its-never-going-to-slow-down-78e13e794375</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48504325">https://news.ycombinator.com/item?id=48504325</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 12 Jun 2026 14:09:46 +0000</pubDate><link>https://medium.com/@NMitchem/ai-is-about-to-get-fast-and-its-never-going-to-slow-down-78e13e794375</link><dc:creator>Mitchem</dc:creator><comments>https://news.ycombinator.com/item?id=48504325</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48504325</guid></item><item><title><![CDATA[New comment by Mitchem in "Show HN: Saguaro: CLI that makes Claude Code fix its own mistakes"]]></title><description><![CDATA[
<p>Hey HN, author here.<p>The thing that makes this work is where in the loop the review happens.
CodeRabbit, Greptile, etc review at the PR level after the agent is done.
The findings go to a human who has to interpret them. The agent that wrote
the code never sees the critique. We find that most people just spin up a new agent and ask "Are these review findings correct?" anyways.<p>Saguaro reviews during the agent's session and sends findings back to the same
agent. Because the agent still has its full context window, it knows <i>why</i>
it made each decision, it can evaluate the findings intelligently. "I made
this choice for X reason, but this review shows a gap in my thinking, let me
fix that." Or "This finding isn't relevant because of Y." The agent has the
context to make that judgment call. That's why false positives are lower.<p>The daemon is completely invisible to the user. It self-spawns from the
Claude Code stop hook, runs a SQLite-backed job queue on localhost, and
auto-shuts down after 30 minutes idle. The review happens in the background
while the user keeps working. We feed context from the original programming
session into the review process. The findings surface on the next stop hook,
your agent just starts fixing things.<p>For teams that want more precision, there's a rules engine: markdown files
with YAML frontmatter that enforce specific patterns (architectural boundaries,
security invariants, etc). But the daemon works with zero rules out of the box.
The rules engine works great for teams with well-defined rules.<p>Some technical decisions:
- SQLite (via better-sqlite3) as job queue, right amount of infrastructure
  for a local dev tool.
- The daemon reviewer gets the original agent's summary ("the developer
  described their work as...") for context
- Agent gets read-only tools (Read, Glob, Grep) with up to 15 tool calls
  per review, it can inspect the full codebase for context but can't edit.<p>Limitations:
- The daemon review is async. Findings arrive on the next stop hook,
  not the current one. Fast iterations may miss a cycle.
- Review quality depends on the model. We default to your configured
  model but you can override for daemon specifically.
- Cost is your normal AI provider usage. `sag stats` tracks it.<p>Happy to answer technical questions about the architecture.</p>
]]></description><pubDate>Wed, 11 Mar 2026 20:07:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=47340675</link><dc:creator>Mitchem</dc:creator><comments>https://news.ycombinator.com/item?id=47340675</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47340675</guid></item><item><title><![CDATA[Show HN: Saguaro: CLI that makes Claude Code fix its own mistakes]]></title><description><![CDATA[
<p>I've been using Claude Code Max and Codex daily and kept hitting the same problem; AI quickly ships working code that have real issues: logic errors, security gaps, subtle regressions. You catch them in review, fix them, but the agent session has already closed. Doesn't it make sense to have the AI fix its own mistakes 
while it still knows why it made them?<p>Saguaro is a background daemon that reviews AI-generated code and feeds findings
back to the same agent that wrote it. The agent evaluates the critique, it knows why it made those decisions in the first place, and self-corrects what's actually wrong.<p>The flow: you tell Claude Code to build something. Claude writes code. Saguaro's
stop hook triggers a background review (the user sees nothing). On the next turn, findings come back to Claude. Claude says "I see some issues with my approach, fixing now" and corrects itself. No human typed anything. No blocking.<p>It uses your existing Claude Code / Codex / Gemini subscription. No API key
needed. No external account. Everything runs locally. The daemon self-spawns on demand and auto-shuts down after 30 minutes of inactivity.<p>There's also a rules engine for teams that want more deterministic enforcement.
You write rules as markdown files with YAML frontmatter, scoped to specific
file globs. But the daemon works out of the box with zero rules. It reviews like a senior staff engineer: bugs, security, regressions, dead code. The rules engine adds more precision for teams/individuals that need it.<p>Setup is "sag init" + restart CC + go back to coding. That's it.<p>Apache-2.0. TypeScript.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47340583">https://news.ycombinator.com/item?id=47340583</a></p>
<p>Points: 3</p>
<p># Comments: 3</p>
]]></description><pubDate>Wed, 11 Mar 2026 20:03:00 +0000</pubDate><link>https://github.com/mesa-dot-dev/saguaro</link><dc:creator>Mitchem</dc:creator><comments>https://news.ycombinator.com/item?id=47340583</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47340583</guid></item><item><title><![CDATA[Something Flipped in December: AI Coding's Six-Month Reversal]]></title><description><![CDATA[
<p>Article URL: <a href="https://medium.com/@NMitchem/something-flipped-in-december-423e8b808262">https://medium.com/@NMitchem/something-flipped-in-december-423e8b808262</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47183524">https://news.ycombinator.com/item?id=47183524</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 27 Feb 2026 18:08:45 +0000</pubDate><link>https://medium.com/@NMitchem/something-flipped-in-december-423e8b808262</link><dc:creator>Mitchem</dc:creator><comments>https://news.ycombinator.com/item?id=47183524</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47183524</guid></item><item><title><![CDATA[New comment by Mitchem in "Show HN: Stop reviewing AI-generated code during a PR, move it in the edit cycle"]]></title><description><![CDATA[
<p>Unfortunately I'm not sure anybody will solve the issue of "quantization of the confidence level", a senior reviewer in a PR doesn't even do this. We believe that when agents are writing 10x more code than humans, the bottleneck is review throughput, not review precision. The measurable metric isn't "confidence level", we think it's "how many issues reached production that a 10-second rule check would have caught." That number is going up a ton as code volume scales.<p>We designed our integration with Claude code to reject edits before it's written if it violates a rule via an exit 2 code. Also don't think any system will be 100% on rule enforcement, senior reviewers included. We can't be perfect but we can raise the floor.<p>Actually our approach is the opposite. Writing rules forces teams to articulate what their standards are. Mesa makes you write them down, version control them, and review them as code, similar to a linter. This specificity is why this system works much better than a standard AI code reviewer that checks for general issues.<p>We aren't trying to replace tests or humans. The goal is to make them more effective by filtering out the noise before it reaches them.</p>
]]></description><pubDate>Thu, 26 Feb 2026 23:19:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=47173624</link><dc:creator>Mitchem</dc:creator><comments>https://news.ycombinator.com/item?id=47173624</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47173624</guid></item><item><title><![CDATA[Show HN: Stop reviewing AI-generated code during a PR, move it in the edit cycle]]></title><description><![CDATA[
<p>Article URL: <a href="https://medium.com/@peterrallojay/beyond-the-pr-shifting-review-into-the-coding-session-de04ce344e81">https://medium.com/@peterrallojay/beyond-the-pr-shifting-review-into-the-coding-session-de04ce344e81</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47172228">https://news.ycombinator.com/item?id=47172228</a></p>
<p>Points: 5</p>
<p># Comments: 3</p>
]]></description><pubDate>Thu, 26 Feb 2026 21:29:11 +0000</pubDate><link>https://medium.com/@peterrallojay/beyond-the-pr-shifting-review-into-the-coding-session-de04ce344e81</link><dc:creator>Mitchem</dc:creator><comments>https://news.ycombinator.com/item?id=47172228</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47172228</guid></item><item><title><![CDATA[New comment by Mitchem in "GitHub Is Dying and Developers Don't Even Know It Yet"]]></title><description><![CDATA[
<p>I do work at Mesa and I'm upfront about that in the article. But I cover cURL's bug bounty shutdown, Zig leaving GitHub, the Kai Gritun incident, jujutsu, Atomic Software, and maintainer burnout among other items.<p>Those problems are real independent of Mesa. I do shoutout an open source project we have called AgentBlame but don't talk about anything related to proprietary software or why Mesa is the end-all-be-all.<p>Thanks for your feedback, definitely did not mean for this to come across as an ad.</p>
]]></description><pubDate>Wed, 18 Feb 2026 23:46:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=47068000</link><dc:creator>Mitchem</dc:creator><comments>https://news.ycombinator.com/item?id=47068000</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47068000</guid></item><item><title><![CDATA[New comment by Mitchem in "GitHub Is Dying and Developers Don't Even Know It Yet"]]></title><description><![CDATA[
<p>Great catch thank you</p>
]]></description><pubDate>Wed, 18 Feb 2026 21:22:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=47066606</link><dc:creator>Mitchem</dc:creator><comments>https://news.ycombinator.com/item?id=47066606</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47066606</guid></item><item><title><![CDATA[GitHub Is Dying and Developers Don't Even Know It Yet]]></title><description><![CDATA[
<p>Article URL: <a href="https://medium.com/@noah_25268/github-is-dying-and-developers-dont-even-know-it-yet-cca14b732ae5">https://medium.com/@noah_25268/github-is-dying-and-developers-dont-even-know-it-yet-cca14b732ae5</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47066213">https://news.ycombinator.com/item?id=47066213</a></p>
<p>Points: 11</p>
<p># Comments: 5</p>
]]></description><pubDate>Wed, 18 Feb 2026 20:52:35 +0000</pubDate><link>https://medium.com/@noah_25268/github-is-dying-and-developers-dont-even-know-it-yet-cca14b732ae5</link><dc:creator>Mitchem</dc:creator><comments>https://news.ycombinator.com/item?id=47066213</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47066213</guid></item></channel></rss>