MCPcopy Index your code
hub / github.com/a-connoisseur/patch-claude-code

github.com/a-connoisseur/patch-claude-code @v2.1.201-linux-arm64

Chat with this repo
repository ↗ · DeepWiki ↗ · release v2.1.201-linux-arm64 ↗ · + Follow
60 symbols 116 edges 3 files 0 documented · 0% updated 2d agov2.1.202-win32-arm64 · 2026-07-06★ 332 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Patch Claude Code

What this does

This repo publishes patched native Claude binaries that make output more transparent without verbose mode. Here is an exhaustive list of things it changes:

  • Shows detailed tool calls instead of collapsed summaries.
  • Hard disables spinner tips.
  • Streams thinking live in the UI. This is helpful for instances where Claude thinks for over 10 minutes and you want to know if it's actually still doing something.
  • Shows subagent Prompt: blocks in the non-verbose UI.
  • Renames the startup header to Connoisseur's Code v... (this makes it easy to identify when Claude has auto updated and lost the patch).

Thinking note:

  • If you want thinking to stream live in the UI without verbose mode, add this to your Claude settings:
"showThinkingSummaries": true
  • Settings can come from ~/.claude/settings.json, .claude/settings.json, or .claude/settings.local.json.

Quick Start

Prerequisite

If you installed Claude Code via npm, remove it and install the native build first:

npm uninstall -g @anthropic-ai/claude-code
curl -fsSL https://claude.ai/install.sh | bash
claude --version

Automatic Install

This installer detects your OS and CPU architecture and downloads the matching patched release for that version and platform.

curl -fsSL https://raw.githubusercontent.com/a-connoisseur/patch-claude-code/main/install-patched-claude.sh | bash

On Windows, use PowerShell:

irm https://raw.githubusercontent.com/a-connoisseur/patch-claude-code/main/install-patched-claude.ps1 | iex

If you'd rather avoid blindly running scripts from the internet, you can do it the manual way below. That said, the binaries are built on Github Actions and the patcher is also free for you to see and modify, so there's no reason to trust this repo or the release builds other than convenience.

Manual Install (From Releases, native only)

  1. Pick the release tag for your platform:
  2. macOS arm64: macos-arm64
  3. Linux x64: linux-x64
  4. Linux arm64: linux-arm64
  5. Windows x64: win32-x64
  6. Windows arm64: win32-arm64

  7. In that release, download the regular patched binary for your platform.

  8. Follow the install instructions for your platform below.

Install (Linux)

chmod +x ./claude.native.patched
sudo mv ./claude.native.patched "$(which claude)"
claude --version

Install (macOS)

chmod +x ./claude.native.macos.patched
sudo mv ./claude.native.macos.patched "$(which claude)"
xattr -dr com.apple.quarantine "$(which claude)"
claude --version

Install (Windows)

$target = (Get-Command claude).Source
Copy-Item .\claude.native.windows.patched.exe $target -Force
claude --version

Core symbols most depended-on inside this repo

Shape

Function 60

Languages

TypeScript100%

Modules by API surface

scripts/vendored-elf-native.ts28 symbols
patch-claude-display.ts23 symbols
scripts/patch-native-with-tweakcc.ts9 symbols

For agents

$ claude mcp add patch-claude-code \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page