AI agents · OpenClaw · self-hosting · automation

Quick Answer

Claude Code Weekly Limit Promo Ends August 19, 2026

Published:

The Short Answer

Anthropic’s 50% weekly usage boost for Claude Code ends August 19, 2026 at 11:59 PM PT. It has been running since May 13, 2026 — over three months, long enough that most heavy users have quietly normalised it as their baseline.

After it ends, weekly limits return to standard levels. No plan change, no billing change. You simply get less.

What Exactly Changes

During promoAfter Aug 19
Weekly usage limit+50%Standard
5-hour session limitUnchangedUnchanged
Plan / billingUnchangedUnchanged

Who was included: Pro, Max, and Team plans, plus legacy seat-based Enterprise users.

Who was not: Free plans and consumption-based Enterprise seats. If you’re on a consumption-based Enterprise seat, nothing changes for you on August 19 — you never had the boost.

Where it applied: Claude Code only — CLI, IDE extensions, desktop, and web. Usage limits for Claude (web, desktop, mobile) and Claude Cowork were never part of this promotion and are unaffected.

The Maths Nobody Does

A 50% boost removed is not a 50% cut. If your boosted weekly limit was 150 units, standard is 100 — you lose 33% of the ceiling you have been working against.

Practically: if you have been finishing your week comfortably at around 90% of the boosted limit, you will hit the standard limit around Thursday.

Check Before It Goes

Run this in the Claude Code CLI:

/usage

It reports your current weekly and 5-hour limits and consumption against both. Do it now, while the boost is live, and note the weekly number. Do it again on August 20. The difference is your real exposure — not a guess from a forum post.

The distinction that matters most: are you a weekly-limit user or a 5-hour-limit user? If you routinely hit the 5-hour session cap and rarely approach the weekly one, August 19 is a non-event for you. If you have been running long unattended agent sessions across the week, it is not.

How To Absorb It

1. Route models by task difficulty. Not everything needs the top model. Reserve the expensive tier for architecture, debugging, and refactors that span files; push boilerplate, test scaffolding, and mechanical edits down a tier. This is the single biggest lever and it costs you almost no quality. See how to choose an AI model in 2026.

2. Stop re-reading the codebase. A large share of consumed context in agent sessions is the agent re-discovering files it already saw. Keep a project context file, be explicit about which paths matter, and scope requests to directories.

3. Compact aggressively. Long conversations resend their full history on every turn. Summarise into a state note and start fresh sessions at natural boundaries rather than letting one thread run for hours.

4. Batch the trivial. Ten separate one-line requests cost far more than one request describing ten one-line changes, because each round trip re-sends context.

5. Consider API spillover. If you genuinely need more than the standard weekly limit, per-token API access has no weekly cap. Claude Sonnet 5 sits at $2/$10 per MTok — and that rate is now permanent, after Anthropic cancelled the September 1 increase. For overflow work rather than all work, this is often cheaper than upgrading a plan tier.

The Bigger Pattern

This is the third time in 2026 that Claude Code limits have moved: a squeeze in March, a doubling of 5-hour limits in May, and this weekly promotion running May through August. The community reaction to the last extension was blunt — the promotion is what makes the product usable at heavy volume, and users would prefer the boosted numbers simply became the standard.

Anthropic hasn’t said whether it will extend again or make it permanent. Plan for the promotion ending, because that is what the published terms say. If it gets extended, you have lost nothing by tightening your usage; the habits above reduce cost and latency regardless of what the ceiling is.

One useful signal: the promotion’s own support article is titled “May–August 2026 weekly limits promotion.” That naming suggests a defined window rather than a rolling extension.

What To Do This Week

  1. Run /usage today and record your boosted weekly limit.
  2. Finish anything limit-heavy before August 19 — large refactors, bulk migrations, big test-suite generation.
  3. Set up model routing so the drop lands on cheap tokens, not your critical work.
  4. Run /usage again on August 20 to see the real standard ceiling instead of estimating it.

Last verified: August 17, 2026, against Anthropic’s official support documentation.

Sources