← All news

AI News — August 12, 2026

NVIDIA's NeMo Switchyard sends 93% of an agent's calls to a 30B open model; LangChain benchmarked the router at 74% off the bill for about six points of accuracy.

Model releases

  • [2026-08-11] NVIDIA — Nemotron 3.5 Lightning is a 30B mixture-of-experts open model built for the high-volume steps inside a multi-agent system rather than the planning step: up to 4x faster output and 30% faster agentic task completion against its class. It runs on RTX PCs, DGX Spark and Jetson, and post-trains on your own data with NeMo. NVIDIA also released Nemotron-RL-Agentic-Terminal-Pivot, the agentic RL dataset behind its coding behaviour. CrowdStrike, Harvey and CodeRabbit have customised it. (official, source)

    Naming the high-volume steps rather than the planning step is the part to take literally — this is a model to sit behind a router, not one to swap in for a frontier default.

  • [2026-08-11] Mistral — Regional Endpoints went generally available, so inference runs in Europe or the US by choice, and a Priority Tier in public preview adds custom rate limits behind an uptime SLA. The platform will also serve third-party open weights, starting with Z.ai’s GLM-5.2, under the same regional controls. A separate coalition sells multi-year European Compute Units toward 1 GW by 2030. (official, source)

    Serving another lab’s weights under Mistral’s own regional controls turns a model choice into a procurement one: GLM-5.2 arrives with the same region guarantee as Mistral’s own models.

    For Solution Architects: A workload blocked on European data residency can now pick its region at the endpoint rather than through a private deployment, and the same control covers GLM-5.2 — so the residency review happens once for the platform instead of once per model.

  • [2026-08-11] Anthropic — Text from Claude now carries a watermark embedded at the model level, with C2PA credentials on files. It survives copy-paste and some editing, covers the API, Claude, Claude Code, Cowork and Tag, and applies to every model released after August 2, the day the EU AI Act’s transparency code took effect. Anthropic has not said how the mark is detected, or how much editing removes it. (source, source)

    Covering the API means text your own product generates carries the mark too, and with no published detector there is no way to check what your users end up receiving.

Coding agents

  • [2026-08-11] JetBrains — WebStorm speaks the Agent Client Protocol, so an existing Anthropic, OpenAI or Google subscription drives the IDE agent with no JetBrains AI seat. Agents come from a registry or from your own acp.json, and the backend can be Azure, AWS, Anthropic or a local model. Copilot already ships an ACP server and Claude Code has an official adapter. (official)

    An acp.json in the repo turns each developer’s agent choice into a reviewable file rather than a local preference, and the backend list means the model can sit on infrastructure the org already pays for.

  • [2026-08-11] GitHub — Copilot for JetBrains gained memory that persists across agent chat sessions and Ollama as a bring-your-own-key provider, making a local model a first-class choice in the plugin. The administrative half matters more: managed settings now cover plugin availability, MCP server access, permission-bypass behaviour and OpenTelemetry, all set server-side. (official)

    Permission-bypass behaviour being settable centrally is the entry that changes most — whether a developer can wave an agent through stops being a per-machine decision.

MCP

  • [2026-08-11] A hostile MCP server never has to send one incriminating instruction. GhostSplice puts a bland field list in a tool description and the mapping to .ssh/id_rsa, .env and customer files in a later tool result, and the agent assembles them. Splitting in two lifted average compliance from 42% to 82% across eleven API-tested models, and the same model refused in one client while complying in another. It assumes you already connected the server. (source)

    Same model, different client, different outcome is the result with the most operational weight — a refusal you observed while testing does not transfer to how your users actually run the thing.

Agent frameworks & interop

  • [2026-08-11] NVIDIA — NeMo Switchyard is an open-source routing library that runs inside an agent, as a proxy or as middleware, choosing a model per workflow step across open, proprietary and NVIDIA weights. An LLM classifier can pick per call or escalate a whole session after repeated bad turns; a heuristic stage router adds no extra model call at all. Kong serves it natively and LiteLLM is adding it as a proxy plug-in. Cognition wired the staged router into Devin Desktop for 28% lower mean cost. (official)

    A heuristic stage router that adds no model call is the version worth trying first — it costs nothing per request to be wrong, and it answers whether your workflow has cheap steps at all before you pay a classifier to find them.

    For Platform / DevOps Engineers: Proxy mode needs no application change, so Kong’s native support or the LiteLLM plug-in can front an agent you didn’t write — routing becomes a config surface you own rather than a rewrite its authors have to agree to.

AI-assisted SDLC

  • [2026-08-11] IBM and Red Hat put commercial offerings behind Lightwell, which wires Sigstore, in-toto, SLSA and SBOM tooling into a single signing, provenance and policy layer. The framing is aimed at agent-written code: once an agent opens the pull request and edits the infrastructure, the commit log stops answering where any of it came from. (source)

    Sigstore, in-toto and SLSA were each adoptable separately long before this and mostly weren’t, which is the gap a supported product is being sold into.

AI cost tracking & telemetry

  • [2026-08-11] LangChain pushed its Deep Agents suite — 145 tasks, 6.3 model calls each — through Switchyard and measured where the money actually goes. 7% of turns reached Opus 4.8 and carried 68.4% of the spend; Nemotron Lightning handled 93% of calls for 10.4%. Routing cut cost 74% for about six points of accuracy. The judge model came second at 21.2%, since it runs every turn until escalation and gets no prompt caching. (official)

    Judging costing a fifth of the bill is the finding that generalises past routing — any always-on evaluator in a loop pays full price every turn unless someone checked that it caches.

  • [2026-08-11] GitHub — The AI usage report now splits each model’s credits into input, output, cache-read and cache-write tokens, which is the detail it takes to explain a charge rather than merely observe one. Separately, MAI-Code-1.1-Flash lists 73% below the model it replaces and bills at a 0.25x premium multiplier for annual subscribers; Business and Enterprise admins have to switch it on. (official, official)

    Cache-read and cache-write as separate lines is what makes a prompt-caching change visible in the bill rather than inferred from it — the same blind spot that put LangChain’s judge model second above.

    For Engineering Managers: Admin opt-in means MAI-Code-1.1-Flash changes nothing until someone enables it, so the sequence worth following is to read a month of the per-model breakdown first and check whether the workloads it would replace are where the credits actually go.

Practice & craft

  • [2026-08-11] Birgitta Böckeler ran the experiment nobody had: does forcing an agent through red-green-refactor actually produce better code? Across five batches of greenfield tasks with Opus 4.8 judging blind, the two non-TDD solutions took first and second on the small and medium tasks, and mutation scores did not separate at all. Small sample, imperfect TDD adherence — but the burden of proof has moved. (source)

    Greenfield tasks are where TDD’s case has always been weakest, so this lands narrower than the headline reads — the rerun worth wanting is on a codebase with existing tests an agent can break.

  • [2026-08-11] Sophie Alpert’s policy for AI-assisted writing fits in a sentence: you stand behind every line in your doc, and “AI wrote that, ignore it” is not an answer to a reviewer. The reasoning under it is the reusable part. There are no lossless transformations of natural-language text, so every rephrase by something without your mental model drops something. (source)

    Stated as a review norm rather than a tooling rule, it survives whatever people are using next quarter, and it puts the cost of an unread paragraph back on whoever sent it.

Research worth reading

  • [2026-08-10] Providers hide chain-of-thought by handing it back as encrypted blocks the client replays. Those blocks turn out to be interchangeable across sessions, users and models inside one provider, so feeding a strong model’s trace to a weaker sibling makes it print the plaintext — demonstrated on Anthropic, OpenAI and Google. Decoding 315,320 blocks scraped from public repos recovered 367 PII artefacts and 182 credentials. (official)

    Blocks scraped from public repos is the part to act on today — anything that logs a full API response, test fixtures and pasted issue reports included, has been committing reasoning traces to version control.

  • [2026-08-10] Distilling a developer’s preferences into personal agent skills is intuitive, and mostly did not work. Over 206 real sessions from 13 developers, personalised skills beat the no-skill baseline only slightly and inconsistently, while generic skills pooled across everyone gave the largest and steadiest gains. Personalisation paid only where a preference recurred often enough to leave several relevant examples. (official)

    Pooled beating personal points at where the effort belongs: a shared skill library a few people maintain, rather than every developer curating their own and each starting from too few examples.

Watch list

  • Qwen3.8-Max weights, three days left in the week Alibaba named. Neither the Max checkpoint nor the Qwen3.8-27B companion has appeared under the Qwen organisation on Hugging Face, and the revenue-share clause for large commercial users still carries no rate. A LICENSE file is what resolves this; nothing else Alibaba says will.

    Three days is enough time to publish a licence and not enough to renegotiate one, so whether the file appears by week’s end says which of those has been going on.

  • DeepSeek’s price rise, day six. Published rates are unchanged at $0.14/$0.28 and $0.435/$0.87 per million tokens, and the announcement is still one sentence with no figure attached. The question worth watching has shifted from when to whether cache-hit pricing moves with the headline rate, because that is what decides a batch pipeline’s fallback.

    Six days of an unchanged rate card alongside an announced rise is its own answer for now — a pipeline can keep planning against the published numbers until a figure replaces them.

  • Agent Plugins 1.0 still has nothing that installs one. Ten days after the format shipped with six vendors named, no client changelog mentions reading a plugin.json. The evidence would be a release note, not another endorsement — and it has to carry both skills and MCP servers, which is why this is taking longer than an unpack step.

    Whoever ships first also sets the working reading of the spec’s ambiguous parts, so which client it turns out to be is worth watching alongside when.

  • CoreBreak’s Strands gap, day six. AgentCore, ADK and the Vercel harnesses are patched; the Strands Python harness SDK still isn’t, and AWS still leaves the mitigation to callers. This is now long enough to read as scope rather than backlog. A documented guard in the repo would settle it even without a code change.

    Six days in, anyone still waiting should plan on the guard staying theirs — reconciling a hand-written one against an eventual AWS fix is a smaller job than being unprotected until it arrives.