Your loop checks for one stop_reason and assumes the rest never happen. Then max_tokens truncates a tool call mid-JSON, pause_turn strands a web search, and a refusal returns empty content — and your agent hangs or crashes. Here's what each of the six actually means and what to do about it.
Both landed this week, and their output tokens cost the same $15. One is a managed closed model, the other ships open weights you can host. Here is the decision that actually turns on it.
Anthropic ships three levers for a context window that fills with junk — clearing, compaction, and memory. OpenAI and LangGraph have the same three, under different names. Here's which to reach for, and where each vendor's version differs.
Two frontier-class models landed the same week — one closed and cheaper-to-start, one open-weight and yours to own. The choice isn't the benchmark; it's cost at scale, data control, and how much you trust an autonomous loop.
Both shipped this month, both cost $5 per million input tokens, and both sit at the top of the coding leaderboards. The decision isn't the benchmark — it's caching, the harness you already build in, and how you route down when the task is easy.
The 2026-07-28 spec deprecates the one auth step every remote MCP client relied on. Here is what Client ID Metadata Documents replace it with, and which one you should ship.
Since July 20, 2026, every new AgentCore agent streams its traces, prompts, structured logs, and stdout into a single per-agent CloudWatch log group — no config. Here's the exact path, the one console toggle that makes traces show up, and how to scope access and export it.
AgentCore now ships per-agent tracing by default, so the question changed from 'which observability tool' to 'do I still need one at all?' The honest answer: it depends on one thing — whether AgentCore is your whole stack. Here's the decision, and why it's not either/or.
The 2026-07-28 revision deletes the session, the handshake, and the session-id header. Here is exactly what a server author has to change — and what keeps working untouched for a year.
When software holds the card, the chargeback stops being your escape hatch and the log becomes it. Google's Agent Payments Protocol already defines the exact three records to keep — here's the schema, the fields it forgets, and why you retain them for years, not days.
Cloudflare's June 2026 update swaps the CAPTCHA for a signature check — but only for agents that prove who they are. Here is the Ed25519 keypair, the JWKS directory, and the three headers that get your agent into the verified lane.
Both inference engines shipped the same day again (July 25). The scheduler-overlap fight that defined the last round didn't get a sequel — so the real question moved to speculative decoding, prefix caching, and which new models you can serve day one.
Context editing keeps a long-running agent inside its window by clearing old tool results — but the defaults fire late and fight your prompt cache. Here are the four knobs that decide how often it clears, what survives, and whether each clear is worth the cache re-write.
Claude's tool search ships two variants — a Python-regex matcher and a natural-language BM25 matcher. They search the exact same four fields, so the choice isn't about what gets searched. It's about where your catalog keeps its meaning.
Your agent can plan a payout, but it can't move a dollar without wiring into a bank. Payman is the layer that lets it — a policy-gated wallet where you fund the balance, set the caps, and the agent pays humans, agents, or wallets within rules it can't override.
Block open-sourced a Slack-plus-GitHub for mixed human/agent teams where every message, review, and commit is a signed Nostr event in one tamper-evident log — same identity model whether the author is you or your agent.
By the end you can wire all three memory tiers into a real agent — trim the live context, checkpoint state across a turn with a LangGraph checkpointer, and store durable facts in a vector table — with runnable Python for each.
A 35B model that thinks like a small one: because only ~3B parameters fire per token, a quantized Qwen3.6-35B-A3B fits on a single 24GB card. Here's the exact serving command, the VRAM math, and the point where the API is still cheaper.
Ruff 0.16.0 quietly raised its default lint set from 59 rules to 413 — here is the three-command way to adopt it on your schedule, not your CI runner's.
Two tools keep showing up in the same sentence and they are not the same tool. Promptfoo is a pass/fail gate you put in front of a deploy. Phoenix is the microscope you point at production. Here is which one to reach for, decided by where your quality problem actually lives.
Meta's Muse Spark 1.1 is the cheapest frontier-class API this week at $1.25/$4.25 per million. Kimi K3's hosted API costs more — but its weights drop July 27, and you can run them forever. Pick by whether your real risk is your bill or your dependency.
Both are open-weight coding models, both landed in the week of July 20. Kimi K3 is the more capable frontier model; poolside's Laguna S 2.1 is the one you can actually self-host. The decision is about hardware and license, not a benchmark score.
They trade blows on the benchmark card — Fable 5 wins the deep-reasoning tests, K3 wins sustained execution and frontend. But for a solo founder the tiebreaker isn't the score. It's price, openness, and which one you default to.
The scores landed the same week the weights do. K3 wins sustained-execution coding and frontend outright, trades blows with Fable 5 across the board, and still trails the closed frontier on the hardest deep-reasoning SWE tests. Here's the routing decision that falls out of the numbers.
Six comparisons will tell you when to pick sqlite-vec. None of them show you the build. Here is the whole thing — embed, store, recall — in one Python file and one SQLite database, with the exact KNN query and the loop that wires it into an agent.
The memory tool ships no storage — the reference handler exists to be replaced. Here is a complete Python one, backed by a per-user directory, with the six commands, the exact return strings the model expects, and the security that the demo stores skip.
In-memory `total += cost` is a budget a crash-loop resets to zero. Here's the durable, atomic daily ledger an autonomous agent physically cannot spend past.
xAI's Grok STT landed on OpenRouter this week at $0.10 an hour — under every incumbent. The catch a founder has to price in: the accuracy numbers are xAI's own, and it runs behind a single provider with no failover.
The free agentic-engineering course blowing up on X, timestamp by timestamp — which 20 minutes actually change how you build, and which you can skip at 2x.
Django 6.1's new .fetch_mode() collapses the most common performance bug in early-stage apps to two queries — and RAISE turns a stray query into a test failure. A copy-paste guide with the exact API.