check-cache-bugs
Audit Claude Code setup for cache bugs (CC#40524): sentinel, --resume/--continue, attribution header + ArkNill B3/B4/B5
What this skill does
# Check Cache Bugs (CC#40524) Audit your Claude Code setup for cache and cost bugs discovered in March-April 2026. **Time**: ~30 seconds | **Scope**: version, config files, CLAUDE.md, skills, hooks, shell profiles, all claude binaries > **Note on cache contamination**: This skill loads content containing `cch=` strings into the current session's message array. For cleanest results, run this command at the very start of a fresh session, or via `claude -p "$(cat .claude/commands/check-cache-bugs.md)"` as a one-shot print-mode invocation. **Reference**: `anthropics/claude-code#40524` | **Discovered by**: `@jmarianski` + `@whiletrue0x` | **Extended by**: `@ArkNill` (ArkNill/claude-code-cache-analysis, April 2026) --- ## Background ### Fix Status (current as of v2.1.92) | Bug | Versions affected | Status | |-----|------------------|--------| | Bug 1: cch sentinel (standalone binary) | v2.1.36-v2.1.90 | **FIXED in v2.1.91** | | Bug 2: deferred_tools_delta on --resume | v2.1.69-v2.1.89 | **FIXED in v2.1.90** | | Bug 3: attribution header per-session hash | v2.1.69+ | **Active** (env var workaround) | | B4: Microcompact / silent context stripping | all versions through v2.1.92 | **Active** (GrowthBook controlled) | | B5: Tool result budget cap 200K | all versions through v2.1.92 | **Active** (MCP tools exempted) | ### Original three bugs (CC#40524) - **Bug 1** (FIXED v2.1.91): Bun's native HTTP layer did a same-length byte replacement of the `cch=00000` attestation placeholder after `JSON.stringify` but before TLS. Triggered only if `cch=00000` appeared literally in `messages[]` content. Confirmed closed; npm and standalone binary are now equivalent on v2.1.91+. - **Bug 2** (FIXED v2.1.90): The session JSONL writer stripped `deferred_tools_delta` attachment records before writing to disk. On `--resume`, those records were absent; the deferred tools layer had no prior history and re-announced all tools from scratch, shifting every message position and breaking the messages-level cache prefix entirely. Each resume rebuilt 87-118K tokens as `cache_creation`. Anthropic tracked internally as inc-4747. - **Bug 3** (ACTIVE, v2.1.69+): Claude Code injects a billing header as the first block of the system prompt. The header contains a 3-character SHA-256 hash derived from characters [4, 7, 20] of the first user message + CC version, unique per session, per subagent, per side-query. Since the cache is prefix-based, this causes a cold miss on ~12K system prompt tokens on every invocation. A session with 5 subagents = 6 cold misses. Empirical: 48% -> 99.98% cache hit with env var workaround. ### Additional bugs (ArkNill, April 2026) - **B4: Microcompact** (all versions): Three mechanisms silently replace tool results with `[Old tool result content cleared]` before sending to the API. Controlled by server-side GrowthBook flags, bypasses `DISABLE_AUTO_COMPACT`. The `/export` command shows original context, NOT what the model received. 327 clearing events measured in one session. - **B5: Tool result budget cap** (all versions): `applyToolResultBudget()` truncates tool results when aggregate chars exceed 200K. Built-in tools (Read, Bash, Grep, Glob, Edit) are affected. MCP tools can override via `_meta["anthropic/maxResultSizeChars"]` (v2.1.91+). Cost impact summary: 2-5x per session start/subagent for Bug 3 in isolation; 10-20x per turn for Bug 2 with 10+ skills and 3-4 resumes (both estimates are correct in their respective context). --- ## Instructions You are an auditor. Run all phases in order, collect every result, and produce the final report. Do not skip phases or stop early. --- ### Phase 1: Claude Code version and install method ```bash # Version check claude --version # All installed claude binaries which -a claude 2>/dev/null # Check if active binary is standalone or npm file $(which claude) 2>/dev/null ls -la $(which claude) 2>/dev/null ``` - Version < 2.1.90 -> flag **BUG 2 RISK** (resume/DTD; fixed in v2.1.90) - Version < 2.1.91 AND standalone binary -> flag **BUG 1 MECHANISM** (sentinel; fixed in v2.1.91) - Version >= 2.1.69 -> flag **BUG 3 RISK** (attribution header; no fix yet, check Phase 4) - Binary is Mach-O / ELF executable -> standalone (relevant for Bug 1 on v2.1.36-v2.1.90) - Binary is a symlink to `node_modules` or contains `cli.js` -> npm/npx --- ### Phase 2: Sentinel scan (Bug 1) Search for the literal string `cch=` in all static config files. Exclude `.jsonl` files (ephemeral conversation history) and this command file itself. ```bash # Global config files grep -r "cch=" \ ~/.claude/CLAUDE.md \ ~/.claude/MEMORY.md \ ~/.claude/TONE.md \ ~/.claude/FLAGS.md \ ~/.claude/RULES.md \ ~/.claude/RTK.md \ ~/.claude/ANTI_AI.md \ 2>/dev/null # Global skills, commands, agents, hooks (excluding this command file) grep -rl "cch=" ~/.claude/skills/ 2>/dev/null grep -rl "cch=" ~/.claude/commands/ --exclude="check-cache-bugs.md" 2>/dev/null grep -rl "cch=" ~/.claude/agents/ 2>/dev/null grep -rl "cch=" ~/.claude/hooks/ 2>/dev/null # Project-level config grep -r "cch=" CLAUDE.md .claude/CLAUDE.md .claude/MEMORY.md 2>/dev/null grep -rl "cch=" .claude/skills/ 2>/dev/null grep -rl "cch=" .claude/commands/ --exclude="check-cache-bugs.md" 2>/dev/null grep -rl "cch=" .claude/agents/ 2>/dev/null grep -rl "cch=" .claude/hooks/ 2>/dev/null # Broader scan: all CLAUDE.md files across projects find ~ -name "CLAUDE.md" \ -not -path "*/node_modules/*" \ -not -path "*/.git/*" \ 2>/dev/null | xargs grep -l "cch=" 2>/dev/null ``` Flag as **BUG 1 RISK** if any match found outside `.jsonl` files AND version < v2.1.91. On v2.1.91+: sentinel mechanism is fixed, no risk regardless of config content. --- ### Phase 3: Resume/continue usage (Bug 2) ```bash # settings.json grep -i -- "--resume\|--continue" ~/.claude/settings.json 2>/dev/null grep -i -- "--resume\|--continue" .claude/settings.json 2>/dev/null # Hooks grep -rn -- "--resume\|--continue" ~/.claude/hooks/ 2>/dev/null grep -rn -- "--resume\|--continue" .claude/hooks/ 2>/dev/null # Commands and skills grep -rn -- "--resume\|--continue" ~/.claude/commands/ 2>/dev/null grep -rn -- "--resume\|--continue" .claude/commands/ 2>/dev/null # Shell profiles (aliases, functions) grep -n -- "--resume\|--continue" ~/.zshrc ~/.bashrc ~/.bash_profile ~/.zprofile 2>/dev/null # Project scripts find . -name "*.sh" -o -name "Makefile" 2>/dev/null | \ xargs grep -l -- "--resume\|--continue" 2>/dev/null ``` - Version >= v2.1.90: Bug 2 is **FIXED**, flag hits as informational only (no active cost risk) - Version < v2.1.90 AND any hit in hooks/settings -> flag **BUG 2 AUTOMATED** (constant exposure) - Version < v2.1.90 AND any hit in commands/skills/scripts -> flag **BUG 2 MANUAL** (exposure when invoked) --- ### Phase 4: Attribution header check (Bug 3) Check whether the billing header env var is already disabled. ```bash # Global settings grep -i "CLAUDE_CODE_ATTRIBUTION_HEADER\|ENABLE_TOOL_SEARCH" \ ~/.claude/settings.json 2>/dev/null # Project settings grep -i "CLAUDE_CODE_ATTRIBUTION_HEADER\|ENABLE_TOOL_SEARCH" \ .claude/settings.json 2>/dev/null # Shell profiles grep -i "CLAUDE_CODE_ATTRIBUTION_HEADER" \ ~/.zshrc ~/.bashrc ~/.bash_profile ~/.zprofile 2>/dev/null ``` - `CLAUDE_CODE_ATTRIBUTION_HEADER` not set to `false` AND version >= 2.1.69 -> flag **BUG 3 ACTIVE** - Already set to `false` -> **BUG 3 MITIGATED** --- ### Phase 5: Multiple binaries check ```bash for b in $(which -a claude 2>/dev/null | sort -u); do echo "=== $b ===" $b --version 2>/dev/null || echo "unavailable" file $b 2>/dev/null ls -la $b 2>/dev/null done ``` Flag any standalone binary < v2.1.91 as at risk for Bug 1. Flag any binary < v2.1.90 as at risk for Bug 2. Flag any binary >= v2.1.69 as at risk for Bug 3 (unless attribution header env var already set). Note stale binaries that could be mistakenly invoked. --- ## Output Format ``` ## Claude Code
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.