Anyone who runs a client website has spent years designing it for two readers: a person in a browser and a search crawler. Between September 1 and 3, 2026, three AI labs released new models, each pitched in part on agentic work. OpenAI explicitly pitches its release at a third reader, software that opens the page, reads it, fills in the form and presses the button on someone's behalf. Anthropic's release also cut the token price of running that kind of software inside your own team.
Neither consequence depends on a forecast of how many people will hand their errands to an agent. Both follow from how these systems work and can be tested this month.
What shipped, in each company's own words
Each description is the company's claim, not an independent result.
| Date | Model | What the company says | Availability |
|---|---|---|---|
| September 1 | Claude Fable 5.1 (Anthropic) | Cache reads cost 75% less, at $0.25 per million tokens; costs around 25% lower than Fable 5 for typical workloads and up to around 45% lower for complex coding and highly agentic tasks | Generally available on the Claude API, AWS, Google Cloud and Microsoft Azure |
| September 2 | Gemini 3.8 Flash (Google) | Engineered for long-horizon software engineering, autonomous agents and complex enterprise workflows; computer use listed as a preview capability | Generally available in the Gemini API |
| September 3 | GPT-6 Astra (OpenAI) | “A new frontier on computer and browser use” | A limited set of organizations first, then over the following days ChatGPT Plus, Pro, Business and Enterprise, the OpenAI API and cloud platforms including AWS |
Anthropic's pricing note explains the gap. It describes a cache read as the model reusing context it has already processed, and its highly agentic workload as context-heavy, tool-heavy work where cache reads make up most of the cost. An agent working through a long task carries its instructions, its tools and its history into every step, so much of what it pays for is context it has already seen. Google pitches Gemini 3.8 Flash on “the speed and cost efficiency of Flash”; OpenAI's announcement, quoted by 9to5Mac, claims “unmatched speed, accuracy, and judgment” for Astra.
Some of your visitors will be software
A person who asks an assistant to find a product and book it is still your customer; the agent simply loads the pages. Whether it works from screenshots or from the page's underlying structure, it tends to stall where a hurried human stalls. Most of the fixes are ordinary form and checkout design.
Structure and forms
Labels written as real text rather than placeholder hints, buttons that say what they do, and error messages that name the field and the fix are what help a program complete a form without guessing. Screen-reader users already depend on the same things, so this is accessibility work with a second payoff. A bot challenge that stops a scraper can also stop an agent acting for a genuine buyer, so decide which journeys you want agents to finish and which you do not.
Checkout and product data
Agents compare. If shipping, tax or the final price appears only at the last step, the agent may report a price it never confirmed, or give up. Show the full price early, keep guest checkout, and keep payment as the point where a person confirms. Structured product data, meaning schema.org Product and Offer markup with price, currency, availability and shipping, hands machine readers that parse it the facts without relying on the layout, provided it matches what the page shows. The same discipline underpins generative engine optimization, where the machine writes an answer instead of placing an order.
Analytics
An agent session can look like a bot and be filtered out, or look like an unusually decisive human and inflate the conversion rate. Log user agents where your stack allows it, annotate early September in reporting, and watch for engagement shifts that revenue does not explain. Include consent banners: an agent may accept, reject or ignore them. Server-side records of real orders and inquiries are the steadier baseline, one more argument for first-party data.
Inside the agency: what gets cheaper to automate
The cache mechanism pays off most where a large, fixed context meets changing inputs. That describes much of the routine work in agency operations.
| Workflow | What an agent can do | What a person still owns |
|---|---|---|
| Monthly reporting | Pull platform exports, reconcile them against the brief and draft the narrative | Checking every figure against its source before a client sees it |
| Technical and SEO audits | Crawl the site and check titles, markup, redirects and broken links against a fixed checklist | Priorities, and anything that needs judgment about the business |
| Release QA | Walk forms, checkout and key journeys after each deployment and report what fails | Deciding what blocks a release |
The fixed part of each job, whether the checklist, the brand rules or the client's account structure, is the part that gets reused from cache. Keep it stable, versioned and at the start of the prompt so every step can reuse it; rewrite it each time and nothing can. Anthropic's documentation says a cache entry lasts five minutes by default, renewed on each use, so the saving comes within a job or batch, not from last month's run.
Governance before scale
Settle three questions before an agent touches a client account.
- Who approves what. Anything that spends money, publishes or contacts a person goes through a human approval step. Agents draft; people release.
- What the agent can reach. Use read-only credentials scoped to one client, and check that contracts and data processing terms allow that client's data to go to the provider and cloud you chose.
- What content can instruct it. An agent that reads web pages or inboxes can meet prompt injection, which Anthropic describes as adversarial instructions hidden within content processed by AI models. Treat what an agent reads as data, and limit what it may do after reading it.
The monitoring question is sharpest with Astra. TechCrunch reports that the model uses a reasoning technique known as opaque recurrence, which is known to obscure chain of thought, the trace that lets researchers audit how and why a model made a decision. OpenAI has downplayed how much Astra relies on the technique, TechCrunch adds, and chief scientist Jakub Pachocki appeared to frame some opacity as a natural outgrowth of model evolution.
As model capabilities are increasing, monitorability is getting more challenging.
For an agency the answer is the same whichever vendor you choose: do not make reading a model's reasoning your main control. Log what the agent did, keep before-and-after copies of anything it changed, and judge the output against the brief. According to 9to5Mac, OpenAI says Enterprise administrators can enable Astra for their workspace, with access off by default at launch. Treat that switch as a decision someone signs off, not a default someone finds later.
Sources
- https://www.anthropic.com/claude-fable-and-mythos-5-1
- https://www.macrumors.com/2026/09/01/anthropic-claude-fable-5-1/
- https://ai.google.dev/gemini-api/docs/changelog
- https://ai.google.dev/gemini-api/docs/models/gemini-3.8-flash
- https://techcrunch.com/2026/09/03/openai-launches-astra-its-powerful-and-controversial-new-model/
- https://9to5mac.com/2026/09/04/openai-releasing-major-upgrade-to-chatgpt-and-codex-with-gpt-6-astra-details-here/
- https://thehackernews.com/2026/09/gpt-6-astra-scores-100-on-exploitbench.html
- https://platform.claude.com/docs/en/build-with-claude/prompt-caching



