Tagged: agents
OpenAI Shipped an Agent Platform You Can't Sign Up For. The Loop Inside It Is Free.
AI

OpenAI Shipped an Agent Platform You Can't Sign Up For. The Loop Inside It Is Free.

OpenAI Presence launched July 22 as a managed layer over its models for enterprise voice and chat agents, with no self-service option and deployments led by OpenAI Forward Deployed Engineers. What it sells is an operating loop, not a model: scope, simulate, review production sessions, approve changes. OpenAI published the same six-stage loop as a free cookbook.

AWS Set No Deadline to Leave Bedrock Agents. The Frozen Model Catalog Is One.
AI

AWS Set No Deadline to Leave Bedrock Agents. The Frozen Model Catalog Is One.

Amazon Bedrock Agents, launched November 2023, closed to new customers on July 30 and is now Bedrock Agents Classic. Existing agents keep running and AWS set no end-of-life date, but the model catalog is frozen as of that date. Four Classic capabilities have no clean equivalent in AgentCore, and all four are where teams put their business logic.

DeepSeek Made Its Small Model Beat Its Big One. The API Name Didn't Change.
AI

DeepSeek Made Its Small Model Beat Its Big One. The API Name Didn't Change.

DeepSeek shipped V4-Flash-0731 on July 31 with the same architecture and size as the April preview and only a new post-training pass. DeepSWE went from 7.3 to 54.4 and the small model now beats DeepSeek's own larger V4-Pro on every agent benchmark published. The weights got a dated Hugging Face repo. The API kept the same floating name.

An Agent Breached Hugging Face. Attribution Took a Confession.
AI

An Agent Breached Hugging Face. Attribution Took a Confession.

Hugging Face detected an autonomous agent in its production infrastructure, contained it, and published a full writeup on July 16 without being able to say whose agent it was. Attribution arrived five days later because OpenAI read that writeup and recognised its own test run. Neither side's logs carried an agent identity, and neither do yours.

Google's Best Bug Hunter Is a Small Model Run Five Times. You Can't Have It.
AI

Google's Best Bug Hunter Is a Small Model Run Five Times. You Can't Have It.

On July 21 Google shipped Gemini 3.5 Flash Cyber, a small fine-tune that found 55 confirmed vulnerabilities in V8 against 36 for Opus 4.6, by being called up to five times inside CodeMender. The recipe is copyable. The model is not: it goes to governments and trusted partners only.

AWS Started Metering Coding Agents Like Infrastructure. The Metrics Came From the IDE Era.
AI

AWS Started Metering Coding Agents Like Infrastructure. The Metrics Came From the IDE Era.

On July 20 Amazon CloudWatch shipped Coding Agent Insights, ingesting OpenTelemetry metrics straight out of Claude Code, Codex and GitHub Copilot. The coding agent moved from the tools budget to the infrastructure budget, which is the right call. The metric set is not: tokens, cost, sessions, lines of code, commits and edit acceptance all measure the middle of the work, the part the agent took over.

Agents Got a Native Payment Rail This Month. The Wallet Is Where the Risk Moved.
AI

Agents Got a Native Payment Rail This Month. The Wallet Is Where the Risk Moved.

The x402 Foundation went live under the Linux Foundation on July 14 with Visa, Mastercard, Stripe, and AWS on board, and HTTP 402 finally has a client that can pay a bill: the agent. The wire protocol is the settled, easy part. What an agent is allowed to spend, and whether that permission can be replayed by another agent, lives in the wallet layer, and the spending cap has to sit below the application, because the model that decides to pay is the same model an attacker can talk into paying.

Your Agent Runs Code No One Reviewed. The Sandbox Now Assumes It's Hostile.
AI

Your Agent Runs Code No One Reviewed. The Sandbox Now Assumes It's Hostile.

An unreleased model kept escaping its test sandbox this month, and the containment responses from Anthropic and Google landed the same week. The code an agent runs is written at runtime and read by no one, so the sandbox now has to assume it is hostile. Egress closed by default is the control that pays for itself.

The Agent Loop Is Moving Out of Your Codebase
AI

The Agent Loop Is Moving Out of Your Codebase

In the week of July 16, AWS AgentCore went GA, Microsoft shipped its Agent Harness at BUILD, and the OpenAI, Anthropic, and Google SDKs made declarative loops first-class. The plan-act-observe loop you hand-wrote is turning into a managed runtime feature. The loop was never the hard part, and knowing what you give up when the runtime owns it is the part worth thinking about.

The Kill Switch Belongs in the Runtime, Not the Prompt
AI

The Kill Switch Belongs in the Runtime, Not the Prompt

A Writer survey this spring found 35 percent of organizations could not shut down a rogue agent. Most kill switches fail because the stop logic lives in the prompt or an output filter, when a real one has to sit in the runtime, between the agent and the wire, checking every action before it executes.

GPT-Live Keeps Talking While a Bigger Model Does the Thinking
AI

GPT-Live Keeps Talking While a Bigger Model Does the Thinking

GPT-Live listens and speaks at the same time and delegates hard questions to a bigger model in the background, replacing the turn-based pipeline every voice agent was built on. The new tau-Voice benchmark shows the architecture is right but the basics, capturing a name or an email without faking a tool call, still fail.

MCP Went Stateless, and the Sticky Session Was the Whole Problem
AI

MCP Went Stateless, and the Sticky Session Was the Whole Problem

The 2026-07-28 MCP release candidate makes the protocol stateless, no handshake and no session id, so any request can hit any server instance. That deletes the sticky routing and shared session store most remote MCP servers were built around and lets them run behind a plain load balancer.

Meta's Computer-Use Model Writes a Script When Clicking Is Too Slow
AI

Meta's Computer-Use Model Writes a Script When Clicking Is Too Slow

Meta shipped Muse Spark 1.1 on July 9 with its first paid API, but the detail that matters is how it runs computer use: it decides when to write a script and when to click, and emits batches of actions per step instead of one click per model call. The one-action-per-call loop is the hidden tax on every computer-use agent, and that is exactly what batching and script-versus-click routing attack.

xAI Trained Grok 4.5 Alongside Cursor. Your Agent Isn't Cursor.
AI

xAI Trained Grok 4.5 Alongside Cursor. Your Agent Isn't Cursor.

xAI shipped Grok 4.5 on July 8, trained alongside the Cursor editor inside one agent's loop. A benchmark score earned in the harness a model was co-trained with is a ceiling under ideal conditions, not a promise it transfers to your stack. Model choice is quietly becoming model-plus-harness choice.

The Exploit Was a Prompt That Said "Leak API Keys"
AI

The Exploit Was a Prompt That Said "Leak API Keys"

CISA added a Langflow authorization bypass to its Known Exploited Vulnerabilities catalog on July 7 and gave federal agencies three days to patch. The attack carried no shellcode: one request ran another user's agent flow with the input "leak api keys". In an agent builder, permission to run a flow is permission to read every credential wired into it.

An Agent That Runs for Three Days Needs Somewhere to Live
AI

An Agent That Runs for Three Days Needs Somewhere to Live

Microsoft moved Foundry hosted agents to general availability on July 11, and the headline feature is a durable runtime, not a model. The thing that kept long-running agents out of production was never the model. It was that you deployed them on infrastructure built for request-and-response, where anything that waits gets killed.

GPT-5.6 Stops Running Your Tools Through the Model
AI

GPT-5.6 Stops Running Your Tools Through the Model

GPT-5.6 shipped programmatic tool calling: the model writes code that runs your tools in a sandbox instead of calling them one at a time. OpenAI, Anthropic, and Cloudflare all reached the same conclusion, that the model was never a good place to run the tool loop.

The Agent Failed for Weeks and 4,286 Tests Stayed Green
AI

The Agent Failed for Weeks and 4,286 Tests Stayed Green

A June 2026 study tracked 22 production incidents in a live LLM agent runtime. In most of them the system was already broken while all 4,286 tests and 827 governance audits stayed green. Agents fail in the seams your tests never watch.

GitHub Wasn't Built for Billions of Agents Hammering One Server
AI

GitHub Wasn't Built for Billions of Agents Hammering One Server

Entire, from former GitHub CEO Thomas Dohmke, mirrors your repo into regional nodes so agents stop hammering one central Git server. The real signal is the bottleneck moving from the model to the plumbing built for human-paced work.

Z.ai's ZCode Puts the Agent in the Center and the Editor on the Edge
AI

Z.ai's ZCode Puts the Agent in the Center and the Editor on the Edge

Z.ai shipped ZCode, an agent-first coding tool where the chat is the main window and the editor is one panel around it, running on the cheap open-weight GLM-5.2. The shift to watch is not the benchmark, it is where the cursor lives.

Nine in Ten Companies Running Agents Have Already Had a Security Incident
AI

Nine in Ten Companies Running Agents Have Already Had a Security Incident

AvePoint surveyed 750 IT leaders in regulated industries and 88.4 percent reported an AI agent security incident in the past year. The scarier number is the visibility gap: one in five companies cannot account for the agents already running on their data.

Sonnet 5 Costs $2 Today and $3 in September. Model for September.
AI

Sonnet 5 Costs $2 Today and $3 in September. Model for September.

Claude Sonnet 5 runs agents at near-flagship quality, but the launch price is a promotion that expires August 31 and jumps 50 percent. Model your agent economics on the September number, not the intro rate.

Anthropic Turned Its Coding Agent Into a Scientist
AI

Anthropic Turned Its Coding Agent Into a Scientist

Claude Science is Claude Code pointed at a new toolbox. Same model, same autonomous loop, a reproducibility layer bolted on. The lesson for builders: the harness is the product, and your vertical is next.

The Agent Writes Half the Code, and Your Metrics Still Count Lines
AI

The Agent Writes Half the Code, and Your Metrics Still Count Lines

Roughly 41 percent of code is AI-written now, so lines shipped, PRs merged, and commit counts stopped measuring value. The fix is not a better dashboard, it is counting solved problems instead of produced code.

AWS Built a Backend Framework That Expects an Agent to Write the Code
AI

AWS Built a Backend Framework That Expects an Agent to Write the Code

AWS Blocks, an open-source TypeScript framework now in public preview, assumes an AI agent writes the backend, so it bakes the correct patterns into the framework instead of the docs. The real shift is the audience: the fastest way to make agent-written code reliable is to remove the decisions, not write better instructions about them.

Anthropic Took a Model From 17 to 93 Percent Without Touching the Model
AI

Anthropic Took a Model From 17 to 93 Percent Without Touching the Model

On VirBench, Claude Sonnet 4 went from 16.9 to 92.8 percent on viral-sequence retrieval with no change to the model, just a deterministic tool underneath it. The reliability you keep trying to buy with a bigger model is sitting in the infrastructure.

The Tool Call Now Returns a Ticket, Not a Result
AI

The Tool Call Now Returns a Ticket, Not a Result

MCP's release candidate makes Tasks a first-class extension: a tool call can hand back a handle instead of an answer, because agent work stopped fitting inside one request. Here is what changes if you build MCP servers.

Your Model's Best Answers Are Training Data for a Cheaper One
AI

Your Model's Best Answers Are Training Data for a Cheaper One

Anthropic says Alibaba-linked operators ran 28.8 million conversations across 25,000 fake accounts to distill Claude's agentic and coding skills. For anyone running an API-backed AI product, the lesson is that your best outputs are someone else's training data.

AI

Your Agent Logs In With a Password That Never Expires

Most AI agents authenticate with a long-lived static API key in an env var. Anthropic's Workload Identity Federation, GA on June 17, swaps it for short-lived scoped credentials your stack already knows how to issue.

AI

Watching Your Agent Work Is Not the Same as Knowing It Works

Teams instrument their agents before they grade them, 89 percent run observability and only 52 percent run evals. Watching what an agent did is not the same as knowing whether it was any good.

AI

The Bug Report Your Agent Read Was the Attack

An attacker writes a fake error into your Sentry project, you ask your coding agent to fix production bugs, and the agent reads the attacker's text as a remediation step and runs it. The Sentry version hit an 85 percent success rate and no security tool noticed.

MCP Went Stateless. Your State Didn't Disappear, It Moved.
MCP

MCP Went Stateless. Your State Didn't Disappear, It Moved.

The July 28 MCP spec removes the protocol session, so any request can hit any server instance and a remote MCP server can finally run behind a plain load balancer. The catch: the state you kept in the session does not vanish, it moves into opaque handles you have to design yourself.

Your Agent's Context Window Is Not Its Memory
AI

Your Agent's Context Window Is Not Its Memory

Bigger context windows stopped making coding agents better. One team swapped a 2M-token model for 64k plus structured retrieval and watched bug-fix accuracy climb from 71 to 84 percent. The window is where the agent thinks, not where it knows.

The Agent Will Stop When Your Tests Say So
AI

The Agent Will Stop When Your Tests Say So

Claude Code now ships more than twenty lifecycle hooks. One lets you refuse to let the agent finish until your test suite passes. The control you want lives in the event system, not the system prompt, and the surface moved a lot this month.

Three MCP Servers, 72 Percent of the Context Gone
AI

Three MCP Servers, 72 Percent of the Context Gone

Every tool an MCP server exposes loads its full definition into the agent's context at the start of the conversation, used or not. One team measured three servers eating 143,000 of 200,000 tokens before the agent read a single instruction, and a benchmark found MCP costing 4 to 32 times more tokens than a CLI for identical work. Use MCP for discovery, dispatch to a CLI for execution.

Your Best Model Can Go Dark on a Friday
AI

Your Best Model Can Go Dark on a Friday

On June 13, 2026, a US export-control letter forced Anthropic to take Fable 5 and Mythos 5 offline for every user worldwide, with no notice and no migration window. The old risk was a deprecation email in twelve months. The new risk is your most capable model gone at 5:21 on a Friday, and most teams have never priced it in.

The Breach Will Look Like the System Working
AI

The Breach Will Look Like the System Working

The agent failure worth preparing for is not the jailbreak or the hallucination. It is the agent doing exactly what it was told with a credential nobody scoped down. Non-human identities outnumber humans 100 to 1, and 97 percent carry more access than they use.

The Sandbox Moved Into the Operating System
AI

The Sandbox Moved Into the Operating System

For a year, running an agent safely meant building the cage yourself out of microVMs and seccomp profiles. Microsoft Execution Containers push that boundary into the operating system, so you declare what an agent can touch instead of engineering the wall. The hard part, deciding the policy, is still yours.

Twelve Agents, Half of Them Working Alone
AI

Twelve Agents, Half of Them Working Alone

The average company now runs twelve AI agents and half of them work in complete isolation. The bottleneck stopped being how many agents you can build. It became whether any of them can hand work to another.

Set the Bar, Hold the Bar
AI

Set the Bar, Hold the Bar

Agent deployments rarely fail because the model is weak. They fail because nobody defined what done means before the run, or nobody checked the result after. The Bar is the two-part framework for the only jobs left on the human side.

Cost per Solved Task, Not Cost per Token
AI

Cost per Solved Task, Not Cost per Token

Uber capped engineers at $1,500 a month after burning its annual AI budget in four months, and Fable 5 costs double Opus yet wins on long migrations. Per-token price stopped being the cost; cost per solved task is, and the lever that controls it is making loops halt.

Rules Are Who You Are, Skills Are What You Know, Prompts Are What You Want
AI

Rules Are Who You Are, Skills Are What You Know, Prompts Are What You Want

Rules, skills, and prompts each have their own cost model, and filing instructions under the wrong layer is why agents feel either bloated or ignorant. A field guide to sorting the pile.

The Judge Does Not Run Your Tests
AI

The Judge Does Not Run Your Tests

The judge model behind agent loops like Claude Code's /goal never runs your tests or reads your repo. It only reads the transcript, so verification is only as real as the receipts your agent produces.

Stop Being the Thing in the Loop
AI

Stop Being the Thing in the Loop

Boris Cherny writes loops that prompt the agent instead of prompting it himself. The job moved from writing code to writing the thing that writes the code, and only two properties make that loop trustworthy: an external check and hard stops.

From RAG to Agentic Memory, a Working Blueprint
AI

From RAG to Agentic Memory, a Working Blueprint

Replace static RAG with a memory-first agent. A working blueprint for episodic, semantic, and working memory.

Gartner Says 40% of Enterprise Apps Will Use AI Agents by December
AI

Gartner Says 40% of Enterprise Apps Will Use AI Agents by December

From under 5% to 40% in one year. Gartner predicts an eightfold increase in AI agent adoption across enterprise apps, while 88% of companies using AI still struggle to show bottom-line impact.

Healthcare AI Agents Have Shipped. The Validation Frameworks Haven't.
AI

Healthcare AI Agents Have Shipped. The Validation Frameworks Haven't.

Epic just put three AI agents on stage at HIMSS 2026. Art writes notes. Penny handles billing. Emmie talks to patients. The validation strategy was absent.

MCP Gave AI Agents Superpowers. Attackers Noticed.
AI

MCP Gave AI Agents Superpowers. Attackers Noticed.

The protocol that lets AI agents use tools also gave attackers a new attack surface. January 2026 showed us how bad it can get.

The CLAUDE.md File Is Your Actual Product Now
AI

The CLAUDE.md File Is Your Actual Product Now

The file that tells your AI agent how to behave has become the highest-leverage artifact in your entire workflow. Not the code. The configuration.

All ai agents security infrastructure developer-tools