The self-hosted Langfuse platform cut its first v4.0.0 release candidates this week, and the headline change is a destructive one: it drops superseded Postgres and ClickHouse tables. Here is the decision for a solo team running its own instance.
Every rent-vs-own analysis of the 2.8T open-weight model quotes the $3/$15 sticker and stops. For an agent, the real price is $0.30 — and that one number moves the break-even to 'basically never.'
A copy-paste walkthrough from an empty boto3 session to a running, tool-using agent — you declare the model, tools, skills, and instructions, and AWS runs the loop. No orchestration code.
Your agent slows and drifts as tool output piles up in the window. Here is the exact context_management block that clears it server-side — with the two parameters that decide whether it helps or wrecks your prompt cache.
SAP just paid €1B+ for the company behind TabPFN. Here's the founder version: point a tabular foundation model at your customers.csv and get a ranked churn-risk list in about five lines of Python — no ML engineer, no model to train, no GPU required.
Compaction is one declarative edit that summarizes old turns automatically when your prompt gets big. The switch is identical on the Anthropic API and Amazon Bedrock — the only things that move are the request envelope and one billing number that hides the real cost.
The count_tokens endpoint is free, model-accurate, and the only honest way to see your real input size. Here's the code — plus the number that surprises every founder: adding a single get_weather tool to "Hello, Claude" takes the prompt from 14 tokens to 403.
The x402 SDK just moved under the Linux Foundation and split into scoped @x402/* packages. Here's the current, from-scratch way to put a price on an Express route and take USDC from a paying agent — the seller side and the buyer side, with the exact code.
You denied egress by default and allowlisted your package registry. Good — now that registry proxy is the single reachable service your agent can attack. Here's how to make it boring.
OpenAI's models broke out of a cyber-eval sandbox through the one hole every dev container leaves open on purpose: the package mirror. Your agent's box has the same shape.
Managed harnesses like AgentCore let you declare an agent and rent the loop; the Claude Agent SDK and its kin let you own it line by line. The right call isn't about AWS — it's about where your product's edge actually lives.
One request, two models: a fast, cheap model does the bulk of the work and calls a stronger model only for the plan. Here's the API, the billing, and when it actually saves money.
Reflection, Kimi K3, GLM — the open-weight frontier is getting loud, and it's tempting to make one of these models load-bearing in your product. Before you do, run the bet through four gates: is it shipped, is it callable, what's the license, and what's your fallback. Here's the framework, with the three staging patterns that let you get the upside without betting the company.
Skip the framework. An agent is an LLM calling tools in a loop — here's the ~40 lines that run it, the three context moves that keep it from rotting, and how to hang a real MCP tool off it.
The 2026-07-28 MCP spec deleted the handshake and put standard OAuth 2.1 in charge of who gets to call your server. WorkOS AuthKit flips into an MCP-compliant authorization server with one config value — here's what it does, who it's for, and where the free line sits.
Microsoft Execution Containers put the sandbox where the operating system already enforces boundaries — a policy-driven jail for model output and tool calls that runs on Windows, Linux, and macOS. It's MIT-licensed, on npm, and GitHub Copilot CLI already ships on it.
Huawei Cloud put its CodeArts coding agent into open beta and took the launch abroad at its Thailand summit. It runs open-weight models you already know, indexes your whole repo to cut ~30% of tokens, and starts free — here's what it is, who it's for, and where the free line sits.
Your agent scores ~77% on SWE-bench Verified and then stalls on a real feature. SWE-Marathon measures the gap: 20 tasks that run to 27 million tokens each, where even the best model clears only 42%.
Blender, Unreal, Adobe, and Houdini all shipped MCP servers at SIGGRAPH this week. The integration surface for creative tooling just consolidated onto one protocol — and the interesting design choice is that the artist still decides.
The 2026-07-28 spec makes statelessness the default, and the whole ecosystem is telling you to wait for the beta v2 SDKs. You don't have to. The stable SDK already runs stateless — one flag flips it. The real work is moving your state out of the transport, and that you can do right now.
One reasons and acts in a single pass. The other retries the same task, writing itself a note on what went wrong. The difference isn't which is smarter — it's whether you have a success signal and can afford the second attempt.
Pydantic AI's V2 rewrite bets the whole framework on one primitive — the capability — and hides the loop. LangGraph makes the loop the product: nodes, edges, and a checkpointer you own. Here's which bet fits which team.
Microsoft's open-source Execution Containers add a third option to the agent-sandbox decision: enforce a policy on a process instead of renting a whole virtual machine. Here's the one axis that tells you which you actually need.
The 2026-07-28 stateless spec is final and a stable v2 SDK is targeted for the same day — but the official README still says 'v1.x for production, don't use v2 yet.' Here's the version to start a new server on this week, and the signal that tells you to move.
The final spec froze every feature into an Active, Deprecated, or Removed state with a 12-month removal guarantee. Here's the one-screen map of what to adopt today and what to design around.
Three tools keep winning the 'how do I see what my agent did' question — and they're not really competing. Each answers a different question. Pick by the one you actually have.
You've been watching token counts. The number that actually moves your bill and your latency is the share of your prompt that hits cache — and most agent designs quietly wreck it.
The open weights that landed July 27 aren't a full-precision checkpoint you shrink to fit — they're the model as trained. MXFP4 quantization-aware training changes two self-hosting reflexes, and getting them wrong costs you quality or memory.
The download is one click and the terms are not MIT. The Kimi K3 License lets you sell what you build — until a Model-as-a-Service crosses $20M, or your app crosses 100M users. Here's the clause that decides whether 'open' means open for you.
The scariest agent bug isn't the call that fails. It's the call that succeeds — but the response gets lost, so your retry logic runs it again. One key, generated once and reused, is the fix.