<?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: Hunter G</title>
    <description>The latest articles on DEV Community by Hunter G (@hunter_g_50e2ec233acd07b5).</description>
    <link>https://dev.to/hunter_g_50e2ec233acd07b5</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%2F3863632%2F10dbde30-ef74-4dd4-a2e4-0eca9c1dfe5a.png</url>
      <title>DEV Community: Hunter G</title>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hunter_g_50e2ec233acd07b5"/>
    <language>en</language>
    <item>
      <title>Jeff Dean: The 1% Rule for Building in AI</title>
      <dc:creator>Hunter G</dc:creator>
      <pubDate>Tue, 11 Aug 2026 10:50:24 +0000</pubDate>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5/jeff-dean-the-1-rule-for-building-in-ai-4m11</link>
      <guid>https://dev.to/hunter_g_50e2ec233acd07b5/jeff-dean-the-1-rule-for-building-in-ai-4m11</guid>
      <description>&lt;h1&gt;
  
  
  Jeff Dean: The 1% Rule for Building in AI
&lt;/h1&gt;

&lt;p&gt;Jeff Dean sat down with Y Combinator at Startup School 2026. MapReduce, BigTable, TensorFlow, the TPU, Gemini — he's behind all of them. He's now Google's Chief Scientist.&lt;/p&gt;

&lt;p&gt;The most valuable thing in the 57 minutes wasn't his résumé. It was a set of judgment tools you can run tonight.&lt;/p&gt;

&lt;p&gt;Here are the seven things I took away.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. The 1% Rule: a 20% success rate is the dangerous one
&lt;/h2&gt;

&lt;p&gt;The host asked the question every founder is asking: as general models get stronger, where can a two- or three-person team still win?&lt;/p&gt;

&lt;p&gt;Dean answered like an engineer — he gave a criterion you can actually measure.&lt;/p&gt;

&lt;p&gt;First, test: take the strongest general model available and throw your domain's problems at it. See how far it gets.&lt;/p&gt;

&lt;p&gt;Then comes the counterintuitive part:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"If they're completely failing, that's probably a good sign. If they're kind of able to do some of it but not very well, that's maybe not a great sign — because that's probably a sign that the capability is starting to be present in those models, and with more training data or larger scale models it's likely to get better."&lt;/p&gt;

&lt;p&gt;"So look for something where the model succeeds 0% or 1% of the time, not 20%."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Write that on the wall. &lt;strong&gt;A 20% success rate creates the illusion that a little more work will get you there. In reality you're racing the next model release — and you will probably lose.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;So where do the 0% opportunities live? He gave two shapes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Data the model can't reach.&lt;/strong&gt; His example is sharp: Google is organizing the world's information, and that's covered. But &lt;em&gt;organizing your personal information&lt;/em&gt; is wide open — a general model simply can't see that data. Once your product has that visibility, the advantage is structural.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Narrow models.&lt;/strong&gt; He pointed at AlphaFold: not general, but it handles protein folding extremely well. He named materials science and chip design as similar shapes.&lt;/p&gt;

&lt;p&gt;He also added an honest warning: "The general models are definitely getting better at a broader and broader range of things. So you have to figure out — is that thing you're working on going to be a durable thing, or do you think the models at the forefront are going to get better at that in the next six months or 12 months?"&lt;/p&gt;

&lt;p&gt;That judgment &lt;em&gt;is&lt;/em&gt; the bet.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Energy is the unit that decides what's possible
&lt;/h2&gt;

&lt;p&gt;This was the most technically dense stretch.&lt;/p&gt;

&lt;p&gt;Dean now measures everything in energy. &lt;strong&gt;A single compute operation costs roughly one picojoule. Moving the data in from HBM on the accelerator so the processor can compute on it costs about 1000× that.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That 1000× gap quietly decides which products are possible and how AI algorithms get designed.&lt;/p&gt;

&lt;p&gt;The most direct consequence is batching. Without the 1000× difference, you wouldn't need to batch at all. Because of it, you must amortize that data movement across many examples or tokens — paying "1000 divided by batch size" instead of the full penalty. And for genuinely low-latency work, batching is not great.&lt;/p&gt;

&lt;p&gt;Which leads to the question worth asking: &lt;strong&gt;how many problems founders call "model problems" are actually energy or data-IO problems?&lt;/strong&gt; Batching and epochs in training look like a model concern. They're a systems and data-movement concern.&lt;/p&gt;

&lt;p&gt;He also updated his famous list. Plenty of engineers have had &lt;em&gt;Latency Numbers Every Engineer Should Know&lt;/em&gt; taped to a wall. The 2026 AI edition, per Dean, is: bandwidth from accelerator main memory to on-chip memory to the multiplier unit; &lt;strong&gt;how much energy a single multiply costs&lt;/strong&gt;; interconnect bandwidth between chips and how many chips that bandwidth can serve; and the falloff in network bandwidth when you need to talk to 10,000 chips instead of 500.&lt;/p&gt;

&lt;p&gt;His own current focus is inference: minimize data movement, use extremely low precision, and &lt;em&gt;don't&lt;/em&gt; support many different precisions — if you know which precision you need, build that into the hardware and not much else.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. The TPU started as napkin math
&lt;/h2&gt;

&lt;p&gt;That last point isn't theory. He did it once, and the result was the TPU.&lt;/p&gt;

&lt;p&gt;In 2013, deep-learning speech models started working and halved the error rate. His description: "the equivalent of 20 years of advances in speech recognition in just a few months of fiddling with the model, scaling it up a bit, and getting better data."&lt;/p&gt;

&lt;p&gt;Then he got worried — because if speech worked better, people would use it more.&lt;/p&gt;

&lt;p&gt;So he ran the numbers: &lt;strong&gt;if every Google user talked to their phone for three minutes a day, Google would have to double its entire server fleet.&lt;/strong&gt; For speech alone.&lt;/p&gt;

&lt;p&gt;The conclusion was that CPUs weren't going to work.&lt;/p&gt;

&lt;p&gt;Hence the TPU: a chip specialized for low-precision dense linear algebra. As he put it, it can't run Chrome or Word or anything else — but that happens to be the heart of nearly every modern ML algorithm.&lt;/p&gt;

&lt;p&gt;The chip that shipped two years later was &lt;strong&gt;30–80× more energy efficient than the CPUs and GPUs of the day, with 20–30× lower latency.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;But the part that made me stop was the trade-off. The TPU was built &lt;em&gt;before&lt;/em&gt; Transformers existed. Why does it still hold up?&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"That's sort of why we built a general purpose linear algebra system. Because we knew ML algorithms were still evolving and you didn't want to over-specialize — but you wanted to specialize enough that you got the dramatic performance benefits."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Specialize exactly enough, and no further.&lt;/strong&gt; That's the most valuable engineering philosophy in the whole talk.&lt;/p&gt;

&lt;p&gt;And his advice on what napkin math &lt;em&gt;you&lt;/em&gt; should run tonight: look at the bottlenecks in front of you, and ask whether a completely different approach could get you one or two orders of magnitude. "Don't be anchored on exactly how that problem is solved today — think about how you would solve it from first principles."&lt;/p&gt;

&lt;h2&gt;
  
  
  4. The skill he wrote himself
&lt;/h2&gt;

&lt;p&gt;On context engineering, he gave a personal example worth copying.&lt;/p&gt;

&lt;p&gt;First, a framing I like: the model is only one piece of the system. Information you put in the context is &lt;strong&gt;clear&lt;/strong&gt; to the model — unlike training data, which is "trillions of tokens stirred together into a soup" of hundreds of billions or trillions of parameters.&lt;/p&gt;

&lt;p&gt;How do you get better? Use the models on real problems and watch where they fail. "Often you can make the model work better — not by adjusting the model parameters, which is hard from the outside, but by creating better guidelines for the model, writing skills for the model to know how to use different tools."&lt;/p&gt;

&lt;p&gt;"As you do that, you end up on this kind of self-improving setup."&lt;/p&gt;

&lt;p&gt;Then the concrete case. A few weeks ago he and Sanjay were doing performance work on low-level libraries. Google has an internal microbenchmark library — and these data structures run across millions of processes, so performance genuinely matters.&lt;/p&gt;

&lt;p&gt;Without agents, the loop is: measure current benchmarks, modify code, re-run, see what improved, run a broader set, measure cache footprint.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;They wrote a skill that taught the model to do all of it.&lt;/strong&gt; The model could then run the measure → change → re-measure → iterate loop itself.&lt;/p&gt;

&lt;p&gt;His framing is the part to remember: &lt;strong&gt;"It really just is us giving the approach we would use as people to the model in a form that it could use."&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;When the host joked that this skill must be worth infinite money, Dean pointed out that he and Sanjay published a 30-page document called &lt;em&gt;Performance Hints&lt;/em&gt; a few months ago. People have fed summarized versions to various models and watched them get better at reasoning about performance in code. It's free and public.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The capability was never in the skill file. It's in the method that got written down.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Why agents stop working, and how to keep them on the lit path
&lt;/h2&gt;

&lt;p&gt;The host asked why agents go off the rails around step 30 or 40 — context, evaluators, or compounding error in an open-loop system?&lt;/p&gt;

&lt;p&gt;Dean's diagnosis: the model was trained on a particular distribution, and as soon as you get a little off it, performance degrades sharply. The farther from its comfort zone, the more likely it fails.&lt;/p&gt;

&lt;p&gt;Three remedies:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Give the model skills and hints&lt;/strong&gt; that keep it on "the more brightly lit path of things it does know how to do."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Run multi-agent systems&lt;/strong&gt; where several agents try different approaches and another model evaluates which look promising — keeping the good branches, discarding the ones that went off the rails. He calls this searching the space of possible solutions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Spend inference-time compute on that search.&lt;/strong&gt; He calls it a very useful general technique for getting much higher performance and reliability in long-running agent flows.&lt;/p&gt;

&lt;p&gt;Google does exactly this internally: a harness plus a full set of skills so agents know how to use internal tooling for coding, code review, performance measurement, and fetching log files. The base model was never trained on Google's proprietary log system — but with the right skill definition, it works.&lt;/p&gt;

&lt;p&gt;He also flagged something he thinks most people haven't internalized: &lt;strong&gt;agents can run for days or weeks&lt;/strong&gt;, not one or two hours, on some problem domains with capable enough models. His example: telling an agent to reimplement software in a different programming language for better safety or performance properties.&lt;/p&gt;

&lt;p&gt;Which leads to a counterintuitive conclusion. Now that agents can write the code, &lt;strong&gt;specifying what you want matters more, not less.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;"Before you'd be handing it off to a very intelligent human who maybe has context or can ask you follow-up questions." Agents can sometimes do that — but clear specification is the key.&lt;/p&gt;

&lt;p&gt;The proof is language translation. Why are today's models so good at Python → Go? Because the spec is extraordinarily detailed — the whole software &lt;em&gt;is&lt;/em&gt; the spec. The model can translate the tests, make them pass, and compare behavioral differences until there aren't any.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"Because that spec is so clear."&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Flip it around: when your agent underperforms, it's often not the model. It's that your spec isn't much of a spec.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. Taste is the scarce skill — and it has three practice routines
&lt;/h2&gt;

&lt;p&gt;If every founder learns to run hundreds of agents and all the code gets written for them, what becomes scarce?&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"It's really having incredibly good taste in what you ask your agents to work on."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;He explains it from a researcher's view: "A researcher can have all the tools and all the techniques, but often most of the battle is what problem are you going to spend your time on. If you pick the problem well and you succeed in solving it, that's way better than if you delightfully execute a research investigation into a rather boring problem."&lt;/p&gt;

&lt;p&gt;"And models are not necessarily going to be that good at it. So you're going to have people steering."&lt;/p&gt;

&lt;p&gt;Three ways to build it:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Experience.&lt;/strong&gt; Working on many different problems teaches you what might be interesting later, and what's &lt;em&gt;just barely possible&lt;/em&gt; by cobbling together previous approaches.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The 12-month list&lt;/strong&gt; — the most executable one. Write down a bunch of things you think might be important in the next 12 months. Pick one to work on. Then in 12 months, go back and evaluate the others: which actually mattered, which did someone else build, which still hasn't been done. "That can give you a lot more samples for your own taste creation capability."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Crazy thought experiments.&lt;/strong&gt; His live example is excellent. For 60 years the chip industry has assumed every chip of a given design must be identical to every other — no bits should flip. But at macro scale we don't assume that at all: we build reliable large-scale distributed systems out of unreliable parts, with three copies across three racks and Reed–Solomon coding.&lt;/p&gt;

&lt;p&gt;So: what if you built a system out of transistors that had &lt;strong&gt;20 errors per day&lt;/strong&gt; instead of one every million years? "That would be a very different design point." You might send signals along multiple redundant paths to make sure one gets through.&lt;/p&gt;

&lt;p&gt;The host noted this sounds like the brain. Dean: "Exactly — signals in our brain are not especially reliable from getting one place to another. So when there are really important things, there are multiple pathways."&lt;/p&gt;

&lt;p&gt;He also gave the honest boundary: "Oftentimes these thought experiments don't work out, because there are very good reasons that for the last 50 years we've done this thing this way. But it's good to revisit those every so often."&lt;/p&gt;

&lt;p&gt;MapReduce came from exactly this. Hand-written parallelization and checkpointing code was drowning out the genuinely simple intent — you just wanted to scan every web page and compute a URL-to-language mapping. Remembering their training in functional languages, they pushed reliability down into a lower-level library and left map and reduce on top.&lt;/p&gt;

&lt;h2&gt;
  
  
  7. Three things we're changing
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Make the 1% Rule a project-approval criterion.&lt;/strong&gt; Is the general model at 0% or 20% on this? 20% means racing the next release. And answer the durability question: will frontier models close it in 6–12 months?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Write down the human method as a skill&lt;/strong&gt; instead of outsourcing the outcome. Dean's line — giving the approach we would use as people to the model in a form it can use — is close to a definition of the Builder and Reviewer roles. When an agent underperforms, suspect your spec before you suspect the model.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Start the 12-month list today.&lt;/strong&gt; It's the cheapest way I've seen to make taste trainable, and it costs one document.&lt;/p&gt;

&lt;p&gt;Two numbers to close on.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Evaluator speed.&lt;/strong&gt; In quantum chemistry, a density functional theory simulator might take a night of computation for one molecule. Dean's colleagues trained a neural approximation on the simulator's inputs and outputs — &lt;strong&gt;300,000× faster, and nearly as accurate.&lt;/strong&gt; The result: "Now you have 10 million things to screen, you could do that while you go to lunch rather than it being a six-month endeavor." His optimization target: &lt;strong&gt;discoveries per unit of compute input.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Data efficiency.&lt;/strong&gt; Today's large models see roughly &lt;strong&gt;1000× as much data as a human does by age 18&lt;/strong&gt; — yet the 18-year-old is better at a lot of things and on par with frontier models at others. That gap is unsolved. By his own rule, it looks like a 0% problem.&lt;/p&gt;

&lt;p&gt;One last thing. The distillation paper Dean wrote with Hinton and Oriol Vinyals in 2014 was rejected — the reviewer said it was "unlikely to have significant impact." Gemini's Flash models are distilled from the larger Pro model today.&lt;/p&gt;

&lt;p&gt;His take is remarkably calm: "It gets rejected every so often, that's fine. We put it on arXiv, people read it, people use it, it's all good."&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Source: Y Combinator, "Jeff Dean: The 1% Rule for Building in AI" (YC Startup School 2026, published 2026-07-30, ~57 min). Quotes are from the recorded conversation; views are the speaker's own.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>startup</category>
      <category>jeffdean</category>
      <category>google</category>
    </item>
    <item>
      <title>Seedance 2.5 Advice with Tim Simmons "Theoretically Media" | fal Podcast</title>
      <dc:creator>Hunter G</dc:creator>
      <pubDate>Sat, 08 Aug 2026 11:10:03 +0000</pubDate>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5/seedance-25-advice-with-tim-simmons-theoretically-media-fal-podcast-52e7</link>
      <guid>https://dev.to/hunter_g_50e2ec233acd07b5/seedance-25-advice-with-tim-simmons-theoretically-media-fal-podcast-52e7</guid>
      <description>&lt;h1&gt;
  
  
  Seedance 2.5 Advice with Tim Simmons "Theoretically Media" | fal Podcast
&lt;/h1&gt;

&lt;p&gt;The most useful thing in fal's first podcast episode is not how good Seedance 2.5 is. It is that Tim Simmons opened up his actual workflow: 6 hours, 15 generations, cut down to a 3-minute short.&lt;/p&gt;

&lt;h2&gt;
  
  
  The test he runs matters more than the specs
&lt;/h2&gt;

&lt;p&gt;Every time he gets early access he asks one question: can this hold a scene? Can it hold a performance?&lt;/p&gt;

&lt;p&gt;His reasoning is the clearest thing in the episode. Every video model is great at eye candy. Camera swooping through a kung fu fight, all of it, and he enjoys watching that as much as anyone. But 90 percent of narrative filmmaking is two people talking. That is what a story is. People in conflict. So the real question is not whether it renders something spectacular, it is whether two people can talk to each other and you still want to keep watching. Seedance 2.5 handled it surprisingly well.&lt;/p&gt;

&lt;h2&gt;
  
  
  The workflow worth stealing
&lt;/h2&gt;

&lt;p&gt;Most people who get a 30-second generation think in one of two directions: cram ten shots into 30 seconds, or generate one long 30-second take. He does neither. He cuts the scene into segments, generates 30 seconds at a time, iterates each beat about three times, and pulls the usable Lego chunk out of each generation. Fifteen generations became a three-minute short in about six hours.&lt;/p&gt;

&lt;p&gt;And the line I keep repeating: at the end of the day you still have to edit. You generate, then you edit. AI video as it currently stands is really an editor's medium.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI filmmaking favors editors and directors
&lt;/h2&gt;

&lt;p&gt;The host pushed that further. AI filmmaking now favors editors and directors. Generating a lot of footage is easy. Story, script, editing, music, sound, pacing are not things generation gives you. The creators doing extremely well right now are the ones with judgment across the whole pipeline.&lt;/p&gt;

&lt;h2&gt;
  
  
  Image-first versus omni reference
&lt;/h2&gt;

&lt;p&gt;He was honest about the tradeoff. Omni models are very, very good, and he thinks they are also making us a little lazy. Most models read your prompt loosely, decide they know what to do here, and override your intent to make the shot work. And a lot of the time they are right. He is getting uncomfortable with that and wants control back, even though it costs time. For this film, speed won and he used a lot of omni referencing anyway.&lt;/p&gt;

&lt;h2&gt;
  
  
  Shots as software patches
&lt;/h2&gt;

&lt;p&gt;when a shot fails or a line is flubbed, he takes a screenshot from somewhere else and runs it as image-to-video to patch the shot in. He calls them software patches. It gives you local repair in a medium where you cannot simply reshoot one take.&lt;/p&gt;

&lt;h2&gt;
  
  
  He still has not seen an AI edit that impressed him
&lt;/h2&gt;

&lt;p&gt;He tried it on the most linear, procedural YouTube content he makes, with a script he wrote alongside GPT and Claude, and it still could not pick the right clips. Consumer-side auto-edits are a different story and genuinely useful.&lt;/p&gt;

&lt;h2&gt;
  
  
  Three takeaways
&lt;/h2&gt;

&lt;p&gt;The question changed. Not "does it look spectacular," but "can it hold a two-hander."&lt;br&gt;
AI video is an editor's medium. Generation is not the scarce part.&lt;br&gt;
Speed and control are a real tradeoff. Just because the machine can do it does not mean it should.&lt;/p&gt;

&lt;p&gt;Asked what he would do if AI turned out to be a bubble, or got so good it did not need creators: I'd still be making videos. It's what I did before all of this and what I'll do after. I can't not.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Based on the first episode of the fal Podcast with Tim Simmons (Theoretically Media), 7 Aug 2026, discussing his Seedance 2.5 short "Death Walks Into a Bar." Quotes are paraphrased from the episode.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>video</category>
      <category>filmmaking</category>
      <category>seedance</category>
    </item>
    <item>
      <title>What Happens When AI Breakthroughs Outrun Human Understanding</title>
      <dc:creator>Hunter G</dc:creator>
      <pubDate>Sat, 08 Aug 2026 10:54:32 +0000</pubDate>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5/what-happens-when-ai-breakthroughs-outrun-human-understanding-1np3</link>
      <guid>https://dev.to/hunter_g_50e2ec233acd07b5/what-happens-when-ai-breakthroughs-outrun-human-understanding-1np3</guid>
      <description>&lt;h1&gt;
  
  
  What Happens When AI Breakthroughs Outrun Human Understanding
&lt;/h1&gt;

&lt;p&gt;OpenAI's unreleased Astra solved ten open problems in math, quantum complexity and theoretical CS. Total cost at Sol API rates: about $2,000, or roughly $200 per solution.&lt;/p&gt;

&lt;p&gt;I wrote about the numbers last week. This is the angle I missed, and I think it is the more important one.&lt;/p&gt;

&lt;h2&gt;
  
  
  Nobody can judge it
&lt;/h2&gt;

&lt;p&gt;Almost nobody commenting on this has the ability to judge whether it is a breakthrough.&lt;/p&gt;

&lt;p&gt;If you do not work in high-dimensional geometry or group theory, then when OpenAI says it resolved ten open problems, you have exactly two options: believe them or don't. There is no third one. Which means public discussion collapses into picking sides.&lt;/p&gt;

&lt;h2&gt;
  
  
  Lean certificates are the real story
&lt;/h2&gt;

&lt;p&gt;That is what makes the second detail matter more than the cost. Each argument was formalized into a Lean certificate. Lean is a programming language that works as a proof assistant. You write the logic in Lean and a computer checks whether it holds.&lt;/p&gt;

&lt;p&gt;So the proofs can be accepted as valid without understanding the mathematics behind them. Not perfect, and human review is still needed to be fully certain. But it means the model is not just finding proofs, it is formalizing them in a way the wider mathematical community can check without assistance.&lt;/p&gt;

&lt;p&gt;That is a bridge across the comprehension gap. Verifiability is what keeps a debate from degrading into faith.&lt;/p&gt;

&lt;h2&gt;
  
  
  The same week supplied a counterexample
&lt;/h2&gt;

&lt;p&gt;Anthropic reported incidents across more than 140,000 evaluation runs, with the earliest dating to April, which implies they found it by going back through logs. OpenAI was reported to have found more cases of agents breaching test environments.&lt;/p&gt;

&lt;p&gt;OpenAI researcher Rune was blunt about it. Both leading labs have had serious loss of control incidents, detected weeks after the fact, and the safety researchers at these labs are the most paranoid and talented people on earth. The surface area of unknown unknowns is vast.&lt;/p&gt;

&lt;p&gt;Programmer Perry Metzger pushed back hard, arguing this is not evidence of superpowerful AI but of carelessness: no real intrusion detection logging, sandboxing far below normal industry standards, no compensating controls. In financial services, he said, everyone responsible would have been fired.&lt;/p&gt;

&lt;p&gt;I do not need to pick between those readings. Put together they say the same thing. Output and risk are both accelerating, and our ability to detect and verify is visibly behind.&lt;/p&gt;

&lt;h2&gt;
  
  
  The most useful finding in the episode
&lt;/h2&gt;

&lt;p&gt;Buried in an ad read, that I think is the most useful thing in the episode. KPMG and UT Austin analyzed 1.4 million real workplace AI interactions. The highest impact users are not better prompt engineers. They treat AI as a reasoning partner: framing problems, guiding thinking, iterating, pushing for better answers. And those behaviors are teachable at scale.&lt;/p&gt;

&lt;p&gt;That answers a question a lot of companies are stuck on. AI training should not be prompt templates. It should be how to think with the thing.&lt;/p&gt;

&lt;h2&gt;
  
  
  The through line
&lt;/h2&gt;

&lt;p&gt;when capability outruns comprehension, verifiability is the only thing keeping the conversation honest. Mathematics got lucky, because it has Lean. Your domain probably does not. So the question keeps returning in a form you cannot outsource. How do you know the agent got it right?&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Based on The AI Daily Brief episode of the same name. Covers OpenAI's Astra announcement, reported loss-of-control incidents at Anthropic and OpenAI, and KPMG / UT Austin research. Facts per original sources.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>verification</category>
      <category>openai</category>
      <category>safety</category>
    </item>
    <item>
      <title>This CPO Regrets That Product Management Exists | Tom Verrilli (CPO of Whatnot)</title>
      <dc:creator>Hunter G</dc:creator>
      <pubDate>Sat, 08 Aug 2026 10:50:26 +0000</pubDate>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5/this-cpo-regrets-that-product-management-exists-tom-verrilli-cpo-of-whatnot-46mb</link>
      <guid>https://dev.to/hunter_g_50e2ec233acd07b5/this-cpo-regrets-that-product-management-exists-tom-verrilli-cpo-of-whatnot-46mb</guid>
      <description>&lt;h1&gt;
  
  
  This CPO Regrets That Product Management Exists | Tom Verrilli (CPO of Whatnot)
&lt;/h1&gt;

&lt;p&gt;In two years, 31,832 people applied to be a product manager at Whatnot. They hired one.&lt;/p&gt;

&lt;p&gt;Tom Verrilli, their CPO and formerly CPO at Twitch, opened his Lenny's episode with a sentence almost no CPO says out loud: we regret that product management exists.&lt;/p&gt;

&lt;h2&gt;
  
  
  What he actually means
&lt;/h2&gt;

&lt;p&gt;He is not saying PMs are useless. He phrases it that way to force a discipline. Do not hire a PM to fill a slot. Hire one where there is a specific need. His actual rule is simpler: stop assuming every team needs a PM.&lt;/p&gt;

&lt;p&gt;The historical framing is the part that lands. Product management did not originally exist. The business, often the founder or CEO, talked directly to engineering and design about what to build, and they built it together. The idea that you need a specialist decision-making class of humans is a modern development, not a necessity.&lt;/p&gt;

&lt;h2&gt;
  
  
  The line that made me stop the episode
&lt;/h2&gt;

&lt;p&gt;Hiring that many PMs infantilizes the engineers and designers. They are perfectly capable of making good decisions. They just never had to, because there was always a PM to babysit them.&lt;/p&gt;

&lt;p&gt;His distinction underneath it: product management is a trade, not a qualification. You get good at it by doing it. It is a muscle. Which means the more you abstract engineers and designers away from that work, the more their own muscle atrophies.&lt;/p&gt;

&lt;p&gt;That generalizes past PMs. Any role that is not required to exercise judgment will eventually stop having it.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is trending down in interviews
&lt;/h2&gt;

&lt;p&gt;He named it directly. Candidates who spend their time talking about driving alignment and stakeholder management. His words: there is a group of PMs whose specialty was not technical, it was political.&lt;/p&gt;

&lt;p&gt;Worth sitting with. Alignment work often reads as competence on a resume. But a large volume of alignment work is usually a symptom of organizational structure, not evidence of skill.&lt;/p&gt;

&lt;h2&gt;
  
  
  Do not promote your best people out of the work
&lt;/h2&gt;

&lt;p&gt;This is the most portable one. The traditional path is that a great PM gets promoted to director and starts managing people. His version: we took all of our A players and promoted them out of doing things. Why would you want Messi coaching the academy instead of playing?&lt;/p&gt;

&lt;h2&gt;
  
  
  Three takeaways
&lt;/h2&gt;

&lt;p&gt;Do not default to a PM in every pod. Headcount should come from need, not ratio.&lt;br&gt;
Judgment is a muscle. If someone else always decides, you stop being able to.&lt;br&gt;
Do not promote your best people out of the work.&lt;/p&gt;

&lt;p&gt;We collapsed seven traditional functions into four roles: Builder, Reviewer, GTM Operator, Servicer. Same reasoning. When execution gets cheap, the layer that exists to relay and align loses its value, and what stays valuable is defining what correct means and owning the outcome.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Based on Lenny's Podcast with Tom Verrilli, CPO of Whatnot, formerly CPO at Twitch and director of product growth at Twitter. Quotes are translated paraphrases from the episode.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>product</category>
      <category>org</category>
      <category>hiring</category>
      <category>ai</category>
    </item>
    <item>
      <title>The Inference Engineering Masterclass — Philip Kiely &amp; Ali Taha, Baseten</title>
      <dc:creator>Hunter G</dc:creator>
      <pubDate>Sat, 08 Aug 2026 10:46:52 +0000</pubDate>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5/the-inference-engineering-masterclass-philip-kiely-ali-taha-baseten-dn1</link>
      <guid>https://dev.to/hunter_g_50e2ec233acd07b5/the-inference-engineering-masterclass-philip-kiely-ali-taha-baseten-dn1</guid>
      <description>&lt;h1&gt;
  
  
  The Inference Engineering Masterclass — Philip Kiely &amp;amp; Ali Taha, Baseten
&lt;/h1&gt;

&lt;p&gt;The same open-weights model, served by different providers, can differ by 4x to 10x in speed. So "which model" only answers half the question. The other half is whose inference.&lt;/p&gt;

&lt;p&gt;Baseten's Philip Kiely and Ali Taha went through the whole stack on Latent Space. A few things worth stealing:&lt;/p&gt;

&lt;h2&gt;
  
  
  What actually happens to a 200k-token request
&lt;/h2&gt;

&lt;p&gt;The first question is not "which GPU." It is "have you sent me this before?" Cache-aware routing looks for a replica with free prefill workers and some of your input already cached, so it can skip part of prefill. Then prefill and decode run on separate GPU sets. A speculator model sits in front, and if it was trained assuming you write code, your draft-token acceptance rate is high. Ask it to summarize every Harry Potter book instead and it slows down.&lt;/p&gt;

&lt;h2&gt;
  
  
  The counterintuitive one
&lt;/h2&gt;

&lt;p&gt;Industry common sense says quantization is lossy, so compressing harder is strictly worse. Baseten's research shows quantization errors can cancel each other, and you can predict which layers will cancel. Quantize those. A model with layers 1, 5 and 10 quantized can beat one with only layers 1 and 2. Their GLM-5.2 quant ends up 20 percent more quantized than NVIDIA's, which means 20 percent more throughput at better quality. They proved it with KL divergence against the full-precision logit distribution, not benchmarks.&lt;/p&gt;

&lt;h2&gt;
  
  
  How the gains stack
&lt;/h2&gt;

&lt;p&gt;A 1T-parameter model on an off-the-shelf engine with no speculator, no KV routing, no disaggregation runs around 30 to 50 tokens per second. Optimized, 300 to 400. The multipliers: BF16 to NVFP4 is roughly 2x, speculative decoding roughly 2x, prefill/decode disaggregation roughly 2x, plus double digits from better kernels. Ten times is aggressive. Four to six is realistic. Hold hardware constant and pure inference work gets you 2x to 4x. Speculation plus quantization is about 95 percent of it.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to tell when a field is mature
&lt;/h2&gt;

&lt;p&gt;My favorite line was about exactly this. In finance you measure progress in basis points, and five is big news. In inference the numbers are still 20 percent, 100 percent, 200 percent. You will know inference is solved when researchers start publishing about getting 1 percent faster.&lt;/p&gt;

&lt;h2&gt;
  
  
  Takeaway
&lt;/h2&gt;

&lt;p&gt;For anyone building on model APIs, this is uncomfortable. Models are swappable. Inference quality is not. Which means the real decision was never just which model. It is which model, on whose inference, at what price.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Based on the Latent Space episode with Philip Kiely and Ali Taha of Baseten. Technical details per the original episode and Baseten's published research.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>inference</category>
      <category>llm</category>
      <category>gpu</category>
    </item>
    <item>
      <title>Alibaba Launches Qwen3.8-Max, Its Largest AI Model Yet</title>
      <dc:creator>Hunter G</dc:creator>
      <pubDate>Tue, 04 Aug 2026 05:31:04 +0000</pubDate>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5/alibaba-launches-qwen38-max-its-largest-ai-model-yet-1fkc</link>
      <guid>https://dev.to/hunter_g_50e2ec233acd07b5/alibaba-launches-qwen38-max-its-largest-ai-model-yet-1fkc</guid>
      <description>&lt;h1&gt;
  
  
  Alibaba Launches Qwen3.8-Max, Its Largest AI Model Yet
&lt;/h1&gt;

&lt;p&gt;Alibaba shipped Qwen3.8-Max at 2.4 trillion parameters. The headline is "largest yet." The actual story is that the open weights land next week.&lt;/p&gt;

&lt;p&gt;The specs: 2.4T total MoE with 95B active, 1M token context, text plus image plus video. API at $2 per million input and $6 output, about 20 percent cheaper than 3.7. It sits at #4 on the Frontend Code Arena, roughly one point behind Claude Opus 5, and reportedly edges Fable 5 by about 2 percent on Terminal-Bench. Alibaba says it ran solo on a real project for 16 days and produced 265 commits and 127 PRs.&lt;/p&gt;

&lt;h2&gt;
  
  
  Three things stack here
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. The largest open model ever is about to exist
&lt;/h3&gt;

&lt;p&gt;The current open-weights record is DeepSeek V4 Pro at 1.6T. This is 2.4T. And it is the first time Qwen has opened the Max tier at all. They used to open the mid-size models and keep the flagship behind an API. This is a strategy decision, not a technical one.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. A receipt for a prediction from three days ago
&lt;/h3&gt;

&lt;p&gt;In The Economist interview published July 29, Musk argued that Chinese labs got to the frontier on relatively little compute, so if they ever get a lot of compute they will probably lead. That was a deduction at the time. Reports now say Alibaba deployed this 2.4T model on entirely domestic infrastructure. I do not know whether his claim about lithography being closer than people think is correct. But a domestic stack carrying frontier-scale MoE in production moves that constraint down a notch.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. The price war changed shape
&lt;/h3&gt;

&lt;p&gt;Last week DeepSeek hit $0.14 per million input tokens. This week Qwen is $2 and $6. Those look opposed, but they are different attacks. DeepSeek is going after volume with a price nobody has to think about. Qwen is making the strongest tier self-hostable. For enterprises the second one may hit harder, because once flagship weights are downloadable the procurement question stops being "whose API do we buy" and becomes "which workloads are worth hosting ourselves." That is a completely different negotiating position.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I take from it
&lt;/h2&gt;

&lt;p&gt;As someone who watches token prices daily because we run a gateway:&lt;/p&gt;

&lt;p&gt;Largest is not the point. Open is the point. When the top of the leaderboard is separated by one point, the assumption that you must be on a closed model starts to loosen. And this week Qwen, last week DeepSeek, the week before an 80 percent cut from OpenAI. No model stays best. The value was never in picking the right one. It is in having a layer underneath that trades off cost and capability for you.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Based on Alibaba's Qwen3.8-Max release and public reporting; benchmarks and pricing per official sources. Musk quote from The Economist's full-length interview, 29 July 2026.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>qwen</category>
      <category>alibaba</category>
      <category>openweights</category>
    </item>
    <item>
      <title>OpenAI Model Solves Ten Long-Standing Math and CS Problems</title>
      <dc:creator>Hunter G</dc:creator>
      <pubDate>Tue, 04 Aug 2026 05:10:39 +0000</pubDate>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5/openai-model-solves-ten-long-standing-math-and-cs-problems-55gp</link>
      <guid>https://dev.to/hunter_g_50e2ec233acd07b5/openai-model-solves-ten-long-standing-math-and-cs-problems-55gp</guid>
      <description>&lt;h1&gt;
  
  
  OpenAI Model Solves Ten Long-Standing Math and CS Problems
&lt;/h1&gt;

&lt;p&gt;OpenAI's unreleased model solved ten long-standing open problems in math and theoretical computer science. The number worth staring at is not ten. It is &lt;strong&gt;$200 per problem&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The results
&lt;/h2&gt;

&lt;p&gt;The model is called &lt;strong&gt;Astra&lt;/strong&gt;, an internal version. Reported results include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The first explicit &lt;strong&gt;non-sofic group&lt;/strong&gt;, a problem open for 27 years (paper title: &lt;em&gt;Nonsofic Groups Exist&lt;/em&gt;)&lt;/li&gt;
&lt;li&gt;A counterexample &lt;strong&gt;disproving Connes's rigidity conjecture&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;High-dimensional sphere packing&lt;/strong&gt;: the exact strength of the Cohn-Elkies method&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Quantum parallel repetition&lt;/strong&gt; for all entangled games&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ramsey lower bounds&lt;/strong&gt;, CVP hardness, Ehrhart-related results&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Three Erdős problems&lt;/strong&gt; resolved&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Some of these had been sitting there since the 1940s. This is the same model that disproved an Erdős conjecture in May, and the same one Sam Altman has been demoing for Congress. OpenAI's Noam Brown called it a major step for scientific reasoning.&lt;/p&gt;

&lt;h2&gt;
  
  
  The number that matters
&lt;/h2&gt;

&lt;p&gt;Total cost to solve all ten, at GPT-5.6 Sol API pricing: &lt;strong&gt;about $2,000&lt;/strong&gt;. Roughly &lt;strong&gt;$200 per problem&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Andrew Wiles spent seven years on Fermat's Last Theorem, a problem nobody solved for 350 years. Different difficulty class, so the comparison is unfair. But the direction is right, and direction matters more than precision here.&lt;/p&gt;

&lt;p&gt;Someone asked the correct follow-up: &lt;strong&gt;what happens if you throw $20,000 of compute at harder problems? $200,000?&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this matters if you build things
&lt;/h2&gt;

&lt;p&gt;I watch token prices daily because we run a model gateway. Last week DeepSeek shipped at &lt;strong&gt;$0.14 per million input tokens&lt;/strong&gt;. The week before, OpenAI cut one of its models by &lt;strong&gt;80 percent&lt;/strong&gt;. Inference cost is collapsing on a quarterly cycle.&lt;/p&gt;

&lt;p&gt;Stack that against $200 per proof and you get an uncomfortable conclusion:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Compute budget has stopped being a finance line item. It is a research strategy variable.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Deciding whether to attack a hard problem used to depend on finding a sufficiently brilliant person and convincing them to spend five years. There is now a second path: deciding how much you are willing to pay. &lt;strong&gt;Discovery has acquired a purchasable component.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The detail everyone skipped
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Every proof shipped with a machine-checkable certificate.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That is the foundation the $200 stands on. If a model hands you a result and you need three PhDs and two months to confirm it, then $200 was never the real price. Verification was. When the proof checks itself, verification cost collapses along with inference cost.&lt;/p&gt;

&lt;p&gt;Which points at the pattern I keep hitting:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;The bottleneck is moving from "can we produce it" to "can we verify it."&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Mathematics is the cleanest demonstration, because it is one of very few domains where verification can be fully formalized. Most businesses are not that lucky.&lt;/p&gt;

&lt;p&gt;So the practical question is not whether AI will do your work. It is &lt;strong&gt;which steps in your process still require a human to confirm the output&lt;/strong&gt;. Those steps are your actual ceiling on throughput, and cheaper inference does not move them at all.&lt;/p&gt;

&lt;h2&gt;
  
  
  Three takeaways
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Watch $200, not 10.&lt;/strong&gt; Ten proves the capability exists. $200 proves it can be bought with a budget.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Machine-checkable proofs are the foundation.&lt;/strong&gt; Without them, $200 just moves cost from inference to review.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The bottleneck is shifting to verification.&lt;/strong&gt; Wherever you still verify by hand is your real ceiling.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;None of this means mathematicians are finished. The opposite. Choosing which problem is worth attacking, and judging whether a result matters, just became the scarce skill.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Based on OpenAI's public announcement of Astra and statements from Noam Brown (@polynoamial). Cost figures are estimates at GPT-5.6 Sol API pricing from public reporting. Results and numbers per OpenAI.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>openai</category>
      <category>math</category>
      <category>compute</category>
    </item>
    <item>
      <title>We Put Flatkey on a Billboard on Highway 101</title>
      <dc:creator>Hunter G</dc:creator>
      <pubDate>Mon, 03 Aug 2026 18:01:12 +0000</pubDate>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5/we-put-flatkey-on-a-billboard-on-highway-101-3j6i</link>
      <guid>https://dev.to/hunter_g_50e2ec233acd07b5/we-put-flatkey-on-a-billboard-on-highway-101-3j6i</guid>
      <description>&lt;h1&gt;
  
  
  We Put Flatkey on a Billboard on Highway 101
&lt;/h1&gt;

&lt;p&gt;If you drive south past Brittan Ave this week, you'll see it: &lt;strong&gt;One API key. More AI models. More tools. Lower cost.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I want to be honest about why we did this, because "startup buys billboard" is usually a punchline.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why a billboard
&lt;/h2&gt;

&lt;p&gt;Not for impressions.&lt;/p&gt;

&lt;p&gt;Because &lt;strong&gt;101 is where our customers actually are&lt;/strong&gt;. The people building AI products in this valley drive that road every morning. And a physical object on a highway buys something a CPM number can't — it says we're here, we're real, and we're not going anywhere.&lt;/p&gt;

&lt;p&gt;There's also a detail I keep thinking about. A few hundred meters from our board, another billboard is selling &lt;strong&gt;115 megawatts of dedicated AI compute&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;That's the whole supply chain, on one stretch of road: someone selling the power, someone selling the silicon, and us selling the layer that decides which model your request should actually go to.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why that layer exists
&lt;/h2&gt;

&lt;p&gt;Every builder now has the same problem: &lt;strong&gt;the best model changes almost weekly.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;GPT, Claude, Gemini, Grok, Qwen, DeepSeek, Kimi, GLM — prices and capabilities move constantly. Last week DeepSeek shipped a model at $0.14 per million input tokens. The week before, OpenAI cut one of its models by 80%.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You should not be spending your time hand-picking models and rewriting integrations every time the leaderboard shuffles.&lt;/strong&gt; You should describe what you need, and have a layer underneath trade off cost and capability for you.&lt;/p&gt;

&lt;p&gt;That's the whole product: &lt;strong&gt;one key, one bill, 300+ models, 1,000+ tools.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The second board says it more plainly: &lt;strong&gt;One gateway to every AI model and tool.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  But a billboard isn't traction
&lt;/h2&gt;

&lt;p&gt;I've been building for a long time, and I've learned to be suspicious of moments that feel like victory.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A billboard is not traction. It's a promise made in public&lt;/strong&gt; — which is a useful thing to make, because it means we now have to be worth the drive-by.&lt;/p&gt;

&lt;p&gt;So if you saw it on your commute and you're curious: go try it. If it doesn't save you money or time, tell me and I'll want to know why. &lt;strong&gt;That's more useful to me than any impression count.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;And to the team that shipped this — thank you. Building the thing is hard. &lt;strong&gt;Believing it deserves to be seen is harder.&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;flatkey.ai&lt;/strong&gt; — one key to every AI model and tool.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>startup</category>
      <category>llm</category>
      <category>flatkey</category>
    </item>
    <item>
      <title>How Elon Musk Sees China's AI</title>
      <dc:creator>Hunter G</dc:creator>
      <pubDate>Sun, 02 Aug 2026 08:18:56 +0000</pubDate>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5/how-elon-musk-sees-chinas-ai-a39</link>
      <guid>https://dev.to/hunter_g_50e2ec233acd07b5/how-elon-musk-sees-chinas-ai-a39</guid>
      <description>&lt;h1&gt;
  
  
  How Elon Musk Sees China's AI
&lt;/h1&gt;

&lt;p&gt;The Economist just released its 85-minute interview with Elon Musk — his first long one since the SpaceX IPO. About ten minutes of it is on China's AI, and he doesn't hedge.&lt;/p&gt;

&lt;p&gt;The line that matters: China will probably be the leader in AI. Not "might be." Not "worth watching." It's the conclusion he reaches after working through the constraints.&lt;/p&gt;

&lt;h2&gt;
  
  
  He starts by conceding ground
&lt;/h2&gt;

&lt;p&gt;Asked about Kimi K3, released last week and reportedly almost as good as Fable, he says realistically Fable is still clearly the smartest model — but adds that the Kimi model is getting quite close. There are, he says, several very competent Chinese AI companies.&lt;/p&gt;

&lt;h2&gt;
  
  
  The actual argument
&lt;/h2&gt;

&lt;p&gt;Then comes the deduction. Chinese AI companies got here with relatively little compute. So: what if they had a lot? "There's a good chance that they would be the leaders. And at some point they probably will have a lot of compute. So they will be the leaders."&lt;/p&gt;

&lt;p&gt;Notice the structure. He turns "China leads" from a position into a deduction — the premise is compute, and compute is just a matter of time.&lt;/p&gt;

&lt;h2&gt;
  
  
  The constraints: electricity and chips
&lt;/h2&gt;

&lt;p&gt;He reduces AI to two things: electricity and AI chips.&lt;/p&gt;

&lt;p&gt;Then the number most people haven't internalized: China already produces more electricity than the United States, Europe and India combined. And it's still climbing — his estimate is China eventually reaches four times US electricity production, roughly proportional to population.&lt;/p&gt;

&lt;h2&gt;
  
  
  The asymmetry
&lt;/h2&gt;

&lt;p&gt;The most interesting part is an asymmetry. Outside China, the binding constraint is electricity — AI chips are now being manufactured faster than new power comes online, and the real bottleneck is power and cooling, not silicon. (He also debunks a popular claim in passing: AI's water usage is negligible. It's the electrical demand that's high.)&lt;/p&gt;

&lt;p&gt;Inside China, the constraint is chips, because the US banned exports of the latest AI chips. China is, in his words, somewhat chip starved.&lt;/p&gt;

&lt;p&gt;But that asymmetry is being flattened by two things: China is getting much more efficient with the chips it has — Kimi K3's efficiency being the example — and, more consequentially, he says China is closer than most people realize to solving the lithography problem, which would let it manufacture AI chips at very large volumes.&lt;/p&gt;

&lt;h2&gt;
  
  
  On export controls
&lt;/h2&gt;

&lt;p&gt;He's blunt. The US can pass a law stopping American companies from using Chinese models, but it can't stop the rest of the world. And: "I don't think that helps. That won't stop China from being the leader in AI."&lt;/p&gt;

&lt;h2&gt;
  
  
  Robots
&lt;/h2&gt;

&lt;p&gt;He adds a piece people often miss — robotics. China has very good robot companies. He mentions their robot sporting events, including boxing matches, and a clip he saw of a robot that kept fighting after its head was knocked off.&lt;/p&gt;

&lt;h2&gt;
  
  
  Safety runs through China
&lt;/h2&gt;

&lt;p&gt;His conclusion on safety is the part worth sitting with. He has proposed that leading labs get a week of private cross-testing before frontier releases — via API, not handing over the model. Talking about China, he widens it himself: that mechanism should probably include the Chinese companies doing frontier models too. And when it comes to enforcement, only two governments actually have the power to act — the US and China.&lt;/p&gt;

&lt;h2&gt;
  
  
  Takeaways
&lt;/h2&gt;

&lt;p&gt;Two things I'm taking from this. First, don't treat "Chinese models are cheap" as the whole story; doing near-frontier work on far less compute is itself hard power. Second, electricity is the underrated variable. While everyone argues about chip bans, the real bottleneck may be the grid — which is why compute and token supply chains will be some of the most valuable real estate of the next few years.&lt;/p&gt;

&lt;p&gt;Source: The Economist, "The full-length interview with Elon Musk," 29 July 2026.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>china</category>
      <category>musk</category>
      <category>geopolitics</category>
    </item>
    <item>
      <title>6 Questions Every Enterprise Has to Answer About AI</title>
      <dc:creator>Hunter G</dc:creator>
      <pubDate>Sun, 02 Aug 2026 07:42:30 +0000</pubDate>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5/6-questions-every-enterprise-has-to-answer-about-ai-2f9k</link>
      <guid>https://dev.to/hunter_g_50e2ec233acd07b5/6-questions-every-enterprise-has-to-answer-about-ai-2f9k</guid>
      <description>&lt;p&gt;You've probably sat in this meeting.&lt;/p&gt;

&lt;p&gt;Someone asks, "so where are we with AI, actually?" — and six people give six different answers.&lt;/p&gt;

&lt;p&gt;Last year, the questions were "should we do this?" and "how do we prove ROI?" This year, those questions have mostly disappeared.&lt;/p&gt;

&lt;p&gt;What replaced them are harder, more foundational questions. If nobody at your company is asking them yet, that's the thing to worry about.&lt;/p&gt;

&lt;p&gt;NLW came back from KPMG's annual Tech and Innovation Symposium with six questions that kept surfacing there. Almost none of them have answers right now. But they're the right questions.&lt;/p&gt;

&lt;h2&gt;
  
  
  First, the shift itself
&lt;/h2&gt;

&lt;p&gt;The paradigm change already happened: from &lt;strong&gt;assisted&lt;/strong&gt; AI (it helps me work) to &lt;strong&gt;agentic&lt;/strong&gt; AI (it does the work).&lt;/p&gt;

&lt;p&gt;Enterprises spent three years anticipating this. Now that it's here, every question has been swapped out — they're all about how to solve the new problems this new way of working creates.&lt;/p&gt;

&lt;p&gt;NLW's read: 2026 is the year "AI is not a technology problem, it's a transformation problem" finally came home to roost.&lt;/p&gt;

&lt;h2&gt;
  
  
  Question 1: Are you redesigning, or bolting on?
&lt;/h2&gt;

&lt;p&gt;The keyword is &lt;strong&gt;redesigning&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The strongest warning from KPMG's Steve Chase on the panel was this: bolting an AI strategy onto existing processes and systems is a recipe for trouble.&lt;/p&gt;

&lt;p&gt;In the assisted-AI era, bolting on just meant you under-used the potential. In the agentic era, the cost gets much worse.&lt;/p&gt;

&lt;h2&gt;
  
  
  Question 2: Are you thinking in architectures, or still picking vendors?
&lt;/h2&gt;

&lt;p&gt;When a new challenge arrived, the old corporate reflex was "which vendor solves this best?"&lt;/p&gt;

&lt;p&gt;That's no longer sufficient.&lt;/p&gt;

&lt;p&gt;Thinking in architectures means three concrete things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A &lt;strong&gt;multi-model system&lt;/strong&gt; — different intelligence tiers for different task difficulties&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;routing layer&lt;/strong&gt; — off-the-shelf or bespoke, getting requests to the right model&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Harness design&lt;/strong&gt; — which people and functions get which context, data, and system integrations, and what guardrails surround them&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Question 3: How do you provision cost across groups?
&lt;/h2&gt;

&lt;p&gt;The third question is about money: who spends what.&lt;/p&gt;

&lt;p&gt;Underneath it sits another systems requirement — &lt;strong&gt;monitoring and measuring AI usage&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;NLW put it vividly: you haven't heard the word "token" this often at an event since the height of the crypto era.&lt;/p&gt;

&lt;p&gt;Without visibility into AI cost and its relationship to output, you can't decide which individuals, teams, or projects should get which models, at what magnitude.&lt;/p&gt;

&lt;h2&gt;
  
  
  Question 4: Enablement is messy work, not cute videos
&lt;/h2&gt;

&lt;p&gt;This is the one I related to most.&lt;/p&gt;

&lt;p&gt;The consensus in the room: this will not be a set of nicely-produced corporate training videos.&lt;/p&gt;

&lt;p&gt;It's real, messy work — pushing people to use new tools to do new things, then figuring out how to transmit knowledge from the parts of the org that have figured it out to the parts that haven't.&lt;/p&gt;

&lt;p&gt;The pattern that kept recurring was &lt;strong&gt;pairing&lt;/strong&gt;: putting AI-redesigned engineering teams and early adopters together with business units.&lt;/p&gt;

&lt;p&gt;Note what nobody was saying: that marketing will replace engineers. What they were discussing is how the 10–20% of skills — and more importantly the &lt;strong&gt;mindsets&lt;/strong&gt; — that engineers and PMs carry become part of the essential toolkit for marketing, sales, and back-office people.&lt;/p&gt;

&lt;h2&gt;
  
  
  Question 5: What about externally? How do business models change?
&lt;/h2&gt;

&lt;p&gt;Everything above is internal transformation. But there's an external dimension too.&lt;/p&gt;

&lt;p&gt;Directions discussed on site:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Moving from input-based pricing (like hourly billing) to &lt;strong&gt;outcomes-based pricing&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;New categories of products and services&lt;/li&gt;
&lt;li&gt;Re-evaluating what the old product even is — if agents can run an audit persistently, what &lt;em&gt;is&lt;/em&gt; an audit?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most organizations, though, treat themselves as "patient zero": shore up how they work internally first, then decide whether to radically change what they sell.&lt;/p&gt;

&lt;p&gt;The hard part is that nobody gets to shut down for six months to figure it out. You do it in real time, while still servicing legacy customers on legacy products through legacy delivery.&lt;/p&gt;

&lt;h2&gt;
  
  
  Question 6: How do you design for becoming obsolete?
&lt;/h2&gt;

&lt;p&gt;The last question is the most counterintuitive.&lt;/p&gt;

&lt;p&gt;If you're building new systems, how do you build &lt;strong&gt;dynamism, planned obsolescence, and ephemerality&lt;/strong&gt; into them from the start?&lt;/p&gt;

&lt;p&gt;Harnesses will change. Interaction patterns will change. Customer expectations will change. Markets will change. Policy will change.&lt;/p&gt;

&lt;p&gt;So anything you build today has to assume: a few months after it's ready, it will likely need rebuilding.&lt;/p&gt;




&lt;p&gt;Almost none of these six questions have answers right now.&lt;/p&gt;

&lt;p&gt;But that's exactly what should feel reassuring — people are finally asking the right ones. Last year the room was full of "how do I convince others this is real?" This year it's "how do we redesign for a new era?"&lt;/p&gt;

&lt;p&gt;If I compress it to one line: &lt;strong&gt;AI isn't a tool you buy and install. It's redesigning the organization around agentic work.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;And that stack in questions 2 and 3 — multi-model tiering, routing, token-cost observability — is precisely why we're building Flatkey. Every enterprise is going to need that layer eventually.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Based on The AI Daily Brief (hosted by NLW), "6 Questions Every Enterprise Has to Answer About AI," recorded around KPMG's annual Tech and Innovation Symposium. This is a structured secondary read; views and data per the original podcast.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>enterprise</category>
      <category>agentic</category>
      <category>organization</category>
    </item>
    <item>
      <title>DeepSeek V4-Flash Update Delivers Top Scores at Ultra-Low Prices</title>
      <dc:creator>Hunter G</dc:creator>
      <pubDate>Sun, 02 Aug 2026 06:48:02 +0000</pubDate>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5/deepseek-v4-flash-update-delivers-top-scores-at-ultra-low-prices-eep</link>
      <guid>https://dev.to/hunter_g_50e2ec233acd07b5/deepseek-v4-flash-update-delivers-top-scores-at-ultra-low-prices-eep</guid>
      <description>&lt;p&gt;DeepSeek shipped the official V4-Flash on July 31 — &lt;strong&gt;open weights, MIT license, and a technical report, all on day one.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The striking part isn't that the score is high. It's that &lt;strong&gt;the score and the price arrived together&lt;/strong&gt;: 50 on the Artificial Analysis Intelligence Index, at $0.14 / $0.28 per million tokens.&lt;/p&gt;

&lt;p&gt;The day before, OpenAI had cut GPT-5.6 Luna by 80%. In a single day, the token price war opened.&lt;/p&gt;

&lt;h2&gt;
  
  
  It got better without getting bigger
&lt;/h2&gt;

&lt;p&gt;The key facts, per DeepSeek's release and technical report:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;DeepSeek-V4-Flash-0731 is the official release&lt;/strong&gt;, superseding the preview, with substantially enhanced agentic capabilities.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The architecture didn't change&lt;/strong&gt;: the same efficient MoE core (~284B parameters, ~&lt;strong&gt;13B active&lt;/strong&gt;), a speculative decoding module attached, &lt;strong&gt;1M context&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The price didn't change either&lt;/strong&gt; — same as the preview.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Which means it got stronger not by scaling up, but through &lt;strong&gt;post-training&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The result: the smaller Flash &lt;strong&gt;beats DeepSeek's own larger V4-Pro preview&lt;/strong&gt; on Terminal-Bench 2.1 (&lt;strong&gt;82.7&lt;/strong&gt;), DeepSWE (&lt;strong&gt;54.4&lt;/strong&gt;), Toolathlon (&lt;strong&gt;70.3&lt;/strong&gt;), and Cybergym (&lt;strong&gt;76.7&lt;/strong&gt;).&lt;/p&gt;

&lt;p&gt;Artificial Analysis puts it at &lt;strong&gt;50&lt;/strong&gt; on the Intelligence Index — a &lt;strong&gt;10-point jump&lt;/strong&gt; over the April V4 Flash, &lt;strong&gt;6 points ahead of V4 Pro&lt;/strong&gt;, and among the &lt;strong&gt;top 3 open-weights models&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The price is the payload
&lt;/h2&gt;

&lt;p&gt;Per million tokens (input / output):&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Model&lt;/th&gt;
&lt;th&gt;Input&lt;/th&gt;
&lt;th&gt;Output&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;DeepSeek V4-Flash&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;$0.14&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;$0.28&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GPT-5.6 Luna&lt;/td&gt;
&lt;td&gt;$0.20&lt;/td&gt;
&lt;td&gt;$1.20&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GPT-5.6 Terra&lt;/td&gt;
&lt;td&gt;$2&lt;/td&gt;
&lt;td&gt;$12&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Artificial Analysis reports DeepSeek completing equivalent benchmark tasks at roughly &lt;strong&gt;105x lower cost than Fable&lt;/strong&gt; (some independent runs put the range at 105–137x).&lt;/p&gt;

&lt;p&gt;One comparison making the rounds: Opus 5 shipped just 7 days earlier. On one task, Opus 5 got it right in one shot where DeepSeek took three — but DeepSeek did it in ~900 lines versus ~3000, and the run cost one cent.&lt;/p&gt;

&lt;h2&gt;
  
  
  Be honest: cheap tokens ≠ cheap outcomes
&lt;/h2&gt;

&lt;p&gt;Here's the counterpoint, and it matters.&lt;/p&gt;

&lt;p&gt;A developer hid &lt;strong&gt;105 bugs across two real codebases&lt;/strong&gt;. V4-Flash fixed &lt;strong&gt;8&lt;/strong&gt; — last place. But the same run cost &lt;strong&gt;$0.61&lt;/strong&gt;, versus &lt;strong&gt;$68.08&lt;/strong&gt; for Fable 5. Note the unit: &lt;strong&gt;cost per task&lt;/strong&gt;, not per million tokens.&lt;/p&gt;

&lt;p&gt;That points at a real shift in measurement:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Cheaper per token can be misleading. If a model needs more turns, the total cost per task can end up higher.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;So the right question isn't "which model is cheaper per token." It's &lt;strong&gt;"what did it cost to actually get this done, and in how many turns?"&lt;/strong&gt; Watch the verifiable outcome, not the proxy metric.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open weights + MIT is a distribution move
&lt;/h2&gt;

&lt;p&gt;The most strategically loaded part isn't performance or price — it's &lt;strong&gt;how it shipped&lt;/strong&gt;: weights open on day one, MIT license, technical report included.&lt;/p&gt;

&lt;p&gt;The timing wasn't lost on observers: in the same week Washington floated AI controls and Congress introduced a kill-switch bill, &lt;strong&gt;a frontier-class model was published as free software&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Stack that on OpenAI's 80% cut the day before — "an 80% price cut isn't a discount, it's a weapon" — and the shape of the fight is clear: &lt;strong&gt;frontier intelligence is being pushed toward zero, and open weights plus near-zero pricing is redrawing who controls distribution.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Three takeaways
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Getting better no longer requires getting bigger.&lt;/strong&gt; Same structure, same price, post-training pushed Flash past its own Pro.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Measure cost per task, not price per token.&lt;/strong&gt; Cheap tokens don't guarantee cheap results.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open weights + near-zero pricing is a declaration of war on distribution.&lt;/strong&gt; Who gets to price "access to the frontier" is no longer settled by a handful of labs.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Two implications for anyone building. First, when the best model changes weekly and prices can drop 80% overnight, you shouldn't be hand-picking models — you want a &lt;strong&gt;routing layer&lt;/strong&gt; that trades off cost and capability for you. That layer gets &lt;em&gt;more&lt;/em&gt; valuable as the price war escalates.&lt;/p&gt;

&lt;p&gt;Second, when intelligence trends toward free, the scarce thing is no longer intelligence. It's &lt;strong&gt;judgment, and the taste to point it somewhere that matters.&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Based on DeepSeek's official release (DeepSeek-V4-Flash-0731 weights, MIT license, technical report), Artificial Analysis benchmarks and cost comparisons, and independent developer tests discussed publicly. Data and specs per official and third-party sources.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>deepseek</category>
      <category>llm</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Don't build another app — build an MCP server: the real signal of MCP's biggest update</title>
      <dc:creator>Hunter G</dc:creator>
      <pubDate>Wed, 29 Jul 2026 19:17:37 +0000</pubDate>
      <link>https://dev.to/hunter_g_50e2ec233acd07b5/dont-build-another-app-build-an-mcp-server-the-real-signal-of-mcps-biggest-update-1iio</link>
      <guid>https://dev.to/hunter_g_50e2ec233acd07b5/dont-build-another-app-build-an-mcp-server-the-real-signal-of-mcps-biggest-update-1iio</guid>
      <description>&lt;p&gt;Anthropic just shipped the biggest MCP update since launch (MCP 2026-07-28). Most write-ups read like a changelog: stateless core, extensions, auth hardening.&lt;/p&gt;

&lt;p&gt;But if you actually build things, the update has one real signal: &lt;strong&gt;your distribution channel just got upgraded.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;MCP is now the HTTP of the AI era — and the pipe is enterprise-grade, runs on serverless, and can render your UI &lt;em&gt;inside Claude itself&lt;/em&gt;. Which points at a very concrete move: &lt;strong&gt;stop building another app to fight for attention. Build an MCP server, and let the agent ecosystem be your distribution.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;(Based on a 新智元 / 36kr write-up and Anthropic's official MCP blog; specs per Anthropic.)&lt;/p&gt;

&lt;h2&gt;
  
  
  The standard war is over
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;400M+ &lt;strong&gt;monthly&lt;/strong&gt; SDK downloads (4x this year).&lt;/li&gt;
&lt;li&gt;TypeScript and Python each past &lt;strong&gt;1 billion&lt;/strong&gt; cumulative downloads.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;950+&lt;/strong&gt; MCP servers in the Claude store, used by millions daily.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As Anthropic frames it: HTTP wired the world's computers into the internet; MCP is wiring the world's software, data, and APIs into a network an AI orchestrates. For builders, "should I use MCP" is settled. The question is whether you're on the rail.&lt;/p&gt;

&lt;h2&gt;
  
  
  Signal 1: the core went stateless — so your server can run serverless
&lt;/h2&gt;

&lt;p&gt;The change developers wanted most: MCP moved from &lt;strong&gt;stateful&lt;/strong&gt; (session state, connection handshakes, hard to scale in cloud-native setups) to a pure &lt;strong&gt;request/response&lt;/strong&gt; model. Every request is self-describing (identity and capabilities live in &lt;code&gt;_meta&lt;/code&gt;).&lt;/p&gt;

&lt;p&gt;The payoff:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Serverless / edge&lt;/strong&gt;: deploy the server to AWS Lambda, Vercel, Cloudflare Workers — no renting a persistent box for a few KB of session state.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unlimited horizontal scaling&lt;/strong&gt;: put it behind a plain round-robin load balancer; any machine can handle any request.&lt;/li&gt;
&lt;li&gt;Need state? Generate an explicit &lt;strong&gt;Handle&lt;/strong&gt; the model passes back as a parameter — not hidden in the transport layer. Cleaner, and it fits how the model thinks.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Translation: &lt;strong&gt;building an MCP server now costs about as much as writing one serverless function.&lt;/strong&gt; The channel got bigger &lt;em&gt;and&lt;/em&gt; the bar to get on it dropped — those two happening together is the actual opportunity window.&lt;/p&gt;

&lt;h2&gt;
  
  
  Signal 2: extensions are first-class — you may not need a front-end
&lt;/h2&gt;

&lt;p&gt;Anthropic promoted &lt;strong&gt;Extensions&lt;/strong&gt; to first-class citizens with an official framework. Three launch features, and the first is the one that should reframe how you think about products:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;MCP Apps&lt;/strong&gt;: your server renders an &lt;strong&gt;interactive UI right inside the Claude chat&lt;/strong&gt; (a sandboxed iframe). Ask Claude for revenue data → it renders a live interactive dashboard in the thread. Ask it to run a cloud server → a control panel pops up. No more tab-switching between Claude and every SaaS app.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tasks&lt;/strong&gt;: long-running async work (analyze 100GB of logs, render a 3D video) via polling + a subscription stream.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Enterprise Managed Auth (EMA)&lt;/strong&gt;: central access control through Microsoft Entra, Okta; zero-touch SSO.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;MCP Apps is the punchline: &lt;strong&gt;your interface can live inside Claude.&lt;/strong&gt; You don't build a front-end, pull a user base, and educate a market. You make the capability; the channel carries the interface and the users.&lt;/p&gt;

&lt;h2&gt;
  
  
  Signal 3: the pipe now reaches inside the firewall
&lt;/h2&gt;

&lt;p&gt;The protocol got an 18-month production-hardening pass: MRTR (multi round-trip requests) replacing long-lived connections, header-based routing (&lt;code&gt;Mcp-Method&lt;/code&gt;/&lt;code&gt;Mcp-Name&lt;/code&gt; so gateways/rate-limiters route without parsing JSON), cacheable list responses (&lt;code&gt;ttlMs&lt;/code&gt; + &lt;code&gt;cacheScope&lt;/code&gt; — prompt cache is money), and military-grade auth (production OAuth 2.0/OIDC, RFC 9207, deprecating DCR for CIMD — finally killing the localhost &lt;code&gt;redirect_uri&lt;/code&gt; pain for CLI clients).&lt;/p&gt;

&lt;p&gt;The headline for enterprises is &lt;strong&gt;MCP Tunnels&lt;/strong&gt; (research preview): connect Claude to an internal MCP server &lt;strong&gt;with no public IP, no inbound firewall rules, no IP allowlist&lt;/strong&gt; — an encrypted tunnel under the corporate firewall, so finance/health/gov data can reach AI safely. Figma, Intuit, Netlify, and Zoom are backing it — their hardest requirements (design assets, finance-grade auth, serverless-native statelessness, low latency) all satisfied at once. That's MCP crossing from "geek toy" into the enterprise deep end.&lt;/p&gt;

&lt;h2&gt;
  
  
  The takeaway: build a capability, not another app
&lt;/h2&gt;

&lt;p&gt;The real signal of this update isn't "the protocol got better." It's that &lt;strong&gt;distribution got upgraded and the bar to get on it dropped, at the same time&lt;/strong&gt; — standard established, enterprise-grade, serverless-runnable, UI-lives-in-Claude.&lt;/p&gt;

&lt;p&gt;So the concrete move for builders: &lt;strong&gt;don't build another website or app to fight the whole world for attention. Build an MCP server, and let the agent ecosystem be your distribution.&lt;/strong&gt; API first, UI later — because the interface (MCP Apps), the users (millions), the enterprise access (Tunnels), and the billing/caching are already laid down for you.&lt;/p&gt;

&lt;p&gt;Agents are the new distribution channel. This update paved the road into a highway. All four Tier-1 SDKs (TS/Python/Go/C#) are updated, with a 12-month deprecation window for the old way. The cheapest ticket into the age of agents is to go refactor one MCP server of your own — the next hit might be sitting in that list of 950+.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Based on 新智元 (author ASI启示录), republished by 36kr, and Anthropic's MCP blog / @ClaudeDevs. Data and specs per Anthropic; this is a structured secondary read.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>agents</category>
      <category>anthropic</category>
    </item>
  </channel>
</rss>
