CLAUDE LABJP
FORK — Claude Code 2.1.212 changes what /fork does: it copies your conversation into a new background session with its own row in claude agents, so you can keep working. The old in-session subagent is now /subtaskLIMITS — WebSearch calls are now capped at 200 per session by default, and subagent spawns get the same 200 ceiling, so a runaway search or delegation loop stops on its ownMCPBG — MCP tool calls running past two minutes now move to the background automatically, keeping the session usable. Tune the threshold with CLAUDE_CODE_MCP_AUTO_BACKGROUND_MSPLANFIX — Fixed plan mode auto-running file-modifying Bash commands such as touch and rm without a permission prompt or an SDK canUseTool callbackSONNET5 — Claude Sonnet 5 is running on introductory pricing of $2 per million input tokens and $10 per million output. After August 31 it moves to $3 and $15IPO — Bankers are reportedly lining up investor meetings for Anthropic ahead of a possible public listing as soon as OctoberFORK — Claude Code 2.1.212 changes what /fork does: it copies your conversation into a new background session with its own row in claude agents, so you can keep working. The old in-session subagent is now /subtaskLIMITS — WebSearch calls are now capped at 200 per session by default, and subagent spawns get the same 200 ceiling, so a runaway search or delegation loop stops on its ownMCPBG — MCP tool calls running past two minutes now move to the background automatically, keeping the session usable. Tune the threshold with CLAUDE_CODE_MCP_AUTO_BACKGROUND_MSPLANFIX — Fixed plan mode auto-running file-modifying Bash commands such as touch and rm without a permission prompt or an SDK canUseTool callbackSONNET5 — Claude Sonnet 5 is running on introductory pricing of $2 per million input tokens and $10 per million output. After August 31 it moves to $3 and $15IPO — Bankers are reportedly lining up investor meetings for Anthropic ahead of a possible public listing as soon as October
TAG

error

17 articles
Back to all tags
Related:
troubleshooting17claude-code11fix9automation3git2edit-tool2authentication2claude2api2timeout2shell1push1
Claude Code/2026-06-10Intermediate

When git add -A Sweeps Up .bak Backups — The Quiet Trap of In-Place Fix Scripts

How .bak backups left by sed -i and homegrown --fix scripts get silently swept into production by git add -A, why it is so easy to miss, and how scoped adds and .gitignore close the gap for good.

Claude Code/2026-06-09Intermediate

When Yesterday's Article Bleeds Into Today's — The Stale Fixed-Name Temp File Trap

In a Claude Code automation pipeline, a fixed-name temp file kept stale content from the previous run and leaked old body text into a completely different article. Here is why the write fails silently, and how unique names plus a post-write grep check prevent it.

Claude Code/2026-06-03Intermediate

When git push Says Success but Nothing Lands — the Silent commit Failure in Claude Code

git push prints Everything up-to-date and exits zero, yet your changes never reach the remote. Here is why commit silently fails on a fresh sandbox clone, and how to verify a real push with SHA comparison.

Claude Code/2026-05-24Intermediate

When Claude Code's Sequential Edits Cascade into Failure — Fixing 'old_string not found' and 'not unique' on the Same File

Run several Edits against the same file in one turn and the second or third one suddenly fails with 'not found' or 'not unique'. The cause is order-dependence inside a single context snapshot, and a Read + scoped patches usually rescue it.

Claude Code/2026-05-05Intermediate

5 Common Claude Code Errors and How to Fix Them

A practical guide to the five most common Claude Code errors—Permission denied, rate limits, MCP connection failures, context overflow, and bash failures—with real causes and fixes for each.

API & SDK/2026-05-04Beginner

7 Common Errors When Getting Started with Claude API in Python (With Fixes)

A practical troubleshooting guide covering the 7 most common errors Python developers hit when starting with the Claude API SDK — from AuthenticationError and RateLimitError to response parsing mistakes and streaming pitfalls.

Claude Code/2026-05-02Intermediate

Stop the 'old_string is not unique' Error in Claude Code's Edit Tool — A Practical Rewrite Strategy

When Claude Code's Edit tool throws 'old_string is not unique in the file', the root cause is usually that the prompt didn't guarantee a uniquely identifiable target. Here's how to design rewrites that actually stick.

Claude Code/2026-04-24Advanced

The Claude Code Error Handbook — Auth, Billing, Stalls, Tools & MCP, Diagnosed by Symptom

A field-tested reference for 40+ Claude Code error patterns, organized by visible symptom: authentication, billing, response stalls, tool failures, MCP connectivity, and hook issues. Each entry tells you where to look and what to change.

Claude Code/2026-04-24Beginner

Claude Keeps Saying 'Response Incomplete' — A Layered Troubleshooting Guide

Diagnose why Claude or Claude Code freezes with a 'Response incomplete' or 'Try stopping' message. Walk through the four layers where generation can stall and recover the session without losing context.

Claude AI/2026-04-19Beginner

Card Declined on Claude? Here's How to Fix It by Cause

Getting a payment declined error when renewing Claude Pro? This guide breaks down the most common causes — issuer blocks, 3-D Secure failures, debit and prepaid quirks, and billing limits — and walks you through fixing each one.

API & SDK/2026-04-10Beginner

How to Fix Claude API 401 Invalid API Key Authentication Error

Complete guide to fixing Claude API 401 Invalid API Key errors. Covers environment variable issues, expired keys, OAuth token corruption, proxy interference, and more with step-by-step solutions.

Claude AI/2026-04-09Intermediate

Claude Giving Wrong or Unexpected Output? Here's How to Fix It

Claude's response doesn't match what you expected? This guide covers the most common causes of unexpected or wrong output—hallucinations, format issues, off-topic replies—and shows you exactly how to fix them.