claude-code icon indicating copy to clipboard operation
claude-code copied to clipboard

Auto-compact fails with Opus 4.5 extended thinking blocks

Open ManuelMRosa opened this issue 1 month ago • 6 comments

Bug Report: Auto-compact fails with Opus 4.5 extended thinking blocks

Description

When using Claude Code with the claude-opus-4-5-20251101 model, the automatic conversation compaction feature fails repeatedly with a 400 error. This causes the session to become unusable and all context is lost.

Environment

  • Claude Code version: Latest (npm global install)
  • Model: claude-opus-4-5-20251101
  • OS: Windows 10/11
  • Date: 2025-11-24

Error Message

400 {"type":"error","error":{"type":"invalid_request_error","message":"messages.11.content.11: `thinking` or `redacted_thinking` blocks in the latest assistant message cannot be modified. These blocks must remain as they were in the original response."},"request_id":"req_011CVTZiv4zz4a4AmyidNwVx"}

Steps to Reproduce

  1. Start a Claude Code session with Opus 4.5 model
  2. Have a long conversation that triggers auto-compaction
  3. When Claude Code attempts PreCompact:auto, the API returns error 400
  4. The error repeats on every subsequent message
  5. Session becomes unusable

Debug Log Evidence

From the debug log (~/.claude/debug/*.txt):

2025-11-24T23:15:23.678Z [DEBUG] Skipping PreCompact:auto hook execution - workspace trust not accepted
2025-11-24T23:15:24.181Z [ERROR] Error streaming, falling back to non-streaming mode: 400 {"type":"error"...
2025-11-24T23:15:24.604Z [ERROR] Error in non-streaming fallback: 400 {"type":"error"...

Total failed compact attempts in session: 77

Root Cause Analysis

The Opus 4.5 model uses "extended thinking" which generates <thinking> blocks in responses. When Claude Code attempts to compact/summarize the conversation:

  1. It modifies or reorganizes messages containing thinking blocks
  2. The API rejects this because thinking blocks "cannot be modified" and "must remain as they were in the original response"
  3. Both streaming and non-streaming fallback fail with the same error
  4. The compaction never succeeds, making the session unrecoverable

Impact

  • Severity: High
  • Data Loss: Complete loss of conversation context
  • User Experience: Session becomes completely unusable
  • Workaround: Switch to Sonnet model (no extended thinking)

Expected Behavior

Claude Code should either:

  1. Preserve thinking blocks exactly as-is during compaction
  2. Handle the error gracefully and continue the session
  3. Warn users before using Opus 4.5 about this limitation

Suggested Fix

When compacting conversations with Opus 4.5:

  • Extract and preserve thinking/redacted_thinking blocks unchanged
  • Only summarize the non-thinking content
  • Or skip compaction for messages containing thinking blocks

Additional Context

The user was working on AutoCAD LISP development when this occurred. The session had grown large enough to trigger auto-compaction, at which point it entered an error loop and became unusable.


Reported via Claude Code session analysis

ManuelMRosa avatar Nov 25 '25 00:11 ManuelMRosa

Found 3 possible duplicate issues:

  1. https://github.com/anthropics/claude-code/issues/10199
  2. https://github.com/anthropics/claude-code/issues/12130
  3. https://github.com/anthropics/claude-code/issues/12225

This issue will be automatically closed as a duplicate in 3 days.

  • If your issue is a duplicate, please close it and 👍 the existing issue instead
  • To prevent auto-closure, add a comment or 👎 this comment

🤖 Generated with Claude Code

github-actions[bot] avatar Nov 25 '25 00:11 github-actions[bot]

Breaks everything and neither manual nor automatic compaction works.

art-shen avatar Nov 25 '25 11:11 art-shen

Definitely experiencing this as well with opus 4.5 and auto or manual compacts

TheDropZone avatar Nov 25 '25 14:11 TheDropZone

same here on macos

kyleorin avatar Nov 26 '25 09:11 kyleorin

Workaround is to /model set to Sonnet, then /compact, then set model back to opus.

Noir-Lime avatar Nov 26 '25 10:11 Noir-Lime

Confirming on WSL2 (Linux 6.6.87.2-microsoft-standard-WSL2) with Claude Code 2.0.61 and Opus 4.5.

My variant shows a slightly different error - the API complained about missing thinking block at message start rather than modification:

messages.55.content.0.type: Expected 'thinking' or 'redacted_thinking', but found 'tool_use'

Request ID: req_011CVtsi7huAUbEEm1GsSccY

Triggered when context hit 4% remaining and /context command was run.

pentafive avatar Dec 08 '25 09:12 pentafive

We've addressed this issue in 2.0.67. However, sessions created prior to 2.0.67 may still encounter this issue when resuming. We are working on a fix for the resume case.

dicksontsai avatar Dec 12 '25 16:12 dicksontsai

@dicksontsai Reaching out to confirm that this issue remains post 2.0.67 (i'm on 2.0.71)

Nostromos avatar Dec 16 '25 22:12 Nostromos

I am also experiencing this issue, using the latest version 2.0.70

nerdeveloper avatar Dec 17 '25 00:12 nerdeveloper

@dicksontsai Reaching out to confirm that this issue remains post 2.0.67 (i'm on 2.0.71)

I am also experiencing this issue, using the latest version 2.0.70

Are they old sessions or new? I haven't been able to replicate it on 2.0.71 when it's a fresh session.

pentafive avatar Dec 17 '25 01:12 pentafive

If you are still encountering this issue, please file /feedback (the GitHub issue should have a feedback ID) when you encounter the session. This will help us out greatly, and it's how we've managed to reduce this particular "thinking blocks cannot be modified" error by 90+%. That said, I do still see a long tail of occurrences.

Don't worry about de-duping issues. We'll handle that for you.

@Nostromos @nerdeveloper

dicksontsai avatar Dec 17 '25 08:12 dicksontsai