CLAUDE LABJP
RATELIMIT — Claude API rate limits were raised. Sonnet and Haiku limits now match Opus at every usage tier, leaving more headroom for parallel workloadsTIERS — Usage tiers were consolidated into three: Start, Build, and Scale — a clearer picture of where your usage sitsRETIRE — The Developer Platform retired Claude Sonnet 4 and Opus 4 (…-20250514). Code referencing those old model IDs needs migratingFABLE5 — Claude Fable 5 is now included in Max and Team Premium plans, available at 50% of the limitFASTEND — Fast mode for Claude Opus 4.7 is removed on July 24 — two days left. Move any speed: 'fast' calls to fast mode on Opus 4.8CCODE — Claude Code keeps shipping stability updates: background sessions for /fork, smarter /resume and /background, and stronger safeguards for WebSearch, subagents, and BashRATELIMIT — Claude API rate limits were raised. Sonnet and Haiku limits now match Opus at every usage tier, leaving more headroom for parallel workloadsTIERS — Usage tiers were consolidated into three: Start, Build, and Scale — a clearer picture of where your usage sitsRETIRE — The Developer Platform retired Claude Sonnet 4 and Opus 4 (…-20250514). Code referencing those old model IDs needs migratingFABLE5 — Claude Fable 5 is now included in Max and Team Premium plans, available at 50% of the limitFASTEND — Fast mode for Claude Opus 4.7 is removed on July 24 — two days left. Move any speed: 'fast' calls to fast mode on Opus 4.8CCODE — Claude Code keeps shipping stability updates: background sessions for /fork, smarter /resume and /background, and stronger safeguards for WebSearch, subagents, and Bash
ARTICLES

All Articles

All (786) Claude AI (133) Claude Code (320) Cowork (54) API & SDK (279)
API & SDK/2026-06-22Advanced

Claude API Streaming Breaks the "Everything Arrives" Assumption — Field Notes on Recovering from Partial Failure

Once concurrency climbs, Claude API streams disconnect mid-response, replay events, and emit half-finished tool arguments. Treating partial failure as the norm rather than an anomaly, here is how I rebuilt the implementation and monitoring to recover quietly.

API & SDK/2026-06-22Advanced

Putting a Ceiling on the pause_turn Loop: Running Long Server Tools Safely Unattended

A production design for continuing pause_turn safely in unattended runs, where long server tools like web_search and code execution are involved. Covers branching all four stop_reason values in one loop, capping continuations and wall-clock time, and accumulating usage across paused segments.

API & SDK/2026-06-21Advanced

Surviving the 90-Second Code Execution Cell Limit with Checkpointed Chunking

Claude's code execution tool now enforces a 90-second per-cell limit. Here is how to keep a long batch from getting cut off there: persist progress to the container filesystem and resume across cells, with working code for timing, idempotent checkpoints, and knowing when to offload.

Cowork/2026-06-21Advanced

Why Cowork's bash Says 'No Such File' When Finder Shows It Right There

Connect a cloud-synced folder to Cowork and bash sees empty placeholders while cat fails. Here is how on-demand materialization actually works, and the design patterns that keep your automations from silently dropping data.

API & SDK/2026-06-21Advanced

Connecting Managed Agents to Services You Don't Want to Expose: MCP Tunnel Design

How to connect Claude Managed Agents to an internal MCP server that is never exposed to the public internet. We cover the MCP tunnel, self-hosted sandboxes, authorization boundaries, and graceful degradation when things break.

API & SDK/2026-06-21Advanced

Don't Carry Search Results Twice: Trimming Consumed Blocks with response_inclusion

When an agent runs dynamic filtering, output tokens balloon because the raw search-result blocks a code execution call already consumed get echoed back into the response. Here is when response_inclusion: excluded is safe to use, when you must keep full, with implementation and a decision table.

Claude Code/2026-06-21Advanced

When Claude Code Still Writes Stale Code With Context7 Installed — Verifying the Injection Actually Worked

You installed Context7 MCP, yet Claude returns code against a deprecated API. Most of the time the documentation injection silently no-ops. Here are field notes on a hook that detects misses, pinning doc versions, and a harness that checks generated code every time.

API & SDK/2026-06-21Advanced

Reserving Priority Capacity for User Traffic with service_tier

If you pay for Priority Tier but your user-facing responses still slow down at peak, the culprit is often your own background jobs eating the priority pool. Here is how to read service_tier, prove the contention, and isolate background work.

API & SDK/2026-06-20Advanced

Routing the effort Parameter Per Stage to Balance Claude's Output Cost and Latency

Claude's effort parameter governs all output tokens — thinking, prose, and tool calls. This guide replaces a blanket high setting with per-stage tiers and a dynamic router, grounded in measurements from a solo developer's automation pipeline.

API & SDK/2026-06-20Advanced

Running Subagents in Parallel Without One Failure Sinking the Whole Run

A fan-out / fan-in design for running several subagents in parallel, covering token budgeting, a result contract, and partial-failure handling. Includes an implementation where one branch can fail without stopping the rest, plus measured numbers.

API & SDK/2026-06-20Advanced

Putting Cloudflare AI Gateway in Front of Claude Made the Numbers I Needed Disappear — Field Notes on Instrumentation

After putting Cloudflare AI Gateway in front of Claude API, here is where I actually got stung — cost attribution, semantic-cache false hits, fallback quietly lowering quality, and budgets that don't really stop anything — with the code I used to fix each.

Claude Code/2026-06-20Intermediate

Keep MCP Connector Authorization in One Place — A Solo Dev Design That Survives Growing Integrations

When Claude chat, Claude Code, and Cowork each configure the same MCP connector separately, their authorization drifts apart and breaks silently. Here is how to borrow the managed-connector idea of 'provision once, reuse everywhere' as an indie developer.