🔨 The Anvil

Thursday, June 11, 2026

12 stories · Standard format

Generated with AI from public sources. Verify before relying on for decisions.

🎧 Listen to this briefing or subscribe as a podcast →

Today on The Anvil: the US-Iran ceasefire collapse deepens as Iran closes the Strait of Hormuz, while the AI tooling stack gets a structural upgrade — Xcode goes MCP-native, Anthropic ships production agent infrastructure, and Google releases a non-autoregressive text model that hits 1,000 tokens per second on consumer hardware.

Iran Conflict

Iran Closes Strait of Hormuz, Declares Ceasefire 'Meaningless' After Second Wave of US Strikes

Following the tit-for-tat exchanges we tracked Wednesday, Iran declared the Strait of Hormuz closed 'until further notice' and called the April ceasefire 'practically meaningless' after a second consecutive night of US strikes on its air-defense targets. The IRGC retaliated with 12 ballistic missiles against US bases in Jordan, Kuwait, and Bahrain. Three Indian sailors were killed when a US strike hit a tanker, and Brent crude climbed above $95/barrel. The US disputed the strait closure, while Pakistan, Turkey, and the EU called for UN Security Council de-escalation.

The closure of Hormuz marks a qualitative escalation beyond the direct military strikes we've been monitoring, fundamentally altering the risk calculus for third parties. With third-country casualties and tanker exposure, international pressure on the US for an off-ramp is intensifying. The NYT-reported compromise framework (15-year enrichment pause, uranium dilution) was reportedly close before this exchange — watch whether Pakistan's mediation channel survives the next 48 hours.

Verified across 17 sources: ABC News · Al Jazeera · The New York Times · CNN · Fox News · US Central Command · Reuters · El País · CNN · The Hindu Business Line · The National News · Al Jazeera · Institute for the Study of War · US Central Command · Times of Israel · U.S. Department of State · UN News

AI Developments

Google Releases DiffusionGemma: 1,000 Tokens/Sec on H100, 700+ on RTX 5090 via Parallel Text Diffusion

Google released DiffusionGemma, an open-weight 26B mixture-of-experts model built on Gemma 4 that generates text via parallel diffusion — producing 256 tokens simultaneously using bidirectional attention — rather than sequential autoregression. The model achieves 1,000+ tokens/sec on H100 and 700+ on consumer RTX 5090 GPUs, using only 3.8B active parameters during inference. Day-zero support ships in vLLM and Hugging Face Transformers. Output quality is lower than standard Gemma on open-ended generation, but bidirectional context enables novel capabilities: code infilling, structured output, and constraint-heavy problems like Sudoku that sequential models struggle with.

This is an architectural departure worth tracking, not just a speed benchmark. The inference bottleneck shifts from memory bandwidth (autoregressive models) to compute (diffusion), which changes the hardware economics for deployment — it runs efficiently on compute-heavy consumer GPUs rather than bandwidth-optimized data center cards. The bidirectional attention capability for code infilling and structured output is genuinely distinct from what autoregressive models do well, suggesting complementary deployment patterns rather than direct substitution. The open release with immediate vLLM support means practitioners can evaluate it today.

Verified across 3 sources: Google Developers Blog · SiliconANGLE · Decrypt

AI Coding & Design Tools

Xcode 27 Becomes an MCP Host: External Agents Get Live Compiler State via XPC, On-Device Completions Default

Apple's WWDC 2026 shipped Xcode 27 with native Model Context Protocol support via mcpbridge, allowing external agents — Claude Code, Cursor, and others — to access live Xcode diagnostics, symbol information, and SwiftUI previews through structured XPC calls rather than parsing compiler text output. Inline code completions now run on-device via Apple Silicon's Neural Engine by default; agentic workflows routing to cloud models (Anthropic, Google, OpenAI) require explicit opt-in. Apple bundled seven agent skills covering SwiftUI modernization, UIKit migration, testing, and security auditing.

The shift from REST calls parsing raw compiler output to structured real-time IDE state access via XPC is architecturally significant: agents now have the same semantic understanding of a codebase that the IDE itself has — live diagnostics, symbol resolution, preview state — without custom integration work. The on-device-by-default model for completions gives Apple a privacy differentiator against cloud-dependent tools, and the bundled agent skills encode Apple's own platform guidance into any external agent tool automatically. For product builders working across iOS/macOS, this removes a major friction point in agentic Apple-platform development.

Verified across 1 sources: ByteIota

Anthropic Launches Claude Managed Agents: Decoupled Sandboxes, Session Persistence, 60% Latency Reduction

Expanding on the 'dreaming' background capabilities and Agent View dashboard we tracked last month, Anthropic formally released Claude Managed Agents — a production infrastructure layer that decouples the reasoning harness from code execution sandboxes. The platform provides session persistence, handles credential management via vaults, and achieves a 60% median latency reduction by eliminating per-session container startup overhead. Notion, Rakuten, Sentry, and Asana are already shipping production agents on the platform.

This closes the gap that has consistently separated AI agent prototypes from production deployments: managed sandboxing, credential isolation out of the execution environment, session replay, and automatic harness tuning as models evolve. The decoupled 'brain and hands' architecture is the right abstraction for production — it enables security primitives that are nearly impossible to retrofit into monolithic agent containers, and the 60% latency reduction is a real operational improvement for long-running agentic workflows. The named customer list (Notion, Sentry, Asana) confirms this is shipping into actual product surfaces, not a preview announcement.

Verified across 1 sources: Anthropic

Rubrik Launches Agent Cloud for Claude Code: Enterprise Recovery with Agent Rewind and Immutable Codebase Backups

Rubrik announced Rubrik Agent Cloud (RAC) for Claude Code and Claude Cowork, providing enterprise-grade agent governance, observability, and recovery capabilities including agent rewind — the ability to reverse unintended agent actions — and codebase resilience against repository ransomware. A companion Autonomous Business Recovery for Cloud Applications product can rebuild entire application stacks from clean recovery points.

As autonomous coding agents write and deploy code without a human reviewing every edit, the failure modes are qualitatively different from traditional development: an agent that misunderstands scope can make wide, hard-to-reverse changes across a codebase. Rubrik's approach treats agentic systems as infrastructure requiring the same immutability and recoverability guarantees as production databases. The 'agent rewind' primitive — reversing specific agent actions rather than rolling back an entire repo — is architecturally novel and addresses a gap no existing DevSecOps tooling covers. This signals the emergence of a purpose-built resilience layer that production agentic teams will need.

Verified across 1 sources: CXO Today

Cursor Bugbot: 3x Faster, 22% Cheaper, Pre-Push Review Now Available

Cursor shipped significant performance improvements to Bugbot, its AI code review agent: 3x faster execution, 22% lower cost, and 10% more bugs found. The update adds a pre-push review capability, allowing developers to run Bugbot before committing to a branch rather than waiting for post-PR review, and an option to review only changes since the last review rather than the full diff.

The pre-push review shift is the substantively interesting move here. Post-PR AI review has a structural problem: by the time a diff is ready for review, the developer has context-switched away from the decision. Moving the quality gate to pre-push keeps the review in the same work session, where fixing a flagged issue has near-zero context-reload cost. Combined with the 22% cost reduction, this makes continuous AI review economically viable as a default rather than an occasional gate. The 10% improvement in bug detection compounds with frequency — a tool used 5x more often finding 10% more bugs per run is meaningfully better coverage.

Verified across 1 sources: Cursor

GitHub Copilot CLI Gets LSP Integration: Semantic Code Understanding Replaces Text-Search Heuristics

GitHub released an LSP Setup skill for Copilot CLI that automates Language Server Protocol installation and configuration across 14 languages, replacing heuristic text-search-based code understanding — grep patterns, JAR extraction, node_modules traversal — with structured semantic analysis. The skill guides through install, configuration scope selection (user-level or repository-level), and verification across Windows, macOS, and Linux.

LSP integration is foundational plumbing for reliable agentic coding. Without it, agents navigating real codebases rely on the same brute-force text search that was impractical for humans — expensive in tool calls, unreliable on large repos, and blind to semantic relationships. With LSP, the agent gets the same symbol resolution, type information, and reference graph that a human developer sees in their IDE. This reduces both the token overhead and the error rate for multi-file refactoring and autonomous code generation tasks. The automation of LSP setup removes the configuration friction that previously made this capability difficult to deploy across teams.

Verified across 1 sources: GitHub Blog

Spokane & North Idaho

Spokane City Council Introduces Emergency Data Center Moratorium as Petition Hits 5,000 Signatures

Directly responding to the 500MW Avista hyperscaler disclosure we tracked earlier this week, three Spokane City Council members introduced an emergency ordinance for a one-year citywide moratorium on new data center permits. A companion community petition opposing the project has collected over 5,000 signatures since Sunday, with residents citing energy consumption, water usage, and the Spokane River's recorded dry-out last summer.

The political blowback to Avista's 500MW commitment mobilized much faster than the infrastructure buildout itself. The moratorium — if passed — effectively pauses the pipeline of projects being attracted by the region's fiber infrastructure and power availability while the city establishes regulatory frameworks. The water angle is the sharpest edge: the Spokane River running dry last summer gives opponents a concrete, non-abstract harm to cite against the required aquifer pressure.

Verified across 2 sources: KXLY · City of Spokane

Newport Beach & Orange County

Newport Beach $100M Bank Fraud: Federal Arrest Alleges Forged Title Policies, Armed Hotel Seizures

Mahender Makhijani, a 44-year-old Newport Beach resident operating through Canister Group V LLC, was arrested Wednesday by federal authorities for allegedly orchestrating a $100 million bank fraud scheme between September 2024 and April 2025. The scheme involved forged title policies and fabricated lending records used to secure fraudulent loans; federal investigators detected the fraud through digital forensics identifying metadata alterations in Adobe-edited documents. Court documents separately allege Makhijani used armed personnel to physically seize hotels and restaurants in Laguna Beach and deployed mobile billboards to harass business rivals. A prior arbitrator judgment found him liable for over $1.3 billion in damages.

The case is notable on two counts: the fraud mechanism (metadata forensics catching Adobe document manipulation is a practical reminder of how digital evidence trails persist) and the alleged extralegal enforcement tactics (armed hotel seizures) within Orange County's real estate sector. With the OC Grand Jury simultaneously questioning supervisor discretionary spending and the county managing a $133M airport fire liability, this arrest adds another institutional stress point to an already strained governance picture in the region.

Verified across 2 sources: AMed Post · News Santa Ana

AI Supply Chain & Logistics

Amazon Launches LTL Freight Unit, FedEx Freight and Old Dominion Stocks Drop ~6%

Fleshing out the Amazon Supply Chain Services logistics buildout we've been tracking, Amazon formally launched an LTL (less-than-truckload) arm offering nationwide shipping for 1–6 pallets with next-day live pickup and same-day drop-trailer options. Initial customers include Procter & Gamble, 3M, and American Eagle Outfitters. The service leverages Amazon's 80,000+ trailer and terminal network. FedEx Freight and Old Dominion Freight shares fell approximately 6% on the announcement.

Amazon entering LTL is a structural move, not a logistics experiment. The company's existing infrastructure — trailers, terminals, route density, fulfillment network — gives it an immediate cost and speed advantage on the corridors where its own freight already moves, without the capital build legacy carriers required. The ~6% stock drop in FedEx Freight and Old Dominion signals market belief that Amazon will compete on the routes that matter, not just niche segments. The customer list — P&G, 3M, AEO — confirms this is aimed at large shipper relationships, not just Amazon marketplace sellers. Watch for legacy carrier pricing response and whether Amazon extends LTL internationally.

Verified across 1 sources: Transport Topics

UNFI Completes AI Supply Chain Rollout: 4% Better On-Time Delivery, 5% Fewer Miles, 7%+ DC Productivity Gains

UNFI, one of North America's largest wholesale grocery distributors, completed a network-wide rollout of an AI-powered supply chain planning platform across all distribution centers and expanded AI-driven transportation management via Samsara. In the first nine months of fiscal 2026, the company achieved 4% improvement in on-time deliveries, 5% reduction in average miles per delivery, and over 7% distribution center productivity improvement across 40+ DCs.

UNFI's results are notable for two reasons: scale (40+ DCs, full network deployment rather than pilot) and the combination of transportation and warehouse AI rather than point solutions. The 5% mile reduction at UNFI's volume represents a meaningful fuel and labor cost reduction that compounds annually. The 7%+ DC productivity gain is above the industry average cited in Gartner's concurrent analysis (which noted only 17% of supply chain organizations successfully scale AI pilots). UNFI's completion of a full network rollout — not a pilot — provides a rare documented example of AI supply chain deployment at grocery distribution scale.

Verified across 1 sources: Distribution Strategy

OSINT & Intelligence

OpenAI: China-Linked Actors Used ChatGPT to Seed Divisive AI Data Center Debates on US Social Media

OpenAI's threat intelligence team identified two clusters of activity tied to China that used ChatGPT to generate social media imagery and content designed to amplify divisive US debates around AI data centers and tariffs, while posing as Americans. The campaigns, traced to a Chinese technology company using VPNs and simplified Chinese prompts, achieved minimal external engagement. OpenAI's detection methodology relied on operational security mistakes: consistent prompt patterns, AI model usage fingerprints, and network behavior correlation — standard OSINT tradecraft applied to platform abuse.

The targeting of the AI data center debate is a pointed detail: foreign actors are inserting into precisely the kind of community opposition narratives now surfacing in Spokane and elsewhere. The low-engagement result suggests the operation was detected early or executed poorly, but the methodology — using the same generative AI tools being debated as the vehicle for the influence operation — is a notable closed loop. OpenAI's disclosure also demonstrates that platform-level OSINT (usage pattern analysis, prompt fingerprinting, network correlation) is the practical detection layer for this class of operation, not traditional signals intelligence.

Verified across 1 sources: CyberScoop


The Big Picture

Strait of Hormuz closure marks doctrinal shift, not just tactical escalation Iran's decision to close the strait — combined with its declaration that the ceasefire is 'practically meaningless' — signals a move from calibrated pressure to existential leverage. Every prior cycle this year involved strikes followed by diplomatic gestures. Closing the strait changes the economic stakes for uninvolved parties (India lost three sailors to a US strike on a tanker), raising the cost of continued US military action and complicating Trump's pressure-through-force strategy.

The IDE is becoming an agent orchestration layer Xcode 27 becoming an MCP host, GitHub Copilot CLI gaining LSP semantic analysis, and Rubrik shipping enterprise recovery for Claude Code all point the same direction: the development environment is no longer just where you write code — it's the coordination surface for multiple autonomous agents with real-time access to compiler state, diagnostics, and execution context. The tooling layer is catching up to the agentic model.

AI inference architecture is diverging: diffusion vs. autoregression Google's DiffusionGemma release demonstrates that parallel token generation via bidirectional diffusion is now production-viable on consumer GPUs, achieving 4x the throughput of autoregressive models at the cost of some output quality. This isn't a marginal optimization — it's a fundamentally different compute profile (compute-bound vs. memory-bound) with distinct capability tradeoffs. Builders should track which task domains favor each architecture.

Data center infrastructure is hitting community resistance in the Inland Northwest Spokane City Council's emergency data center moratorium ordinance — introduced the same week Avista's 500MW customer was named — represents the first formal regulatory response to the AI infrastructure buildout in Eastern Washington. The petition hit 5,000 signatures in days. Combined with the Spokane River running dry last summer, the region is discovering that energy and water limits are political limits, not just engineering ones.

Recommerce is consolidating around AI-enabled operational infrastructure ThredUp's Direct Listing, Returnalyze's MESHKI deployment, Returnflows' European funding, and Shoptalk's 2036 forecast all arrived in the same 48-hour window — reflecting that the secondhand market has crossed from cultural moment to infrastructure race. The consistent theme: demand is no longer the constraint. AI-driven grading, authentication, and returns prevention are the operational differentiation layer.

What to Expect

2026-06-12 Trump's implied 'next day' ultimatum to Iran expires — watch for either resumed US strikes or opening of diplomatic back-channel following Iran's Hormuz closure declaration
2026-06-13 Manito Art Festival returns to Spokane after one-year hiatus, organized by 33 Artists Market nonprofit with 91 booths
2026-06-22 Claude Fable 5 free trial period ends; $10/$50 per million token pricing kicks in across Claude API, Bedrock, Vertex AI, and GitHub Copilot
2026-06-29 Kootenai County Fire & Rescue and Coeur d'Alene Fire Department hold remembrance ceremony at McEuen Park for firefighters Frank Harwood and John Morrison, killed in the Canfield Mountain ambush one year prior
2026-11-04 Orange County Board of Supervisors Districts 4 and 5 general election runoff — Democrats currently lead in both races after primary count

Every story, researched.

Every story verified across multiple sources before publication.

🔍

Scanned

Across multiple search engines and news databases

1054
📖

Read in full

Every article opened, read, and evaluated

184

Published today

Ranked by importance and verified across sources

12

— The Anvil

🎙 Listen as a podcast

Subscribe in your favorite podcast app to get each new briefing delivered automatically as audio.

Apple Podcasts
Library tab → ••• menu → Follow a Show by URL → paste
Overcast
+ button → Add URL → paste
Pocket Casts
Search bar → paste URL
Castro, AntennaPod, Podcast Addict, Castbox, Podverse, Fountain
Look for Add by URL or paste into search

Spotify isn’t supported yet — it only lists shows from its own directory. Let us know if you need it there.