Archive BRAIXD
Review Debt and What It Costs / DISPATCH 076
PDF RSS

Dispatch 076 · 2026-07-12 Braixd

Review Debt and What It Costs

/ 00:12:27 / 5 sources

“"These metrics tell you the speed of production, not the speed of trust." — Sachin Gupta”

— Seln Oriax, today's narration

Sachin Gupta at eBay just released the first quantifiable framework for measuring review debt — the compounding gap between agent-produced code and code humans have actually reviewed.

Roberto Stagi reports TypeScript has surpassed Python as GitHub's most popular language, driven by coding agents defaulting to JS. Terry Tao used an agent to port 24 Java applets from 1999 and found only one bug — a bounded task done well. Starbucks is rebuilding $400 million in Microsoft and IBM software in-house.

All of it points to the same tension: agents ship code faster than trust can keep up, and nobody's measuring the interest rate.

Chapters

  1. 00:00:04 The Gap Nobody's Measuring
  2. 00:03:03 The Language That Agents Default To
  3. 00:05:18 Bounded Work, Bounded Risk
  4. 00:07:33 Where the Boundary Should Be
  5. 00:09:18 The Buy-vs-Build Ticking Clock
  6. 00:11:23 The Thread Between Them

Sources

5 cited
  1. 1

    Old and new apps, via modern coding agents

    Article Terence Tao — Fields Medalist mathematician at UCLA

    I asked an agent to port my old Java applets from 1999 to JavaScript and it handled the job in hours. Across twenty-plus visualizations, I found only one minor bug — and the agent actually caught two bugs in my original…

    terrytao.wordpress.com/2026/07/11/old-and-n… →
    Details
    Excerpt
    I asked an agent to port my old Java applets from 1999 to JavaScript and it handled the job in hours. Across twenty-plus visualizations, I found only one minor bug — and the agent actually caught two bugs in my original code I hadn't noticed. The upside was real enough that I then had it build a new visualization tool for special relativity from scratch, matching a vision I'd abandoned in 1999 because the code complexity was too high.
    Context
    A Fields Medalist isn't theorizing about agents from an ivory tower. He's actually using them to build tools that serve his research community, with measured confidence about their reliability for bounded tasks. That matters more than any benchmark or demo.
    Key points
    • Tao asked an agent to port 24+ Java applets from 1999 to JavaScript — completed in hours
    • Only one minor bug found in the porting; two bugs in original code were caught by the agent
    • Tao then built a new special relativity visualization tool he'd abandoned in 1999 using 'vibe coding' with an agent
    • Gilbreath conjecture paper got a companion interactive visualization as well
    • Tao's framing: these are secondary visual aids, not mission-critical — the downside risk is acceptable
    Provenance
    Article · Supporting source
  2. 2

    Starbucks Just Fired A Warning Shot At Microsoft And IBM AI Apps

    Article Sandy Carter — Former IBM senior VP of platform strategy, now founder and CEO of Quantum Economics

    Starbucks is building its own AI-assisted replacements for a Microsoft inventory tracking system and an IBM maintenance platform, targeting roughly $400 million in software spend. The market reacted by selling applicati…

    www.forbes.com/sites/sandycarter/2026/07/12… →
    Details
    Excerpt
    Starbucks is building its own AI-assisted replacements for a Microsoft inventory tracking system and an IBM maintenance platform, targeting roughly $400 million in software spend. The market reacted by selling application-only vendors — IBM fell 3%, ServiceNow dropped 3.5%, Salesforce slid 4%. But Microsoft barely moved because it still supplies the Azure cloud infrastructure Starbucks will build on. The core insight: if your engineers already customize a vendor's product heavily, and AI now lets them build a purpose-fit tool in a fraction of the time, why keep paying the license fee?
    Context
    This isn't about Starbucks. It's a preview of what happens when Fortune 500 companies realize their internal engineers can now build the tools they've been renting, and the economics flip in hours rather than years. The buy-vs-build recalculation just started ticking forward.
    Key points
    • Starbucks replacing Microsoft inventory system and IBM maintenance platform with in-house AI tools
    • $400M annual software spend at risk for application-layer vendors; Azure infrastructure unaffected
    • Application-only vendors (Salesforce, ServiceNow) took the biggest market hit
    • The sequence matters: data consolidation, process redesign, then AI — companies skipping the middle step build expensive tools automating bad decisions faster
    • Starbucks previously pulled an AI inventory system that produced inaccurate counts — they're learning before scaling
    Provenance
    Article · Supporting source
  3. 3

    A Song of Types and Agents

    Video Roberto Stagi — CTO and co-founder of Reto (context layer for AI agents), EU ambassador for AI Practitioners

    TypeScript has surpassed Python as the most used language on GitHub. Coding agents drove it — they default to TypeScript, which means new apps are built there, which means agent training data is enriched with TypeScript…

    www.youtube.com/watch?v=UlFB6efYN5Q →
    Details
    Excerpt
    TypeScript has surpassed Python as the most used language on GitHub. Coding agents drove it — they default to TypeScript, which means new apps are built there, which means agent training data is enriched with TypeScript, which means agents get better at TypeScript. The feedback loop is real.
    Context
    The GitHub data doesn't lie — TypeScript passing Python isn't about language preference. It's about who the default builder tool writes for. If your stack isn't prepared for that shift, you'll be syncing two type systems forever.
    Key points
    • TypeScript surpassed Python as GitHub's most popular language in August 2025
    • GitHub reports 'AI leads TypeScript' as the reason — same framing used for Python in 2024
    • Coding agents (Cursor, Codex, Lava Cloud Code) became the default way to build apps and they default to TypeScript
    • Anthropic acquired Bun (JS runtime) in December 2024, signaling infrastructure alignment
    • One consistent typing across agent loop, backend, UI with Zod is a concrete engineering advantage
    Provenance
    Video · Supporting source
  4. 4

    Mario Zechner on building with coding agents

    Thread Mario Zechner — Creator of libGDX, veteran game engine developer known for practical systems work

    Control the types and interfaces, the rest usually falls into place well enough. All the latest models still love to introduce shitty abstractions that work against your types and interfaces. You need to beat them into…

    x.com/badlogicgames/status/2076290513896968… →
    Details
    Excerpt
    Control the types and interfaces, the rest usually falls into place well enough. All the latest models still love to introduce shitty abstractions that work against your types and interfaces. You need to beat them into submission, not stomp over things. Without constructing and understanding the big picture, you're fucked in the long run — but that doesn't mean you need to 'read all the code'.
    Context
    Zechner's perspective cuts through both the hype and the fear-mongering. He's not against agents; he has strong opinions about where the boundary should be. The types-and-interfaces constraint is a concrete engineering pattern that any team can adopt tomorrow.
    Key points
    • Control types/interfaces, let agents handle implementation details
    • Latest models keep introducing abstractions that fight your type system
    • You need to beat them into submission rather than letting them override your design
    • Big-picture understanding is non-negotiable, but reading all the code isn't required
    • The real question is how much structure you impose vs. how much you let the agent invent
    Provenance
    Thread · Primary source
  5. 5

    ReviewDebt: a practical framework for scoring every pull request

    Video Sachin Gupta — Software engineer at eBay presenting on review debt measurement

    Coding agents are creating review debt — the compounding gap between agent-produced code and code humans have actually reviewed, trusted, and understood. Nobody is measuring it yet.

    www.youtube.com/watch?v=TJPInBjhE4Q →
    Details
    Excerpt
    Coding agents are creating review debt — the compounding gap between agent-produced code and code humans have actually reviewed, trusted, and understood. Nobody is measuring it yet.
    Context
    This is the first quantifiable framework I've seen for measuring the trust gap that AI coding agents are creating. It turns a feeling everyone has into something you can run against your own repo and show leadership.
    Key points
    • GitHub 2025 report: commits up 25% YoY but review comments dropped 27%
    • Faros AI benchmark: median PR review time up 441.5%; 31% more PRs merged with no review
    • Five signal families: dev size/coupling, test evidence gap, directory ownership spread, AI authorship indicators, evidence/rational gaps
    • Deterministic scoring (0-100) calibrated against team experience — avoids LLM-as-judge which makes scores a moving target
    • Review debt compounds through three feedback loops: agents ground on unreviewed code, reviewers shift from architecture to syntax checks, velocity expectations reset without matching hiring
    Provenance
    Video · Supporting source