Brian Conrey and Dan Goldston independently validated it: Claude moved a 37-year-old mathematical bound by 25.6 percentage points in a single run, against the 0.8 points human mathematicians accumulated from 1988 to 2025. The same week, Kinney Drugs pulled its AI phone assistant "Burt" after hundreds of complaints, medication delays, wrong refill information, patients burning time trying to reach a human. Both are real. Both are happening this week. The gap between those two outcomes is the actual story.

The difference is not capability. It is where the leverage lands. Anthropic aimed Claude at a narrow, formally verifiable problem with two mathematicians in the loop and a Lean proof as the output. Kinney deployed Synerio's Burt against an open-ended patient workflow with no tolerance for error and no clear escalation path. The first group used AI where the math is bounded and the failure mode is recoverable. The second used it where the failure mode is a delayed prescription. Those two bets don't end in the same place, and the a16z computer-use data showing agents at $6, 8 per hour will push more companies toward the second one before they understand the distinction.

Top developments

  • Claude advances a key Riemann zeta bound by 25.6 points, more than 30x the progress made in the prior 37 years: An unreleased research version of Claude raised the proven lower bound of Riemann zeta zeros lying on the critical line from 41.6% to 67.2%, a 25.6-percentage-point jump versus 0.8 points gained by mathematicians from 1988 to 2025. Two Anthropic mathematicians validated the result, and number theorists Brian Conrey and Dan Goldston reviewed it independently. Claude also produced a formally verifiable Lean proof. One important caveat: this metric cannot reach 100% and still leave the Riemann Hypothesis unproven, because a measure-zero set of counterexamples would not show up in the bound.

  • Mistral AI granted US patent 12,670,045 for "Code implemented tool calls": The fast-tracked patent, filed March 2026 and granted in June, covers a method where an LLM generates a code block to encapsulate tool calls, executes it in a sandbox, pauses when a tool call is pending, sends that call to the client, and resumes execution once the result is returned. The technique is central to how modern AI agents chain actions, making the claim broad enough to draw concern.

  • Kinney Drugs pulls back AI phone assistant after hundreds of customer complaints: The Vermont and New York pharmacy chain deployed an AI phone assistant called "Burt" in May 2026, built by AI company Synerio and named after Kinney's founder, to handle prescription refill requests and inquiries. Customers reported medication delays, incorrect refill information, and privacy concerns. Lawyers told VTDigger that healthcare AI is outpacing regulation, leaving consumers vulnerable. A recurring frustration in healthcare AI deployments: the bot handles only simple cases, while patients with real problems burn time trying to reach a human.

Videos worth watching

Announcements & releases

Worth reading

Discussions & takes

  • Prompting is dead once agents start making the decisions for you, argues senior software engineer Jey: Jey's argument: when an agent acts autonomously, vague prompts like "add authentication" hide a dozen decisions the model will answer without you. The fix is writing a spec before you ship: why, what, constraints, out-of-scope, tasks. He points to a free 99-minute NeurIPS tutorial by DeepLearning.​AI's Andrew Ng and OpenAI's Isa Fulford, where Fulford's line captures it plainly: "the model can't read your mind."

  • Can Agents Use a Computer Yet? We've Got the Data: A new a16z analysis by partners Fabrizio Serafini, Seema Amble, and Eric Zhou finds that computer-use agents now cost roughly $6-8 per hour to run, undercutting offshore outsourced labor at ~$10/hr and US talent at $30-45/hr. The report covers real production deployments on narrow, repeatable workflows such as updating records and moving data, and notes the math keeps improving as inference costs fall and open-source models improve. Critics in the discussion flag that cost-per-hour and cost-per-completed-task are different numbers, and that reliability remains an open question.

  • Mark Zuckerberg attacks 'closed' AI rivals as Meta returns to open models: In a public essay titled "The Future is for Everyone," Zuckerberg argues that superintelligence should be open and distributed rather than controlled by a few institutions, framing closed AI rivals as a threat to individual empowerment. The move accompanies Meta's renewed push toward open-weight models. Some readers are skeptical Meta's motives are purely altruistic, noting the company's history with open-source as a competitive strategy rather than a philosophical commitment.

  • Google Search Is Dying. What Comes Next Is Worse: Writer Vass Bednar argues in The Walrus that AI is hollowing out the open web: as bots scrape and summarize content, the original pages that formed the internet's collective memory become harder to find, sustain, or even reach.

  • Humanising LLM Outputs Is Dumb: Blogger Kuber Mehta argues that prompting LLMs to sound warmer and more human degrades output quality: the results become verbose, harder to parse programmatically, and lose precision without gaining clarity. The case is that plain, dense LLM prose is often more useful than the performative friendliness injected by system prompts.

  • What's the best programming language for coding agents?: Dan Luu runs careful evals challenging the popular claim that concise dynamic languages (Ruby, Clojure, J) are best for LLM coding agents because of lower token costs. He finds most of those claims don't hold up, that the real performance drivers are less obvious, and that the question is harder to answer than widely shared benchmarks suggest. Practitioners in the discussion note practical wins from static analysis tooling: adding type-checking hooks (e.​g. Pyright on every edit) and auto-formatting (e.​g. clang-format) can meaningfully reduce agent errors and wasted token loops, regardless of language choice.