sg-python.sh 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #!/usr/bin/env bash
  2. # Find a working Python 3 interpreter and exec the hook with it.
  3. #
  4. # On Windows + Git Bash, `python3` typically resolves to the Microsoft Store
  5. # stub at C:\Users\<user>\AppData\Local\Microsoft\WindowsApps\python3, which
  6. # exits 49 silently in non-TTY subprocess context (a known Microsoft Store
  7. # stub behavior). This shim
  8. # probes each candidate with `-c ""` and skips any that fails, so the Store
  9. # stub falls through to the real python.org install (`python` in Git Bash) or
  10. # the `py -3` launcher.
  11. #
  12. # Order:
  13. # 1. python3 — canonical on macOS/Linux; the Store stub fails the probe.
  14. # 2. python — python.org installs on Windows; some Linux distros (RHEL 7
  15. # EOL'd 2024-06) point this at Python 2, but `-c ""` succeeds
  16. # on Python 2 too — guard with a version check.
  17. # 3. py -3 — Windows Python launcher.
  18. #
  19. # Args after the shim path are passed straight through to the chosen
  20. # interpreter, so the hooks.json invocation is:
  21. # bash "${CLAUDE_PLUGIN_ROOT}/hooks/sg-python.sh" \
  22. # "${CLAUDE_PLUGIN_ROOT}/hooks/security_reminder_hook.py"
  23. set -e
  24. # Git Bash / MSYS on Windows hands script paths to this shim in POSIX form
  25. # (`/c/Users/...`). When we exec a Windows `python.exe` (which we do on
  26. # Windows since `python3` is the Microsoft Store stub), python interprets the
  27. # leading `/` as the root of the current drive — e.g. `/c/Users/...` becomes
  28. # `C:\c\Users\...` or `D:\c\Users\...` (whichever drive the shell is on),
  29. # fails with ENOENT, and every Edit/Write/MultiEdit tool use blocks until the
  30. # session restarts. See anthropics/claude-plugins-official#2043.
  31. #
  32. # Fix: convert absolute path args to native Windows form via `cygpath -w`
  33. # before exec. `cygpath` is a Git Bash builtin; it's absent on macOS/Linux,
  34. # where the `command -v` guard makes this a no-op. `cygpath -w` is idempotent
  35. # for already-Windows paths so the rare mixed-form case is safe.
  36. if command -v cygpath >/dev/null 2>&1; then
  37. converted=()
  38. for a in "$@"; do
  39. case "$a" in
  40. /*) converted+=("$(cygpath -w "$a")") ;;
  41. *) converted+=("$a") ;;
  42. esac
  43. done
  44. set -- "${converted[@]}"
  45. fi
  46. probe() {
  47. # $1..N: the interpreter command (may be multi-word like `py -3`)
  48. # Writes "<major>.<minor>" to stdout and exits 0 iff at least Python 3.
  49. "$@" -c 'import sys; print(f"{sys.version_info[0]}.{sys.version_info[1]}")' 2>/dev/null
  50. }
  51. # True iff arg is a "M.m" version string >= 3.10. claude_agent_sdk requires
  52. # Python >= 3.10; below that, pip install fails ("No matching distribution")
  53. # and the LLM-powered review (Stop / commit / push) silently no-ops while
  54. # pattern checks (PostToolUse regex) keep working. macOS ships 3.9.6 as the
  55. # default `python3` on current versions, so this guard matters in practice.
  56. # See anthropics/claude-plugins-official#2071.
  57. is_sdk_compatible() {
  58. case "$1" in
  59. 3.1[0-9]|3.[2-9][0-9]|[4-9].*|[1-9][0-9].*) return 0 ;;
  60. *) return 1 ;;
  61. esac
  62. }
  63. # Pass 1 — try minor-versioned binaries in descending order. These are only
  64. # present if the user explicitly installed them (Homebrew / python.org / pyenv),
  65. # so picking one here always upgrades over the system `python3`. Highest
  66. # available wins; the user doesn't have to PATH-prefer it.
  67. for cmd in "python3.13" "python3.12" "python3.11" "python3.10"; do
  68. v=$(probe "$cmd") || continue
  69. if is_sdk_compatible "$v"; then
  70. exec "$cmd" "$@"
  71. fi
  72. done
  73. # Pass 2 — bare interpreters, but only if SDK-compatible. Covers Linux distros
  74. # that ship 3.10+ as the default `python3`, and Windows where `python` /
  75. # `py -3` resolves to the user's python.org install.
  76. for cmd in "python3" "python" "py -3"; do
  77. # shellcheck disable=SC2086
  78. v=$(probe $cmd) || continue
  79. if is_sdk_compatible "$v"; then
  80. # shellcheck disable=SC2086
  81. exec $cmd "$@"
  82. fi
  83. done
  84. # Pass 3 — fallback to any Python 3, even <3.10. Pattern-based checks
  85. # (PostToolUse regex on Edit/Write) only need 3.6+ and are useful on their
  86. # own; the SDK-dependent paths will detect the version mismatch and degrade
  87. # inside the Python code. Without this fallback, the entire plugin would
  88. # stop working on default macOS, which is a regression vs today.
  89. for cmd in "python3" "python" "py -3"; do
  90. # shellcheck disable=SC2086
  91. v=$(probe $cmd) || continue
  92. # Accept anything that successfully reported a "M.m" string.
  93. case "$v" in
  94. [0-9]*.[0-9]*)
  95. # shellcheck disable=SC2086
  96. exec $cmd "$@"
  97. ;;
  98. esac
  99. done
  100. echo "security-guidance: no working Python 3 interpreter found." >&2
  101. echo " tried: python3.13, python3.12, python3.11, python3.10, python3, python, py -3" >&2
  102. echo " on Windows, install Python from https://python.org (NOT the Microsoft Store)" >&2
  103. echo " on macOS, install Python 3.10+ via Homebrew (\`brew install python\`)" >&2
  104. exit 1