From 5a4cc2f41a484223e5e19bcd80e0b7caa0bf1c63 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Fri, 31 Oct 2025 08:52:17 -0700 Subject: [PATCH] feat: add support for Claude CLI at ~/.claude/local/claude (#302) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add ~/.claude/local/claude to the list of locations checked when finding the Claude CLI binary. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude --- src/claude_agent_sdk/_internal/transport/subprocess_cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/claude_agent_sdk/_internal/transport/subprocess_cli.py b/src/claude_agent_sdk/_internal/transport/subprocess_cli.py index 0eb2f0f..0fc02b5 100644 --- a/src/claude_agent_sdk/_internal/transport/subprocess_cli.py +++ b/src/claude_agent_sdk/_internal/transport/subprocess_cli.py @@ -77,6 +77,7 @@ class SubprocessCLITransport(Transport): Path.home() / ".local/bin/claude", Path.home() / "node_modules/.bin/claude", Path.home() / ".yarn/bin/claude", + Path.home() / ".claude/local/claude", ] for path in locations: