A single July 18 release made the Bash and Edit permission analyzer fail closed in six specific cases — including a broad glob rule that auto-approved writes far outside your project. What each fix means if you run the agent unattended.
They get pitched as rivals. They're not — they answer three different questions. A founder's decision guide to when you write a SKILL.md, when you stand up an MCP server, and when you spawn a subagent.
Google Cloud Run Sandboxes charge no premium — they run inside compute you already pay for. That single fact reframes the whole build-vs-buy question for running untrusted, LLM-generated code.
A day after we argued Go teams rarely need an agent framework, Microsoft put a first-party one into public preview. Here's what it covers, what it's still missing, and when a founder should reach for it instead of a forty-line loop.
The 2026-07-28 revision deletes the handshake and the session on the server side. For plain tool servers it's an SDK bump; the real work is replacing per-session state with explicit handles — here's the before/after, server-side.
Three ways to feed an agent what it needs to know — stuff the window, retrieve at read time, or compile context ahead of time. They fail differently and cost differently. Here's the one test that picks the right one for your workload.
Moonshot's new flagship goes fully open on July 27. Before you plan to self-host it, do the math: 1.4TB of weights, a $3/$15 API today, and a benchmark story you can't yet replay.
MCP Apps (SEP-1865) let your server hand the host a real HTML interface instead of a wall of text. Here's the ui:// resource, the _meta binding, and the postMessage handshake — with the current spec values, not the deprecated ones.
xAI's Grok Build now ships the same feature surface as Claude Code — subagents, worktrees, MCP, skills, hooks, AGENTS.md, headless. So the decision collapsed to two things: which model bill you can stomach, and which subscription you already pay.
Andrew Ng and Anthropic just shipped a free Agent Skills course. The distilled version for a team of one: a skill is a folder, the description line is load-bearing, and you build it once to run everywhere.
Connect enough MCP servers and tool schemas alone can eat 150,000 tokens before the agent reads a word. Curation, tool search, or code execution — here's the one question that picks between them.
The Linux Foundation stood up a neutral governance body for x402 on July 14 with 40 members and the whole card-and-cloud establishment behind it. Here's what actually changed for people shipping agents — and what didn't.
Inkling is not trying to beat Opus or GPT-5.6. It's a 975B Apache-2.0 base you specialize into your own model — the decision it forces is fine-tune-and-own versus rent-and-prompt.
SPACE runs every agent task in its own AWS Firecracker microVM, keeps your secrets outside the box, and lets a session be paused for a week and resumed — turning the runtime from plumbing into a load-bearing layer.
You can now append a system instruction partway through a Claude conversation instead of editing the top-level system field — so a long agent can pick up a new rule after 40 cached turns without re-paying for all of them. Here's the API shape, the one placement rule that returns a 400, and why it's a direct token-cost win.
You can implement the enterprise token exchange inside your MCP server or push it to a proxy in front. The right answer depends on how many servers you run — and who you want holding the IdP secrets.
The 2026-07-28 spec deprecates three features your server may lean on — Sampling, Roots, and Logging. Nothing breaks on July 28, but the clock started. Here's the before/after for each, with the replacement code.
The zero-touch OAuth flow that makes a remote MCP server sellable to enterprise buyers is three token calls and four server-side checks. Here's the copy-paste version, using the Identity Assertion JWT Authorization Grant that stabilized in June.
They keep getting pitched as rivals. They're not — one connects your agent to a system, the other teaches it a workflow. Here's the one-page decision, the token-cost math, and the four questions that settle it.
Temporal now ships a first-class OpenAI Agents SDK integration inside its Python SDK. Wrap your tools as durable activities, run the SDK's own Runner inside a workflow, and a mid-run crash resumes from the last completed step instead of starting the LLM loop over.
FlexAttention landed on Apple Silicon with up to a ~12x speedup on sparse patterns, and a new fused loss cuts training memory 4x. For a founder whose whole 'cluster' is one MacBook and one rented GPU, that's a budget line, not a footnote.
Three vendors shipped the same idea within weeks — let the model write code that orchestrates your tools instead of round-tripping one JSON call at a time. Here's what actually differs, and which one to reach for.
Fast mode runs the same Opus 4.8 at up to 2.5× the throughput for double the per-token price. Here's the one line of math that tells a solo founder whether to flip it on — and the two gotchas that quietly eat the savings.
Mem0's July releases fixed injection holes in PGVector, Azure MySQL, Neptune, OpenSearch, and Elasticsearch. The real lesson isn't 'upgrade mem0' — it's that the filters your agent hands to its memory compile to live database queries.
The release candidate is out and the final spec lands July 28. This is the ordered, do-it-now checklist across the stateless core, the three deprecations, and the auth rewrite — with the exact lines that break.
Statelessness and the auth rewrite got the headlines. The quieter change is bigger: Extensions became first-class, MCP Apps let a server ship real UI, and Tasks moved out of the core — MCP stopped being a fixed protocol and became an extensible platform with governance.
Langfuse's scheduled blob exports now write Apache Parquet, not just CSV/JSON. That removes the cast-every-column step between your traces and a warehouse — here's the exact config, a DuckDB query that runs in one line, and the cost-column gotcha to know before you rely on it.
Both ship on the same runtime — middleware is sugar over a LangGraph graph. The decision isn't which framework; it's which layer. Here are the real hooks, the real node API, and a clean rule for choosing.
Passing a bare string to a LanceDB full-text index tokenizes it and ORs the terms — good enough until a user types a phrase, a typo, or a term that only matters in one column. The query classes fix all three, and they're a few lines each.
The real split isn't feature lists or dashboards — it's whether the tool was designed around a single LLM call or around a whole agent run, and how you get alerted when the agent misbehaves.