DevelopmentNew Release12 min readPublished August 19, 2026

Five GA moves in one day · 0 forced migrations · zoom now on by default

Five Betas Went GA. Which Headers Can You Delete Now

Anthropic moved five Claude Developer Platform capabilities to general availability on August 19, 2026: computer use, the new browser use toolset, the Files API, Agent Skills plus the Skills API, and Admin API user management. The reassuring part sits in the fine print — every superseded beta header is still accepted, and, as of the date checked, no sunset date is published for any of them.

DA
Digital Applied Team
Senior strategists · Published Aug 19, 2026
PublishedAug 19, 2026
Read time12 min
Sources6 primary docs
Capabilities reaching GA
5
in a single release-notes day
Forced migrations
0
superseded identifiers still accepted
Computer-use member tools
17
computer_toolset_20260801
zoom on by default
Sunset dates published
None
as of the date checked, for any superseded identifier

The Claude Developer Platform had a maintenance day on August 19, 2026 — and for teams running Claude integrations in production, that is better news than a feature day. Five capabilities reached general availability at once: computer use, browser use, the Files API, Agent Skills with the Skills API, and Admin API user management for Claude Enterprise.

The instinctive question for any integration owner reading a GA announcement is “what breaks, and by when?” Here the answer is unusually calm: nothing breaks, and no deadline exists. Every beta header these GA moves supersede is still accepted for backward compatibility, earlier beta tool versions remain available, and — after checking both Anthropic’s general beta-header policy page and each individual release note — we can say no sunset date is published for any of them.

This is not another how-to. We already publish implementation guides for computer use and Agent Skills, and we cross-link them below. This post does the maintenance-day job instead: exactly what changed, which headers you can delete, what silently keeps working if you do nothing, and the one place where upgrading changes behavior underneath a same-looking call.

Key takeaways
  1. 01
    Five capabilities reached GA in one day.Computer use, browser use (a genuinely new toolset), the Files API, Agent Skills plus the Skills API, and Admin API user management all left beta on August 19, 2026, per Anthropic’s release notes.
  2. 02
    Nothing here is a forced migration.The old beta headers are still accepted on all three header-dropping capabilities, and earlier beta tool versions such as computer_20251124 remain available. The GA identifiers are additive.
  3. 03
    No sunset date is published — and that absence matters.As of the date checked, neither the beta-headers policy page nor any individual release note states when superseded identifiers stop working. You can schedule this migration on your own calendar, not Anthropic’s.
  4. 04
    Computer use changes behavior, not just its header.computer_toolset_20260801 batches multiple actions per turn, ships 17 member tools, and turns zoom on by default. Teams upgrading purely to drop the header inherit a new default without asking for it.
  5. 05
    The Files API is the one place where deleting the header alone forces a code change.Dropping the files-api-2025-04-14 header switches list pagination from cursors to page/next_page with a new ids[] filter, and adds file expiration. List-files code needs a small, real update.

01What Went GAFive moves, one day — read it as a maintenance release.

The August 19 release-notes entry reads as five bullets, but they are not five equal stories. Four of them retire beta headers or beta tool versions for capabilities teams already run in production. One — browser use, shipping as browser_toolset_20260801 — is a genuinely new tool that drives a browser your application hosts through its accessibility tree, and it deserves its own treatment: our deep dive on the new browser use tool covers it in full, so here it gets exactly one row in the table below.

The table is the checklist version of the whole event: what the old identifier was, what the GA identifier is, what actually changes beyond the header, and whether you need to do anything this quarter.

The August 19, 2026 Claude Developer Platform GA migration checklist: the five capabilities that reached general availability, their superseded beta identifiers, their GA identifiers, what actually changes beyond the header, and what action an integration owner needs to take.
CapabilitySuperseded identifierGA identifierWhat actually changesAction needed
Computer usecomputer_20251124 — still supported; a beta header is still required on most other platformscomputer_toolset_20260801, no beta header on the Claude APIBatched multi-action turns, 17 member tools, zoom on by default, per-member configs, new request/response shapeReview the zoom default and the new tool_result contract before upgrading — or change nothing
Browser useNone — new toolbrowser_toolset_20260801New client toolset driving an app-hosted browser via the accessibility tree; not a rename of computer useEvaluate separately — see our dedicated browser-use post
Files APIfiles-api-2025-04-14 beta header/v1/files, no header requiredFile expiration; pagination moves from cursors to page / next_page; new ids[] filterUpdate list-files pagination code when you drop the header
Agent Skills + Skills APIskills-2025-10-02 beta header/v1/skills, no header requiredNone stated beyond the header — requests that still send it continue to work unchangedNone required
Admin API user managementce-user-management-2026-07-13 header — required only on group and custom-role requestsGA for members, invites, groups, and custom roles (Claude Enterprise)Header no longer required on group/custom-role requests; requests that still send it are accepted unchangedNone required

One framing note before the detail: the pattern across all five moves is identical. Old headers are accepted, not rejected. A request that still sends files-api-2025-04-14 keeps working and returns the previous response format; a request that still sends the Skills or user-management header behaves identically to one that does not. That single design decision is what turns a five-item changelog into a calm afternoon instead of a sprint-planning emergency.

02Computer UseThe header is gone — and the behavior changed with it.

Computer use leaves beta on the Claude API as the computer_toolset_20260801 toolset. The headline is the missing beta header, but the more consequential story is that this is a structural revision, not a rubber stamp. Where the beta tool was one monolithic tool with an action field, the GA toolset exposes 17 member tools for screenshot, mouse, and keyboard control of a desktop environment, per the Computer Use Tool reference.

"The computer use tool is out of beta on the Claude API as the `computer_toolset_20260801` toolset: no beta header, batch actions (several actions in one turn), `zoom` enabled by default, and per-member configuration through `configs`. Earlier beta versions remain available."— Claude Platform release notes, August 19, 2026

Three of those clauses deserve unpacking, because each one changes what your integration code sees:

Batch actions: multi-action turns

Claude can now return several tool_use blocks in a single response — click, type, screenshot — without waiting for each intermediate result. Execution is strictly sequential, not parallel. The subtle new obligation is in error handling: if one block fails, execution stops there, but every subsequent block in that turn must still receive a tool_result, with content stating it was not executed because an earlier action failed. Harness code written for the one-action-per-turn beta has never needed to fabricate results for skipped actions; the GA toolset requires it.

Zoom: on by default

The zoom tool lets Claude request a cropped, full-resolution view of a screen region — useful for small text, dense UI, file names, or status-bar content — while the coordinates it uses afterward stay in full-screenshot space. Anthropic’s docs are explicit that zoom is enabled by default for all 17 member tools. It can be switched off per integration via configs if your environment cannot produce zoomed images, but the toolset ships with it on.

A new request/response shape

Upgrading is a real (if small) migration, documented in the reference’s own migration table: the display parameters (display_width_px, display_height_px, display_number) are no longer needed because coordinates are always in screenshot pixel space; tool_use and tool_result blocks now carry a toolset_name field and dispatch on the toolset-name plus tool-name pair instead of a single action field; and zoom moves from an enable_zoom parameter to a built-in member tool.

The one trap in this release
A team that upgrades to computer_toolset_20260801 purely to delete the beta header gets a new capability — zoom — turned on without asking for it. That is the sharpest distinction in this whole GA batch: “beta header removed” and “default behavior changed” arrived in the same identifier. If your environment cannot serve zoomed screenshots, set configs to disable zoom explicitly, or stay on computer_20251124, which remains supported.

Two scoping caveats keep this honest. First, the no-beta-header behavior is Claude API only: as of the date checked, Claude Platform deployments on AWS, Amazon Bedrock, Google Cloud, and Microsoft Foundry still require a beta header or only offer the earlier tool versions. Second, the GA toolset is supported on Claude Fable 5, Claude Mythos 5, Claude Opus 5, Claude Sonnet 5, and Claude Opus 4.8 — the same five-model list the release notes give for browser use.

None of this changes how you should build a computer-use agent — for that, our computer use API build guide and production deployment guide for computer use remain the implementation references, and our cross-vendor computer-use agent matrix covers the competitive picture. What GA changes is the operational posture: this surface is no longer experimental by Anthropic’s own labeling, and the toolset revision is the shape new work should target.

03Files APIThe one place your code actually needs touching.

The Files API is GA on the Claude API: requests to the /v1/files endpoints, and Messages API requests that reference an uploaded file, no longer require the files-api-2025-04-14 beta header. Requests that still send it keep working and return the previous response format. But of the five GA moves, this is the one where dropping the header changes what comes back — which makes it the most concrete code-touch in the release, and the item most secondary coverage will likely skip past in favor of the flashier toolsets.

Pagination changes shape

Without the beta header, the list endpoint moves from cursor-only pagination to page / next_page paging, plus a new ids[] filter, per the Files API guide. The defaults: 20 files per page, 1,000 maximum, newest first. The ids[] filter is genuinely useful — check up to 100 known file IDs in one request without paging — but it carries a quiet gotcha: any ID that does not resolve is silently omitted from the response rather than raising an error, so callers must diff the returned IDs against the requested ones to detect misses. It always returns a single page (next_page comes back null) and cannot be combined with page or limit.

File expiration is new

GA also brings a real lifecycle feature: set expires_in_seconds at upload, from 3,600 seconds (one hour) to 7,776,000 seconds (90 days). The resulting expires_at timestamp is null if no expiration was set, and the value is fixed at upload — it cannot be changed afterward. Once expires_at passes, downloading the file’s content returns a 404 and a Messages request referencing it fails before inference runs. But metadata stays readable for up to 30 days past expiration, and the file keeps appearing in list responses during that window — so list-consuming code has to compare expires_at against the current time to filter expired files out itself.

Max expiration
expires_in_seconds range
90days

From 3,600 seconds (one hour) up to 7,776,000 seconds. Set once at upload, immutable afterward; expires_at is null when no expiration was set.

min: 1 hour
ids[] filter cap
Per list request
100IDs

One request, one page, no paging. Unresolved IDs are silently omitted rather than erroring — diff the response against your request to detect misses.

next_page: null
Post-expiry visibility
Metadata retention window
30days

Expired files keep appearing in list responses and keep readable metadata for up to 30 days. Content downloads 404 immediately; Messages requests fail before inference.

filter client-side
Expiration is not deletion
Anthropic’s own docs hedge this explicitly: after expiration, “the underlying content may be retained for a limited period thereafter for safety review before permanent deletion.” Treat expiration as content becoming inaccessible — not as a guaranteed-purge control. If a compliance regime requires provable destruction timelines, this feature alone does not deliver that, and your data-retention documentation should say so.

The operational numbers worth pinning to your runbook: file storage caps at 500 MB per file and 1 TB per organization; file-related calls are rate-limited to roughly 500 requests per minute; and Files API operations themselves — upload, download, list, get metadata, delete — are free. Only file content used inside Messages requests is billed, as input tokens.

04Skills + Admin APITwo clean GAs — and one precisely scoped header change.

Agent Skills and the Skills API (/v1/skills) are GA on the Claude API. Requests — including Messages API requests that load Skills through the container parameter — no longer require the skills-2025-10-02 beta header, and requests that still send it continue to work unchanged. That is the entire delta: no behavior change, no new response shape. If you are building with Skills rather than just maintaining them, our Agent Skills framework guide is the authoring deep dive.

The Admin API move needs more precision, because it is easy to over-generalize. What reached GA is Claude Enterprise user management across all four resource types — members, invites, groups, and custom roles. The header change, though, is scoped: the ce-user-management-2026-07-13 beta header is no longer required specifically on group and custom-role requests. Member and invite endpoints never needed that particular header in the first place — they only ever required anthropic-version. So the accurate sentence is “user management is GA, and the one header it ever required is now optional,” not “the Admin API no longer needs any beta header.”

Verify against the right page
If you re-verify the Admin API’s status yourself, read the dedicated user-management docs page, which carries the GA language verbatim: “Group and custom-role requests don’t require the anthropic-beta: ce-user-management-2026-07-13 beta header. Requests that still send it are accepted and behave identically.” Summaries of the broader Admin API index can lag behind the per-feature pages — the dedicated page and the release notes agree, and they are the sources of record here.

05The Missing DeadlineNo sunset date is published — and that absence is the operative fact.

We checked this two ways, because it is the question every integration owner actually has. First, Anthropic’s general beta headers reference carries only generic policy language — beta features “may” have breaking changes with notice, be deprecated or removed, or carry different limits — with no dates and no per-feature sunset table. Second, each individual GA release note explicitly says the old header or version “remains available,” “continues to work unchanged,” or is “accepted unchanged,” again with no stated end date. As of the date checked, no sunset or deprecation date is published for computer_20251124, files-api-2025-04-14, skills-2025-10-02, or ce-user-management-2026-07-13.

Read that absence carefully in both directions. It does not mean these identifiers are supported forever — Anthropic’s own policy language reserves the right to deprecate with notice. It means the migration is yours to schedule: there is no externally imposed deadline forcing this into the current sprint. A useful mental model is the naming convention itself. Beta headers follow feature-name-YYYY-MM-DD, where the date marks when that beta surface was released — each one is a dated snapshot of an API surface, not a version number. GA froze those snapshots in place and made the current surface the default; it did not detonate them.

Our interpretation: this release pattern — additive identifiers, accepted legacy headers, no published sunsets — is Anthropic optimizing for enterprise trust at exactly the moment these capabilities move from experiments to production dependencies. Whether that posture holds across future releases is not something a single release-notes entry can establish, so the rational response is neither panic nor complacency: put the migration in next quarter’s backlog with a note to re-check the release notes for deprecation announcements before deprioritizing it again.

06Same-Day AdjacentThree smaller items from the same release-notes entry.

The August 19 entry carried three adjacent changes worth one clause each. Managed Agents sessions gain allowed_domains and blocked_domains configuration restricting which sites a session’s web_search and web_fetch tools can reach, set inside the agent_toolset_20260401 configs array — with web_fetch also gaining max_content_tokens and web_search gaining user_location. Managed Agents sessions running in a self-hosted sandbox can now attach memory stores, with the Python, TypeScript, and Go SDK workers downloading each attached store into the sandbox at its mount_path and syncing changes back. And the Claude Console’s session viewer was redesigned with a timeline minimap, per-model-request transcript grouping, and an Inspector panel.

For the Managed Agents backdrop — effort controls, webhooks, and how Skills plug into sessions — our Managed Agents update roundup covers the surface these domain controls now bolt onto.

07Upgrade ChecklistWhat to do this quarter, by workload.

With no deadline forcing the issue, the right move differs by what you run. Four common situations, four different answers:

Computer use in production
Upgrade deliberately, not casually

The GA toolset changes the request/response shape, requires tool_results for skipped batch actions, and turns zoom on by default. Test in staging with the zoom default reviewed, or stay on computer_20251124 — it remains supported.

Plan a real migration
Files API list code
One small real PR

Dropping the header switches list pagination to page/next_page and unlocks the ids[] filter plus expiration. This is the only spot where deleting the header alone forces a code change — schedule it with the header deletion, not before.

Pair header + pagination
Skills / Admin API
Delete headers at leisure

Both GAs are pure header removals with identical behavior either way. Clean the headers out in your next routine dependency pass; nothing changes underneath, and requests that still send them are accepted unchanged.

No urgency
Bedrock / Google Cloud / Foundry
Nothing to delete yet

The no-beta-header behavior is Claude-API-only as of the date checked. Cloud-platform deployments still require beta headers or only offer earlier tool versions — track your platform’s own docs before editing anything.

Wait and watch

Looking forward, the same-day GA of computer use and browser use is the signal worth projecting from: Anthropic now treats agent-environment control — desktop and browser — as a stable, supportable product surface rather than a research preview. Teams that deferred computer-use projects on “it’s still beta” grounds have lost that reason, and the sensible next step is a scoped pilot rather than a platform-wide commitment. If you are deciding which of these surfaces belongs in your automation roadmap — and which workloads justify an agent that drives a screen at all — our AI transformation engagements start with exactly that evaluation.

08ConclusionA GA day that respects your backlog.

The maintenance-day read, August 2026

Five GAs, zero deadlines — schedule the migration on your calendar, not Anthropic’s.

August 19, 2026 moved five Claude Developer Platform capabilities out of beta in one day, and the operative facts are the calm ones: every superseded beta header is still accepted, earlier tool versions remain available, and, as of the date checked, no sunset date is published for any of them. For integration owners, that converts a five-item changelog into a prioritization choice rather than an obligation.

The two items that earn attention beyond header cleanup are specific. Computer use’s GA toolset changes behavior — batched turns with a new tool_result contract, and zoom on by default — so upgrading is a deliberate act, not a find-and-replace. And the Files API’s pagination change is the one place list-handling code genuinely needs a small update when the header comes out. Everything else — Skills, Admin API user management — is a header you can delete whenever it suits you.

The broader signal: platforms win enterprise workloads with boring reliability, and this is what boring reliability looks like in a release note. Additive identifiers, accepted legacy headers, and an honest absence of deadlines. Put the migration in the backlog, re-check the release notes each quarter for deprecation announcements, and spend the urgency you just saved on the capabilities themselves.

Put GA-grade agent capabilities to work

Agent capabilities just went GA — the window to pilot them calmly is now.

Our team helps businesses design, pilot, and operate agentic AI — computer-use and browser-use agents, Skills-based workflows, and the governance around them — delivered in days, not quarters.

Free consultationExpert guidanceTailored solutions
What we work on

Agentic platform engagements

  • Computer-use and browser-use pilot builds
  • Beta-to-GA migration audits for Claude integrations
  • Agent Skills design and rollout
  • File-pipeline and retention architecture on the Files API
  • Enterprise governance — roles, groups, and access reviews
FAQ · Claude Platform GA day

The questions integration owners are asking this week.

Five capabilities reached GA in a single release-notes entry: computer use (as the computer_toolset_20260801 toolset, no beta header required on the Claude API), browser use (browser_toolset_20260801, a genuinely new toolset), the Files API (dropping the files-api-2025-04-14 beta header and adding file expiration plus page-based pagination), Agent Skills together with the Skills API at /v1/skills (dropping the skills-2025-10-02 header), and Admin API user management for Claude Enterprise, covering members, invites, groups, and custom roles. The same entry also added allowed_domains and blocked_domains controls for Managed Agents web tools and let self-hosted-sandbox sessions attach memory stores.
Related dispatches

Continue exploring platform releases.