CodeQL 2.26.0 ships a new query that catches untrusted input flowing into an AI model's system prompt, right in code scanning. It's not a runtime guardrail — it catches the architectural mistake before the model ever runs. Here's exactly what it sees, what it misses, and how to confirm it's on.
One OpenAI-compatible client, two base URLs, and a fallback wrapper: send the bulk of your agent's calls to a cheap open-weight model and escalate only the calls that fail. A copy-paste pattern in ~40 lines of Python.
Chamath Palihapitiya took the CEO seat and raised $135M to sell governed AI software delivery to regulated enterprises. Strip out the enterprise price tag and there's a decision here for every founder: the bottleneck in shipping with agents stopped being code generation.
The five providers a founder actually chooses between all serve the same open weights. The decision isn't the provider — it's one axis: pay per token, or rent the GPU by the hour.
An idle agent still holds the whole GPU. Sleep mode parks the weights in CPU RAM and hands the VRAM back in under a second — so one card can run the model you're not using right now.
The license war is mostly noise for anyone who self-hosts — the real choice is ecosystem versus operational simplicity, and it hinges on one question about your business model.
Stripe's Agentic Commerce Suite gives a solo builder two ways to get paid by software, not people. SPTs are for an agent buying from your store; MPP is for an agent paying your API. Here's which to pick, with the exact code.
The Harness ships a capability that collapses a whole loop of tool calls into a single sandboxed Python script the model writes once. Here's the two-line change, what it actually does, and when it pays off.
Per-seat pricing pays you to under-deliver — the better your agent works, the fewer seats a buyer needs. Here's how to choose the model that doesn't fight your own product.
Microsoft folded Semantic Kernel and AutoGen into one production framework and shipped it for .NET and Python. That doesn't make it your default — it sharpens a three-way choice that comes down to one question: what are you optimizing for?
Meta shipped its first in-house image model this week — and it's a tool-using agent, not a one-shot generator. It also quietly made public Instagram photos reusable in other people's prompts. Founders get a new ad lever and a new likeness risk in the same release.
The open-weight coding tier turned over almost completely in one quarter. Four permissive-licensed models now run real coding agents — and if you pick by the leaderboard screenshot instead of active params, license, and who actually verified the number, you'll pick wrong.
You picked a usage or hybrid price. Now you have to count things accurately, survive retries, and produce an invoice a customer won't dispute. Here's the plumbing — with the idempotency bug that quietly double-charges everyone.
When your AI coding tool changes hands, 'we don't train on your code' becomes a promise made by a new owner. Here's the defense-in-depth version — the API-vs-chat distinction that decides everything, the zero-data-retention terms to demand, the gateway rule that enforces it, and when the only real answer is self-hosting.
A user closes the tab mid-stream. Your server keeps generating to the last token, billing GPU time to output that reaches no one. Here's why abandoned streams keep running, and how to make the disconnect actually abort the request.
Roughly 10× the throughput of a frontier model on Nvidia GPUs turns a 13-second answer into a 1.3-second one. The number that matters isn't the speed — it's the threshold it crosses: from background agent to in-the-loop product.
The July 9 GA quietly changed the caching contract — explicit breakpoints, a mandatory cache key, a 30-minute floor, and one gotcha that silently skips the write exactly where agents want it most.
Since June 1, Copilot bills by AI Credits, not requests — and added a $100 Max tier for agent-heavy work. The good news for light users: your inline completions are now free. The trap: agent mode burns credits fast.
The preview packages sessions, tools, multi-agent delegation, and HTTP serving behind one chat() call. The one architectural choice it forces on you — client-managed vs server-managed state — reshapes everything downstream.
OpenAI's GPT-Live made 'listen and speak at the same time' the story of the week. It's real — and it's ChatGPT-only, no API. Here's what full-duplex actually changes, what it breaks, and the stack you'll still ship.
This week's founder news, read for the pattern: in two months Microsoft, Amazon, OpenAI and Anthropic each built the same business — forward-deployed engineers who move into a customer's company and make the AI actually work. The bottleneck moved, and it tells you where the defensible business now is.
OpenAI now ships an official plugin that runs Codex inside Anthropic's Claude Code. The founder question flipped from 'which agent' to 'what do I standardize on so I'm not locked in' — here's the answer.
Since Claude Code v2.1.172, a subagent can spawn its own subagents — up to five levels deep. The whole feature turns on a single field in your agent definition. Here's the copy-paste build.
OpenAI launched ChatGPT Work on July 9, an agent mode powered by GPT-5.6 that turns scattered notes and drafts into finished docs, sheets, and slides. For solo founders, the unit of AI output just moved from 'answer' to 'artifact.'
The Claude Console now lets you set a lifetime on every API key — 3 hours to Never — and the Admin API reports it as expires_at. Here's how to turn a long-lived secret into a short-lived one without taking prod down at 3am.
Taktile raised $110M to let AI agents approve credit, flag fraud, and clear AML alerts inside banks. Read past the funding: the frontier of what an agent is *for* just moved from answering questions to making decisions someone can be sued over — and that changes what you have to build.
Your agent decides to send an invoice, then persists 'invoice sent.' Two writes, two systems, no atomicity — and the crash always lands in the gap between them. The 20-year-old fix is the transactional outbox.
Microsoft's native compiler is finally stable and it is roughly ten times faster. The catch founders keep missing: there is no stable programmatic API yet, so Vue, Svelte, Angular, and typescript-eslint can't use it on day one.