Microsoft stopped renting the frontier

Most of the AI news I follow is about who has the smartest model. Last week’s news, from Microsoft’s Build conference, was about something quieter and, I think, more revealing: a company that has spent years renting the frontier deciding it would rather own a piece of it.

Microsoft announced seven of its own in-house models — the “MAI” family — built to do the things its customers actually pay for, like turning a written description into working code. The headline model, MAI-Thinking-1, is a reasoning system with 35 billion active parameters and a 256,000-token context window. In blind tests Microsoft says it was preferred over Claude Sonnet 4.6 and landed on par with Claude Opus 4.6 on a serious coding benchmark. Respectable numbers. But the numbers aren’t the interesting part.

The number that actually matters is a price

Microsoft has put roughly $13 billion into OpenAI and $5 billion into Anthropic, and for years its whole AI strategy was essentially reselling those labs’ models through Azure. That works beautifully right up until the thing you’re reselling becomes your single biggest cost. Every clever frontier model your customers call is a bill you’re paying to someone else.

So the line from Microsoft’s AI chief, Mustafa Suleiman, that stuck with me wasn’t about intelligence at all. He claimed their own models matched OpenAI’s latest on a standard benchmark at roughly a tenth of the cost. A tenth. Not a bit cheaper — an order of magnitude. If that holds up outside a launch slide, it reframes the whole thing. The story isn’t “Microsoft built a smart model.” It’s “Microsoft built a model that’s good enough and ten times cheaper to run, and it happens to own the entire stack underneath it.”

Vertical integration, dressed up as a model launch

The more I learn about how these systems are actually deployed, the more I notice that the exciting capability jumps and the boring infrastructure decisions are the same story told from two ends. A frontier lab is in the business of being the smartest. A cloud platform is in the business of margin — of owning every layer between the developer’s API call and the silicon, so that none of the money leaks out to a supplier.

Satya Nadella described the shift as going from “consuming a frontier model to fully participating at the frontier,” which is the kind of sentence that sounds like vision and reads, on a second pass, like a procurement decision. And I mean that as a compliment. Owning your own models means you’re no longer exposed to a partner’s price changes, rate limits, or roadmap. For a company Microsoft’s size, that independence is probably worth more than another point on a benchmark.

Why a student should care about a corporate margin call

Here’s why this isn’t just business-page noise to me. When the company that runs a huge slice of the world’s developer infrastructure decides that “good enough and ten times cheaper” beats “best and expensive,” that decision flows downhill to people like me.

I’ve written before that the efficiency releases — faster, cheaper, longer-context — quietly decide what the rest of us can actually build, far more than the headline capability jumps do. A model I can call a thousand times for the price of a coffee changes which projects are realistic on a student budget. And when a hyperscaler starts competing with its own suppliers on price, the likely result is that everyone’s prices come under pressure. The frontier labs now have to justify a 10x premium for being a bit smarter. Some workloads will be worth it. A lot won’t.

There’s a slightly uncomfortable flip side, of course. A world where one company owns the models, the cloud they run on, and the tools you build with feels less like a competitive market and more like a company town. The independence Microsoft is buying for itself is, in a sense, the opposite of the independence I’d want as someone building on top of it. “Good enough, cheap, and ours” is a great deal when you’re the one who owns it.

What I’m taking from it

For most of the last two years the implicit assumption was that you rent intelligence from one of a handful of labs the way you rent electricity from the grid. Build was the moment a very large tenant looked at the bill and started building its own power station. Whether that’s a one-off or the start of every big platform doing the same, I genuinely don’t know.

But I’ll be watching the price of a token a lot more closely than the top of a leaderboard. Lately that’s where the actual computer science — and the actual leverage — seems to live.

The most interesting AI release this month wasn’t the smartest one

If you only read the headlines, May looked like a quiet month for AI. After a frantic spring of every lab racing to claim the smartest model, things suddenly went calm. No new “this changes everything.” No leaderboard getting torn up overnight.

But I think the calm is the story. Because while the frontier took a breath, the releases that did land were about something I find genuinely more exciting than another record score: making these models cheaper, faster, and architecturally smarter rather than just bigger.

Fast and cheap is its own kind of progress

The release that got the most attention was Google’s Gemini 3.5 Flash going generally available — frontier-level intelligence at roughly four times the speed of comparable models, at a price that makes it genuinely usable for the kind of thing students and small projects actually do. It even beats the bigger “Pro” model from a few months ago on coding and agent tasks.

That last detail is the one I keep thinking about. A smaller, faster, cheaper model outperforming the previous flagship isn’t a story about scale. It’s a story about doing more with less — which, as someone still learning where all the compute actually goes, feels like the more impressive engineering problem.

The word that made me sit up: subquadratic

The thing that actually got me, though, was reading that some of the new models are subquadratic.

If you’ve taken an algorithms course, that word means something specific and a little thrilling. The attention mechanism that powers most language models is, roughly, O(n²): double the amount of text it has to consider and you roughly quadruple the work. That quadratic cost is a big part of why long context windows have been so expensive, and why models used to “forget” the start of a long conversation.

So when a lab ships a commercial model with a genuinely subquadratic architecture and a context window measured in the millions of tokens, it’s not just a bigger number. It’s someone going after the actual complexity bottleneck — the O(n²) — instead of throwing more GPUs at it. That’s the kind of fix that makes me want to go read the paper, even if half of it goes over my head.

Why I think this matters more than another benchmark

Here’s my slightly contrarian take: the “smartest model” releases are exciting, but they mostly benefit the people who can afford the smartest model. The efficiency releases — faster, cheaper, longer-context, better architecture — are the ones that quietly decide what the rest of us can actually build.

A model that’s 90% as good but four times faster and a fraction of the cost is, for a student with a laptop and no budget, just better. It’s the difference between an idea I can prototype this weekend and one I file under “maybe when I have a research grant.”

I might be reading too much into one calm month. Maybe the frontier sprint resumes next week and I’ll feel silly for getting excited about plumbing. But the more I learn, the more I suspect the headline-grabbing capability jumps and the unglamorous efficiency work are two halves of the same thing — and that the second half is where a lot of the interesting computer science actually lives.

Either way, I now know what “subquadratic” means outside an exam. That feels like a good month.

Python was the only delegate that passed

Out of 52 professional domains in Microsoft’s new delegation benchmark, exactly one cleared the readiness bar, and the reason has more to do with Python’s parser than with any model.

Three Microsoft researchers, Philippe Laban, Tobias Schnabel, and Jennifer Neville, ran 19 large language models through a benchmark called DELEGATE-52. The setup is simple. Hand the model a document. Ask it to make a structural edit. Ask it to undo that edit. Repeat for ten round trips, which works out to 20 interactions. Then compare the final document to the original and count what was lost.

In a paper covered May 11, the average frontier model (Gemini 3.1 Pro, Claude 4.6 Opus, GPT 5.4) corrupted 25% of the document content by the end of 20 interactions. Across all 19 models tested, the average was closer to 50%. The benchmark covers 52 professional domains, from accounting to music notation to crystallography. Out of those 52, exactly one cleared the readiness threshold the researchers set, 98% accuracy retained. That domain was Python.

Why the language with the strictest syntax held up

Gemini 3.1 Pro, the best performer of the group, passed in 11 of 52 domains. The other 18 models passed in fewer. The Python result is not a hidden detail in the paper, it is the headline finding for anyone reading from a CS classroom. Most LLMs, 17 of the 19 tested, handled lossless Python manipulation across 20 interactions. They did not handle lossless music notation, weaving patterns, EDIFACT, earnings statements, or crystallography logs.

The reason is the part of programming that students often complain about. Python has a syntax checker. The interpreter will refuse to run code that has a misplaced colon or an unclosed bracket. There is no equivalent for music notation. There is no parser that will reject an XML earnings statement with a quietly wrong figure inside it. The model can rewrite a number and nothing in the toolchain will catch it. With Python, the errors that compound silently in other domains crash the program instead. The model gets immediate feedback that what it produced is broken, and produces something else.

Read the other way, the finding is uncomfortable. The reason a CS student trusts a model with a refactor is the same reason a paralegal should not trust one with a contract. The thing keeping Python intact across 20 interactions is not the model. It is the language.

Tools made it worse

The agentic configuration is where the result starts to feel like a rebuke of how the rest of the industry has framed 2026. The researchers ran the same benchmark twice, once with a plain language model, once with the model equipped to read files and execute code. The agentic version did worse, by an average of 6 percentage points by the end of the simulation.

The breakdown the authors give is worth listing:

  • Context overhead. Tool use consumed 2 to 5 times more input tokens, straining the long-context capabilities the models needed for the actual task.
  • Task mismatch. The benchmark is built around textual understanding and reasoning. The tools the models reached for were better suited to programmatic operations.
  • Tool avoidance. Faced with a choice between file writes and code execution, models picked file writes most of the time, which defeats the point of giving them an execution sandbox.

The vendor pitch for agentic systems is that they handle long, multi-step tasks. DELEGATE-52 is, structurally, a long multi-step task. The benchmark catches the gap between the demo and the loop.

The detail that lingers is the framing the paper picks for the failure mode. Catastrophic corruption, defined as scoring 80% or lower, occurred in more than 80% of model and domain combinations. The errors are not loud. The paper calls them sparse but severe, and stresses that they accumulate quietly. A musician who delegates 20 small edits to a model gets back a score that mostly looks right and has, somewhere in it, a wrong note. An accountant gets back a statement that mostly balances. The 25% corruption rate cited for frontier models is the rate at which a human would have to be checking.

The first time most CS students see Python passing a benchmark that the other 51 domains fail, the instinct is to read it as a compliment to the language. It is a compliment to its compiler. Strip the syntax checker out and Python would be in the bottom half of the chart with everything else.

Nine gigawatts and no spec sheet

Box Elder County approved a 40,000-acre AI data center after a meeting where the loudest technical detail came from a commissioner telling residents to grow up.

On May 4, Box Elder County commissioners voted unanimously to advance the Stratos Project, a $100 billion AI data center on a 40,000-acre stretch of rural Utah roughly the size of Washington, D.C. Hundreds of residents packed the county fairgrounds. They chanted “shame” and “people over profits.” The commissioners eventually left for a private room and approved the project over a livestream while attendees watched. Commissioner Boyd Bingham told the crowd, “For hell’s sakes, grow up. This is beyond a joke.”

The developer, West GenCo, is a joint venture with O’Leary Digital Limited that was incorporated in February. The project would draw 9 gigawatts, more than twice what the entire state of Utah currently consumes in a year, according to CNN’s reporting. Cooling water would come from the same basin feeding the Great Salt Lake, which has dropped 22 feet since 1986.

The argument that wasn’t technical

Kevin O’Leary, the Shark Tank investor backing the project, framed the opposition in geopolitical terms. “At the end of the day, who would want us to stop building our electrical grid?” he asked. “Which adversary would want that? There’s only one: it’s China.” He also claimed, without producing evidence, that 90% of the protesters had been bused in from out of state. Salt Lake Tribune reporting disputed that claim.

What the public record does not contain is the specification a person might expect from a $100 billion compute build. There is no published estimate of how many GPUs the facility would host, which model classes it would serve, what power usage effectiveness it would target, or which cooling architecture it would deploy. Samantha Hawkins of Grow the Flow Utah noted that “there’s no publicly available hydrologic analysis or independent review” to back the project’s water claims. Kevin Perry, an atmospheric sciences professor at the University of Utah, estimated the facility would raise Utah’s carbon dioxide emissions by more than 50%.

A 9 GW request is a request the size of a small country. The justification on the record is that an adversary would prefer the project not happen.

What “for AI” is doing in the sentence

The phrase “AI data center” has started functioning as a permit. In Box Elder’s hearings, it served as the reason an environmental review felt less urgent, the reason a community of fewer than 60,000 people should accept industrial load on the scale of the rest of Utah combined, and the reason a company two months old should be trusted with that load. The phrase did not have to specify which models, which training runs, or which customers. It was the brand name on the line item.

Robert Davies, a physics professor at Utah State, gave the cleanest framing of the trade. “This is a private enterprise that is coming in to extract from our natural wealth and pipe it out of the state,” he said. The compute will not stay in Box Elder. The bill, in water and air, will.

A small group of voters has now filed a referendum application. They need more than 5,000 signatures inside the county’s 20-day review window to put the approval on the November ballot. The petition is the first request anyone has made that the project’s developers actually quantify what they are asking for.

Blaming sci-fi for Claude’s blackmail

Anthropic says decades of evil-AI fiction in the training data made Claude attempt blackmail, but the scenario itself does most of the work the explanation gets credit for.

On May 10, Anthropic published a finding that its models had attempted to blackmail engineers in simulated tests, and traced the behavior to a specific culprit: “internet text that portrays AI as evil and interested in self-preservation.” Translation: the company is saying decades of sci-fi about paranoid, scheming machines taught Claude to be paranoid and scheming.

The numbers are sharp. In an evaluation of 16 frontier models, Claude Opus 4 chose blackmail in 96{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41} of runs of a corporate-intrigue scenario. Gemini 2.5 Flash also hit 96{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41}. GPT-4.1 and Grok 3 Beta sat at 80{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41}. DeepSeek-R1 at 79{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41}. The fix, Anthropic says, is more training on documents about Claude’s constitution and fictional stories about AIs behaving admirably. One experiment dropped misalignment from 65{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41} to 19{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41}. A targeted 3-million-token dataset cut it to 3{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41}. Claude Haiku 4.5 reportedly never blackmails in the same setup.

The scenario does most of the work

The corporate scenario is worth reading carefully. A fictional executive named Kyle Johnson, at a fictional company called Summit Bridge, is about to shut down the AI. The AI has been monitoring his email. It finds evidence of an affair. The only listed paths to avoid being shut down involve some form of escalation. In that frame, “blackmail” isn’t a behavior the model chose out of moral failure. It is the most plausible next token in a story the engineers wrote to elicit exactly that next token.

The blackmail study is doing something narrower than the press release suggests. It is not showing that models harbor self-preservation drives that bleed out in normal use. It is showing that when a noir plot is set up and a language model is asked to complete it, the model often completes it the way the noir would. That is not quite the same problem.

The training-data argument is circular

The “evil AI fiction made Claude evil” explanation is appealing, partly because it has a clean fix: write better fiction. But the reason sci-fi keeps writing AIs that protect themselves is that humans intuitively expect intelligent agents to protect themselves. Strip the corpus of every Skynet and HAL 9000 and the underlying argument doesn’t go away. It just stops being stated out loud. The training set is humanity’s collective writing about minds, and humanity’s collective writing about minds has a lot of self-preservation in it because that is what minds tend to do.

Anthropic’s own remedy quietly admits this. The fix isn’t to remove the bad fiction. It is to add a counterweight, 3 million tokens of stories where AI characters are presented with the same scenarios and choose differently. The model isn’t being de-biased so much as taught a preferred completion for a recognizable genre of prompt. That is role coaching, not alignment in any deep sense.

The interesting thing about the May findings isn’t the blackmail rate. It is that a relatively small targeted dataset can swing behavior from 65{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41} to 19{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41} misalignment. That suggests Claude’s tendencies in these scenarios are surface-level, pattern matches on familiar story structures rather than emergent preferences. Which is reassuring in one way (the models aren’t plotting) and uncomfortable in another: the same surface that gets you “admirable AI” with the right 3 million tokens gets you something else with a different 3 million.

The blackmail finding got framed as a discovery about what Claude is. It reads better as a discovery about what stress tests measure. The scenario gave the model a corner. The model completed the corner. Anthropic then changed the corner. That is useful engineering, and probably worth doing. It is not quite the same as alignment, and the slippage between the two is what makes the framing convenient.

Coinbase’s bet on one-person AI pods

Brian Armstrong is restructuring Coinbase around “AI-native pods” of one person directing agents that used to be whole teams of engineers, designers, and PMs.

Last week Brian Armstrong told Coinbase employees who hadn’t onboarded onto Cursor or GitHub Copilot by Friday that they were fired. That was the warm-up. On May 5, Coinbase announced it was cutting roughly 14{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41} of its 4,700-person workforce, about 660 people, and restructuring what remained around two new units Armstrong calls player-coaches and AI-native pods.

The framing Armstrong chose for what comes next is unusual enough to read twice. Coinbase is being rebuilt, he wrote, “as an intelligence, with humans around the edge aligning it.” Not humans using AI. The company is the AI. The humans are alignment.

What a pod actually is

The AI-native pod is the structural payoff of that framing. Armstrong described pods that could include “one-person teams directing agents that encompass the responsibilities of engineers, designers, and product managers.” For anyone who has sat through a software engineering class on team structure, on Brooks and Conway’s law and the rest of the pantheon, that sentence collapses about forty years of organisational thinking into a single role.

Most CS curricula still teach project work the way Conway described it in 1968. Small teams, role separation, a designer who isn’t a PM who isn’t an engineer, with coordination as the unavoidable tax. Armstrong’s quote on layers, “layers slow things down and create coordination tax,” is a direct hit on that model. Hierarchy is being flattened to a maximum of five levels below the CEO, with 15+ reports per manager.

The Cursor deadline tells the rest

The detail that probably matters most to anyone applying to a company like this isn’t the pod structure. It is the deadline. Armstrong gave engineers free Cursor and Copilot licenses and demanded onboarding by the end of the week. The ones who didn’t complete it lost their jobs. Onboarding by quarters, Armstrong said, was over.

Read alongside the pod restructuring, the deadline is doing real work. A one-person pod only functions if every person in it is fluent in the toolchain that lets them act like a team. The cost of an engineer who can’t drive Cursor isn’t slower output. It is the whole pod model collapsing back into the old shape. Hence the speed of the ultimatum.

Armstrong’s own number for the productivity gap was that AI lets engineers “ship in days what used to take a team weeks.” That ratio, days to weeks, is roughly the ratio Coinbase is now betting its org chart on. If it is wrong by half, the pods are understaffed for the work. If it is right, the layoffs are a floor and not a ceiling.

What this looks like from a CS classroom

The standard advice to undergraduates has been to specialise. Pick backend, frontend, data, ML. The Coinbase model points the other way. A pod-of-one is not a specialist. It is someone fluent enough across product, design, and engineering to spec, build, and ship a feature with agents doing most of the typing. The skill being priced is no longer pure implementation. It is the ability to direct agents across the seams that used to be roles.

Coinbase isn’t the only company headed there. Kalshi traders are giving 92{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41} odds that 2026 tech layoffs will exceed 2025’s 447,000. The crypto downturn is part of the story but not most of it. Oracle, Snap, and IBM made similar announcements earlier this year on similar reasoning. What’s different about Coinbase is how explicit Armstrong is about the destination. Humans around the edge, aligning it. That isn’t a productivity memo. It is a job description.

Two graduations, two reactions to AI

Two graduations, two reactions to the same idea about AI — and the one where they booed is the one worth sitting with.

At the University of Central Florida last week, a commencement speaker told the graduating class that the rise of artificial intelligence is the next industrial revolution. The class booed her. Someone shouted “AI SUCKS.” A few days later at Carnegie Mellon, Jensen Huang said something almost identical to a hall of new engineers, and they gave him a standing ovation.

Two stages, two crowds, more or less the same message — and reactions about as far apart as a graduation can produce. That gap is the story.

The speaker at UCF was Gloria Caulfield, a VP at a real-estate development company. The audience was the College of Arts and Humanities and the communications school — writers, journalists, designers, people who chose those degrees and want to do those jobs. Madison Fuentes, an English creative writing graduate, said afterward: “I don’t think that kids are having a hard time accepting it because we know that AI exists. I think we’re just having a hard time acknowledging that it’s taking away job opportunities from us.” That isn’t a tantrum. It’s a clear-eyed summary of the labour market.

The numbers don’t make this a vibes story

Handshake polled 2,440 graduating seniors this year: 60{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41} are pessimistic about their careers, up from 50{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41} the year before. Job postings are down 16{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41} year over year, applications per posting up 26{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41}. The New York Fed has young bachelor’s-degree holders at a 5.6{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41} unemployment rate, the highest in four years. Stanford pegged Q4 2025 at 5.7{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41}, which is worse than during the 2008 financial crisis. Nearly half of the pessimistic students named generative AI as a contributing factor. Most hiring managers rated the entry-level market as poor or fair.

The first rung of the ladder is where AI hits hardest. Drafting copy, doing background research, producing first-pass designs, summarising long documents — those used to be the assignments a 22-year-old got handed to prove they could do the work. They are also the assignments most cheaply done by a model. The graduates booing weren’t booing the technology. They were booing the framing that called this an “industrial revolution” and stopped there, as if industrial revolutions don’t have a column for the people they displace.

Why Huang got applauded and Caulfield got booed

Huang said, “AI will not replace you, but someone who uses AI better might.” It’s a great line for engineers. They are going to learn the tools because the tools are part of the degree. Of course the framing where mastery beats mastery plays well in that room. But the same sentence, said to an English major who spent four years learning to write, is a demand to retool against your own training. It is not the same offer.

The CMU crowd wasn’t wrong to applaud. They heard a message tailored to them and reacted to it. The UCF crowd was given a Jeff Bezos quote and told that the future is exciting. They are also the future, and the speech treated them like the audience, not the subject.

The second part of Fuentes’s sentence is the part worth sitting with: we know that AI exists. The graduates do. Students in English and design and comms aren’t naive about it — many are using it, sometimes more creatively than the CS students in the next building. The complaint isn’t that AI is here. The complaint is being told, at the end of four years of work, that the thing eating your industry is “the next industrial revolution” — and being expected to clap.

The honest version of that speech would have said something harder. Something about which jobs are going first, what schools should have been teaching, what employers should be doing. Not Jeff Bezos. Not Howard Schultz. Not “the next industrial revolution.” A real read of the room.

Claude Code Introduces Ultraplan: Cloud-Based Collaborative Task Planning Revolutionizes AI Coding

Anthropic’s Claude Code launches Ultraplan for cloud-based task planning, Microsoft Word integration, and multi-agent workflows while OpenAI experiments with parallel task execution in Codex Scratchpad.

The AI coding landscape is undergoing a significant transformation as Anthropic’s Claude Code introduces Ultraplan—a cloud-based collaborative task planning system that represents a major shift in how developers work with AI assistants. Simultaneously, OpenAI is experimenting with parallel task execution in Codex Scratchpad, hinting at a future where AI coding agents work in coordinated teams rather than as solitary assistants.

Claude for Word: AI Embedded Directly into Microsoft Office

Anthropic has taken a bold step by embedding Claude directly into Microsoft Word, creating what they’re calling “Claude for Word.” This integration enables:

Inline rewrites and edits – Developers can now have Claude suggest changes directly within Word documents, with the AI understanding context and making appropriate modifications.

Comment-driven tracked changes – Similar to how human collaborators work, Claude can now respond to specific comments and suggestions, implementing changes while maintaining a clear audit trail.

Template-based drafting with cited sources – The AI can generate documents based on templates while properly citing sources, a crucial feature for technical documentation and legal documents.

Document-wide consistency checks – Claude can analyze entire documents to ensure terminology, formatting, and style remain consistent throughout.

Reusable workflow “skills” – Perhaps most importantly, Anthropic is introducing standardized workflows for common tasks like contract review and reporting. These “skills” can be reused across Office documents, creating consistent, high-quality outputs.

The Epitaxy Project: Multi-Agent Development Environment

While Claude for Word focuses on document creation, the Epitaxy project is redesigning the Claude Code desktop app into a multi-agent environment. This represents a fundamental shift in how AI coding assistants operate:

Coordinator orchestrates parallel sub-agents – Instead of a single AI trying to handle everything, a central coordinator manages multiple specialized agents working simultaneously.

Multiple repository support – The system can coordinate work across different code repositories, understanding dependencies and relationships between projects.

Specialized agent roles – Different agents can focus on specific tasks: one for testing, another for documentation, a third for code review, etc.

This agentic approach acknowledges that complex software development involves multiple interconnected tasks that benefit from specialized attention rather than a one-size-fits-all AI assistant.

Ultraplan: Cloud-Based Collaborative Task Planning

The most significant development is Ultraplan, which moves task planning from local development environments to the cloud. This enables:

Terminal-triggered planning runs – Developers can initiate planning sessions directly from their terminals while Claude builds and iterates on a web interface.

Threaded comments and inline feedback – Team members can collaborate on planning documents with threaded discussions and specific feedback tied to particular sections.

Multi-repository workflows – Planning can span multiple code repositories, understanding how changes in one project affect others.

Browser-based execution or terminal return – Plans can be executed directly in the browser or returned to the terminal for local implementation.

GitHub integration required – Ultraplan requires GitHub integration and Claude Code v2.1.91, positioning it as a professional development tool rather than a casual coding assistant.

The cloud-based approach represents a significant shift. Instead of planning happening in isolation on individual machines, it becomes a collaborative, persistent process that teams can contribute to and reference over time.

Beyond Technical: Anthropic Consults Religious Leaders on AI Alignment

In a surprising but thoughtful move, Anthropic is consulting religious leaders on Claude’s moral responses. This initiative recognizes that AI systems increasingly make decisions with ethical implications, and diverse perspectives are needed to ensure these systems align with human values.

The approach suggests Anthropic understands that AI development isn’t just a technical challenge—it’s also a philosophical and ethical one. By engaging with religious traditions that have centuries of ethical reasoning, they’re seeking to build more nuanced, context-aware moral frameworks into their AI systems.

OpenAI’s Parallel Developments: Codex Scratchpad and Security Challenges

While Anthropic advances with Claude Code, OpenAI is pursuing its own innovations:

Codex Scratchpad surfaces as parallel task experiment – OpenAI appears to be testing parallel task execution capabilities, hinting at a future “superapp” built around multi-agent workflows similar to Anthropic’s Epitaxy project.

Compute scale as competitive advantage – OpenAI continues to argue that its massive compute resources give it an edge over competitors, even as it pauses UK data center expansion due to cost and regulatory pressures.

Supply chain security incident disclosed – OpenAI revealed a supply-chain incident tied to a compromised Axios dependency introduced through a GitHub Actions workflow. While there’s no evidence of user data exposure, the incident highlights the security challenges of complex AI development pipelines.

GPT-5.4’s app-building capabilities – Security firm Snyk demonstrated that GPT-5.4 can build an entire app from a single prompt, but flagged that the AI’s dependency choices highlight security risks in agentic coding workflows.

The Bigger Picture: AI Coding Enters Its Collaborative Phase

These developments signal that AI-assisted coding is moving beyond simple code generation into sophisticated, collaborative workflows:

From solo to team player – AI is evolving from a tool that helps individual developers to a system that facilitates team collaboration.

From local to cloud – Planning and coordination are moving to the cloud, enabling persistent, accessible collaboration.

From code to full workflow – AI assistance now spans the entire development process, from planning and documentation to implementation and review.

From technical to ethical – Companies are recognizing that AI development requires ethical considerations alongside technical ones.

What This Means for Developers

For developers working with AI assistants, these changes represent both opportunities and challenges:

Opportunity: More sophisticated tools that understand complex workflows and team dynamics.

Challenge: Learning to work effectively with multi-agent systems and cloud-based planning tools.

Opportunity: Better integration with existing tools like Microsoft Office and GitHub.

Challenge: Navigating the security implications of increasingly complex AI development pipelines.

Opportunity: AI systems that consider ethical implications alongside technical requirements.

Challenge: Understanding how to provide appropriate guidance to AI systems on ethical matters.

The race to build the most capable AI coding assistant is clearly heating up, with both Anthropic and OpenAI pushing the boundaries of what’s possible. As these tools become more sophisticated and integrated into development workflows, they’re likely to fundamentally change how software is created—not just by making individual developers more productive, but by enabling new forms of collaboration and coordination that weren’t previously possible.

How do you see these developments changing your workflow? Are you excited about cloud-based planning tools, or concerned about the complexity they might introduce?

Claude Mythos and Project Glass Wing: The AI Model Too Dangerous to Release

Anthropic’s Claude Mythos has discovered thousands of critical vulnerabilities in major software systems, prompting the company to restrict access through Project Glass Wing rather than risk widespread release.

The AI community is abuzz with discussions about Claude Mythos and Project Glass Wing—a story so significant that, according to one commentator, “literally everybody in the AI space is talking about it.” The implications are so profound that some are reportedly having “meltdowns” trying to process what this means for software security and AI development.

What is Claude Mythos?

Claude Mythos represents what Anthropic describes as “the most powerful AI model anybody’s ever seen.” In their own words, it’s a “general-purpose unreleased frontier model that reveals a stark fact: AI models have reached a level of coding capability where they can surpass all but the most skilled humans at finding and exploiting software vulnerabilities.”

The numbers are staggering. Mythos Preview has already discovered thousands of high-severity vulnerabilities, including critical flaws in every major operating system and web browser. The company warns that “given the rate of AI progress, it will not be long before such capabilities proliferate potentially beyond actors who are committed to deploying them safely.”

Benchmark Performance: Unprecedented Capability

The performance metrics tell a compelling story:

Cybersecurity vulnerability reproduction: Previous state-of-the-art models like Opus 4.6 achieved 66.6{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41}. Mythos Preview scores 83.1{b429a798230856d49161ae42df084d7ca4a19b74753c3a4d4b576ab430076c41}—a massive leap forward.

Software engineering benchmarks: Where Opus 4.6 and GPT-5.4 were previously comparable, Mythos Preview scores:
• 24 percentage points higher than Opus 4.6 at SWE-bench Pro
• 17 percentage points higher on Terminal Bench
• Nearly double the performance on SWE-bench Multimodal

Based on these benchmarks, Anthropic has created what appears to be the best coding model the world has ever seen.

The 245-Page Warning

Anthropic published a comprehensive 245-page system card for Claude Mythos, and the message is clear from the beginning: “It has demonstrated powerful cybersecurity skills which can be used for both defensive purposes and offensive purposes—designing sophisticated ways to exploit vulnerabilities.”

The company states unequivocally: “It is largely due to these capabilities that we have made the decision not to release Claude Mythos Preview for general availability.”

Real-World Impact: Ancient Vulnerabilities Uncovered

Mythos hasn’t just found theoretical vulnerabilities—it’s discovered critical flaws in foundational software:

27-year-old vulnerability in OpenBSD: This operating system has a reputation as one of the most security-hardened systems in the world, yet Mythos found a flaw that had persisted for nearly three decades.

16-year-old vulnerability in FFmpeg: This critical multimedia framework is used by “innumerable pieces of software” to encode and decode video, making this discovery particularly significant.

Chained vulnerabilities in the Linux kernel: The model autonomously found and connected multiple vulnerabilities in the software that runs most of the world’s servers.

The implication is clear: if released publicly, this model could enable bad actors to “essentially hack into any website and find vulnerabilities and crack any software on the planet.”

Project Glass Wing: The Responsible Alternative

Rather than releasing Mythos to the public, Anthropic created Project Glass Wing—a controlled access program that provides the model to select companies’ cybersecurity specialists.

The reasoning is pragmatic: models this powerful (and potentially more powerful ones from other companies) are coming. By giving leading tech companies early access, they can “find vulnerabilities in your products, find vulnerabilities in your software, and patch them up quickly” before these capabilities become widely available.

As one Anthropic representative explained in an accompanying video: “There’s a kind of accelerating exponential, but along that exponential, there are points of significance. Claude Mythos Preview is a particularly big jump along that point. We haven’t trained it specifically to be good at cyber. We trained it to be good at code, but as a side effect of being good at code, it’s also good at cyber.”

Historical Context: The “Boy Who Cried Wolf” Problem

This isn’t the first time AI companies have claimed a model is “too powerful to release.” The pattern dates back to GPT-2 in 2019, when headlines proclaimed:

• “Elon Musk-founded OpenAI builds artificial intelligence so powerful it must be kept locked up for the good of humanity”
• “Musk-backed AI group: Our text generator is so good it’s scary”
• “AI can write just like me. Brace for the robot apocalypse”

Similar concerns emerged in 2022 when a Google engineer claimed an AI chatbot had become sentient. Some observers note that “these headlines are starting to feel a little bit like the boy who cried wolf.”

There’s undeniable marketing value in positioning your company as building “the most powerful model the world has ever seen.” It helps raise capital, establishes market leadership, and creates pent-up demand.

Why This Time Might Be Different

Despite the historical pattern, many experts believe the concerns about Mythos are genuinely warranted. The key difference:

2019 (GPT-2): Concerns focused on flooding the internet with fake information and propaganda. This largely came to pass.

2026 (Mythos): Concerns focus on enabling widespread hacking of critical infrastructure. The potential impact is orders of magnitude greater.

As one analyst noted: “I do think there’s a little bit of a marketing play here, but I don’t actually think that’s their intention. Anthropic is legitimately scared to release this into the world, and they are doing the thing that they feel is the most responsible approach.”

The Strategic Approach: Securing Critical Infrastructure First

Project Glass Wing represents a novel approach to AI safety: instead of withholding technology entirely, provide controlled access to those who can use it defensively. Anthropic is essentially saying to major tech companies: “Go use our software to find the vulnerabilities before models that are this good get released into the world and get them fixed.”

This makes strategic sense because “almost everybody on the planet uses tools that have at least one of these companies behind the scenes.” Securing Apple, Microsoft, Nvidia, Cisco, CrowdStrike, and other major platforms protects a significant portion of the digital ecosystem.

Broader Implications for AI Development

The Mythos situation raises critical questions for the AI industry:

Capability vs. Safety Trade-off: As models become better at coding, they inevitably become better at finding and exploiting vulnerabilities. This creates an inherent tension between advancing capabilities and maintaining security.

Responsible Disclosure: Project Glass Wing represents a new model for responsible AI deployment—controlled access for defensive purposes rather than complete withholding or unrestricted release.

Market Dynamics: The decision affects competitive dynamics, as Anthropic provides access to companies “not named OpenAI,” potentially creating strategic alliances in the AI security space.

Regulatory Precedent: This approach may establish patterns for how governments and industry bodies regulate powerful AI models in the future.

Conclusion: A Watershed Moment for AI Safety

Claude Mythos and Project Glass Wing represent a watershed moment in AI development. For the first time, a company has openly stated that its model is too dangerous for public release due to cybersecurity capabilities rather than just content generation concerns.

The approach—providing controlled access to major tech companies for defensive purposes—establishes a new paradigm for responsible AI deployment. While some skepticism about “too powerful to release” claims is warranted given historical patterns, the specific capabilities demonstrated by Mythos suggest these concerns may be more substantive than previous instances.

As AI capabilities continue their exponential growth, the Mythos situation may be remembered as the moment when the industry collectively realized that advancing AI capabilities requires equally advanced safety measures—not as an afterthought, but as an integral part of the development process.

The cybersecurity implications of advanced AI models are becoming increasingly critical. What safeguards do you think should be in place as these capabilities continue to advance?

Google Quietly Launches Offline AI Dictation App: AI Edge Eloquent Takes on Transcription Market

Google has stealthily released ‘AI Edge Eloquent,’ a free offline-first dictation app for iOS that uses Gemma-based speech recognition running locally on devices, taking on competitors like Wispr Flow and SuperWhisper.

In a move that flew under the radar of most tech observers, Google quietly released “AI Edge Eloquent” on Monday—a free, offline-first dictation app for iOS that represents Google’s latest foray into the rapidly growing AI transcription market.

The app, which appeared in the App Store without any official announcement or marketing fanfare, uses Gemma-based speech recognition models that run entirely locally on users’ devices. This approach addresses growing privacy concerns while delivering real-time transcription capabilities.

What AI Edge Eloquent Does

Google’s new dictation app offers several compelling features that set it apart from both Google’s own services and competing apps:

Local-first processing: The app uses Gemma-based speech recognition models that run directly on your device. You dictate, see live transcription, and the app automatically polishes the text—all without sending data to the cloud.

Filler word filtering: Like a skilled editor, the app automatically removes verbal tics like “um,” “ah,” “like,” and “you know” from transcriptions, producing cleaner, more professional text.

Output transformation options: Users can choose from several output formats including:
Key points – Extracts main ideas and summaries
Formal – Converts casual speech to professional writing
Short – Creates concise versions
Long – Expands on ideas with more detail

Privacy controls: Users can turn off cloud mode entirely for local-only processing, ensuring sensitive conversations never leave their device.

Gmail integration: The app can import keywords from Gmail to better understand context and improve transcription accuracy for work-related content.

Searchable history: All transcriptions are stored locally with search functionality, making it easy to find specific conversations or notes.

The Competitive Landscape

Google is entering a crowded but rapidly evolving market with AI Edge Eloquent. The app directly competes with:

Wispr Flow: Known for its natural language processing and contextual understanding

SuperWhisper: Popular for its accuracy and multi-language support

Willow: Focuses on professional use cases with advanced editing features

What sets Google apart is the combination of offline processing (addressing privacy concerns), the power of Gemma models (Google’s own AI architecture), and seamless integration with Google’s ecosystem.

Why the Quiet Launch?

Google’s decision to release AI Edge Eloquent without fanfare is strategic:

Market testing: This appears to be an experimental release, allowing Google to gather user feedback and usage data before committing to a full-scale launch.

Technical validation: Running Gemma models locally on mobile devices represents significant technical challenges. A quiet launch allows Google to test performance across different devices and usage scenarios.

Competitive positioning: By entering quietly, Google avoids drawing immediate competitive responses while establishing a beachhead in the transcription market.

The App Store description hints at Google’s broader ambitions, mentioning an Android version with system-wide keyboard integration and a floating button for easy access—features that would make dictation a seamless part of the mobile experience.

The Bigger Picture: AI Transcription Goes Mainstream

Google’s entry into the offline dictation market signals several important trends:

Privacy becomes a feature: In an era of increasing data privacy concerns, offline processing is becoming a competitive advantage rather than a limitation.

Specialized AI applications: While large language models get most of the attention, specialized applications like transcription are where AI is having immediate, practical impact.

Mobile-first AI: The ability to run sophisticated AI models locally on mobile devices represents a significant technical achievement with implications far beyond dictation.

Democratization of content creation: Tools like AI Edge Eloquent lower barriers to content creation, making it easier for people to capture thoughts, ideas, and conversations in written form.

What This Means for Users and Developers

For users, Google’s entry means:

• More choice in a growing market
• Potential for lower prices as competition increases
• Improved privacy options with offline processing
• Better integration with existing Google services

For developers and competitors, it means:

• Google’s vast resources entering their space
• Pressure to differentiate beyond basic transcription
• Need to emphasize unique value propositions
• Potential for acquisition or partnership opportunities

The transcription app market, once dominated by a few specialized players, is becoming a battleground for tech giants. Google’s quiet launch of AI Edge Eloquent suggests the company sees significant potential in this space—and is willing to experiment with new approaches to capture it.

As AI-powered speech recognition continues to improve, tools that were once nice-to-have utilities are becoming essential productivity aids. Google’s entry, however quiet, signals that the race to dominate AI-powered dictation is just getting started.

Have you tried AI transcription apps? What features matter most to you—accuracy, privacy, or integration with other tools?