ensure_agent_sdk.py 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. #!/usr/bin/env python3
  2. """SessionStart bootstrap: ensure claude_agent_sdk is importable for the
  3. agentic commit reviewer.
  4. If claude_agent_sdk already imports in the current python3, this is a no-op.
  5. Otherwise it creates a venv at ~/.claude/security/agent-sdk-venv and installs
  6. the SDK there. security_reminder_hook.py prepends that venv's site-packages to
  7. sys.path before attempting the SDK import, so the venv is used as a
  8. fallback only when the system install is missing.
  9. The venv lives under ~/.claude/security/ (same dir the plugin already uses
  10. for per-session state) so it persists across plugin updates — rebuilding
  11. on every update is 30-60s of wasted work for a package that changes far
  12. less often than the plugin does.
  13. """
  14. from __future__ import annotations
  15. import importlib.util
  16. import json
  17. import os
  18. import subprocess
  19. import sys
  20. import time
  21. from pathlib import Path
  22. # Shared state-dir resolver: SECURITY_WARNINGS_STATE_DIR → CLAUDE_CONFIG_DIR/security
  23. # → ~/.claude/security. See _base.state_dir for resolution precedence. Re-aliased
  24. # here to match the existing local name (state_dir was already a local var in
  25. # main() and _maybe_emit_user_notice).
  26. from _base import state_dir as _resolve_state_dir
  27. # Outcome codes for the sdk_bootstrap metric. Values are stable for telemetry.
  28. NOOP_SYSTEM = 0 # claude_agent_sdk already importable in system python
  29. NOOP_VENV = 1 # venv already built and SDK imports from it
  30. BUILT = 2 # venv created + SDK pip-installed this run
  31. BUILD_FAILED = 3 # venv create or pip install raised/timed out
  32. # Outcome 4 was previously SKIP_WIN32; retired now that the consumer glob in
  33. # llm.py also matches Windows venv layout (Lib/site-packages). Don't reuse the
  34. # value — telemetry rows from older plugin builds still emit 4.
  35. SKIP_SENTINEL = 5 # another SessionStart is currently building
  36. HOOK_PY_INCOMPATIBLE = 6 # hook interpreter is <3.10 — SDK syntax can't load
  37. # here no matter how the venv was built. See #2071.
  38. def _sdk_on_syspath() -> bool:
  39. # find_spec is ~10ms; actually importing the SDK pulls in
  40. # transitive deps and costs ~800ms — too heavy for a
  41. # per-SessionStart no-op check that most sessions hit.
  42. try:
  43. return importlib.util.find_spec("claude_agent_sdk") is not None
  44. except Exception:
  45. return False
  46. def _plugin_version_int() -> int:
  47. # Same encoding as security_reminder_hook._read_plugin_version_int so
  48. # metrics rows from both hooks join on pv.
  49. try:
  50. p = Path(__file__).parent.parent / ".claude-plugin" / "plugin.json"
  51. v = json.loads(p.read_text())["version"]
  52. major, minor, patch = (int(x) for x in v.split(".")[:3])
  53. return major * 10000 + minor * 100 + patch
  54. except Exception:
  55. return 0
  56. def main() -> tuple[int, str, str]:
  57. """Run the bootstrap. Returns (outcome, err_phase, err_kind).
  58. err_phase / err_kind are non-empty only on BUILD_FAILED — they let
  59. telemetry split bootstrap failures by root cause.
  60. """
  61. # Honesty check (fixes the misleading NOOP_VENV in #2071): the SDK
  62. # requires Python >=3.10 and uses 3.10+ syntax (match statements,
  63. # PEP 604 unions). On a 3.9 hook interpreter we CANNOT import it no
  64. # matter how the venv was built — llm.py runs in this same interpreter
  65. # and the syntax-level import will SyntaxError. macOS ships 3.9.6 as
  66. # the default `python3` and `/usr/bin` precedes Homebrew in PATH, so
  67. # this case is the default state for a large share of macOS users.
  68. #
  69. # sg-python.sh now prefers python3.10+ binaries so most users won't
  70. # reach this branch; the fallback to 3.9 is preserved for the
  71. # pattern-warning hooks that don't need the SDK. Reporting
  72. # HOOK_PY_INCOMPATIBLE here:
  73. # (a) avoids 30-60s of wasted pip install,
  74. # (b) avoids the lie where the venv_py probe says NOOP_VENV but the
  75. # consumer import fails, and
  76. # (c) gives telemetry a clean bucket to size the affected fleet.
  77. if sys.version_info < (3, 10):
  78. return (
  79. HOOK_PY_INCOMPATIBLE,
  80. "hook_py",
  81. f"py_{sys.version_info[0]}.{sys.version_info[1]}",
  82. )
  83. if _sdk_on_syspath():
  84. return NOOP_SYSTEM, "", ""
  85. state_dir = Path(_resolve_state_dir())
  86. venv = state_dir / "agent-sdk-venv"
  87. # Windows venvs put the interpreter at Scripts\python.exe; POSIX uses bin/python.
  88. if sys.platform == "win32":
  89. venv_py = venv / "Scripts" / "python.exe"
  90. else:
  91. venv_py = venv / "bin" / "python"
  92. # Another SessionStart (concurrent CC instance, same plugin) may already
  93. # be building. The sentinel lives NEXT TO the venv, not inside it —
  94. # `python -m venv --clear` wipes the target dir's contents, so an
  95. # in-venv sentinel would be deleted the instant we create the venv.
  96. # Stale sentinels (>5min) from a SIGKILL'd build are ignored.
  97. sentinel = state_dir / "agent-sdk-venv.building"
  98. if sentinel.exists():
  99. try:
  100. if time.time() - sentinel.stat().st_mtime < 300:
  101. return SKIP_SENTINEL, "", ""
  102. sentinel.unlink(missing_ok=True)
  103. except OSError:
  104. return SKIP_SENTINEL, "", ""
  105. # If a venv already exists and its python can import the SDK, done.
  106. if venv_py.exists():
  107. try:
  108. r = subprocess.run(
  109. [str(venv_py), "-c", "import claude_agent_sdk"],
  110. capture_output=True, timeout=10,
  111. )
  112. if r.returncode == 0:
  113. return NOOP_VENV, "", ""
  114. except Exception:
  115. pass # broken venv; rebuild below
  116. err_phase = ""
  117. err_kind = ""
  118. we_own_sentinel = False
  119. try:
  120. state_dir.mkdir(parents=True, exist_ok=True)
  121. # O_EXCL makes the sentinel an atomic lock — if two SessionStarts
  122. # race past the exists() check above, only one creates it.
  123. try:
  124. os.close(os.open(sentinel, os.O_CREAT | os.O_EXCL | os.O_WRONLY))
  125. except FileExistsError:
  126. return SKIP_SENTINEL, "", ""
  127. we_own_sentinel = True
  128. err_phase = "venv"
  129. subprocess.run(
  130. [sys.executable, "-m", "venv", "--clear", str(venv)],
  131. capture_output=True, timeout=60, check=True,
  132. )
  133. # Some machines route pip through a private registry; we
  134. # don't pass --index-url here so we inherit that default. Outside
  135. # the user's machine, pip's own default registry applies — that's the same
  136. # exposure the user would have running `pip install` themselves, so
  137. # we're not widening the supply-chain surface.
  138. #
  139. # --prefer-binary: on ARM64 Windows, pip's default resolver picks a
  140. # `cryptography` version with no published binary wheel and tries to
  141. # build from source, which needs Rust/Cargo (almost never present
  142. # on user machines). The build fails and the whole bootstrap returns
  143. # BUILD_FAILED. A binary wheel exists on PyPI for an adjacent
  144. # version (`cryptography-46.0.3-cp311-abi3-win_arm64.whl`);
  145. # --prefer-binary tells pip to pick it. Cross-platform safe: no-op
  146. # on platforms where the latest version already has a wheel.
  147. err_phase = "pip"
  148. subprocess.run(
  149. [str(venv_py), "-m", "pip", "install", "--quiet",
  150. "--disable-pip-version-check", "--prefer-binary",
  151. "claude-agent-sdk"],
  152. capture_output=True, timeout=120, check=True,
  153. )
  154. return BUILT, "", ""
  155. except subprocess.CalledProcessError as e:
  156. # Capture a stderr fingerprint so telemetry can split BUILD_FAILED by
  157. # root cause (no-network, package-not-found, dns-fail, etc.).
  158. # Categorize first, then keep a short raw tail for the long tail of
  159. # unexpected modes.
  160. stderr_b = e.stderr or b""
  161. if isinstance(stderr_b, bytes):
  162. stderr_str = stderr_b.decode("utf-8", errors="replace")
  163. else:
  164. stderr_str = str(stderr_b)
  165. s = stderr_str.lower()
  166. if "no matching distribution" in s or "could not find a version" in s:
  167. err_kind = "pip_no_match"
  168. elif "name or service not known" in s or "name resolution" in s \
  169. or "nodename nor servname" in s or "temporary failure in name" in s:
  170. err_kind = "dns_fail"
  171. elif "connection refused" in s or "connection reset" in s:
  172. err_kind = "conn_refused"
  173. elif "ssl" in s and ("verify" in s or "certificate" in s):
  174. err_kind = "ssl_verify"
  175. elif "permission denied" in s or "read-only file system" in s:
  176. err_kind = "perm_denied"
  177. elif "no module named pip" in s or "no module named ensurepip" in s:
  178. err_kind = "no_pip"
  179. elif "no space left" in s or "disk quota" in s:
  180. err_kind = "disk_full"
  181. elif "proxy" in s and ("authent" in s or "tunnel" in s or "407" in s):
  182. err_kind = "proxy_auth"
  183. elif "timeout" in s or "timed out" in s:
  184. err_kind = "stderr_timeout"
  185. else:
  186. # First 60 chars of the last non-empty stderr line — bounded to
  187. # stay inside CC's metric value-length budget. Real failure modes
  188. # we haven't categorized show up here as a low-cardinality bucket.
  189. tail = next(
  190. (ln.strip() for ln in reversed(stderr_str.splitlines()) if ln.strip()),
  191. "",
  192. )[:60]
  193. err_kind = f"other:{tail}" if tail else "other"
  194. return BUILD_FAILED, err_phase, err_kind
  195. except subprocess.TimeoutExpired:
  196. return BUILD_FAILED, err_phase, "subprocess_timeout"
  197. except Exception as e:
  198. return BUILD_FAILED, err_phase, f"exc:{type(e).__name__}"
  199. finally:
  200. # Only remove the sentinel if THIS process created it. The
  201. # FileExistsError path above means another process owns the lock;
  202. # unconditionally unlinking here would delete its sentinel and let
  203. # a third concurrent SessionStart `venv --clear` over the in-flight
  204. # build.
  205. if we_own_sentinel:
  206. sentinel.unlink(missing_ok=True)
  207. def _maybe_emit_user_notice(outcome: int, pv: int) -> str | None:
  208. """Return a one-time user-visible notice when the agentic reviewer is
  209. in a persistent broken state on this machine, or None if we've already
  210. shown the notice for this plugin version (or shouldn't show one).
  211. The marker file is plugin-version-keyed: a future plugin update can
  212. re-notify if behavior changes (e.g. we ship out-of-process SDK in v3
  213. and want to tell affected users it's fixed). Failures to write the
  214. marker degrade to "skip the notice this session" so we don't spam
  215. every SessionStart on a read-only home dir.
  216. Currently only HOOK_PY_INCOMPATIBLE qualifies. BUILD_FAILED is
  217. intentionally excluded — it covers transient causes (network failure,
  218. pip registry hiccup, in-flight rebuild) where the next session may
  219. succeed and a permanent notice would mislead.
  220. """
  221. if outcome != HOOK_PY_INCOMPATIBLE:
  222. return None
  223. try:
  224. state_dir = Path(_resolve_state_dir())
  225. marker = state_dir / f".agentic_unavailable_notice_v{pv or 0}"
  226. if marker.exists():
  227. return None
  228. state_dir.mkdir(parents=True, exist_ok=True)
  229. # Write timestamp + Python version so the marker is self-documenting
  230. # if a user goes looking. O_EXCL would be racier with no real win
  231. # (two concurrent SessionStarts both showing the notice once is fine).
  232. marker.write_text(
  233. f"{time.strftime('%Y-%m-%dT%H:%M:%SZ', time.gmtime())} "
  234. f"py={sys.version_info[0]}.{sys.version_info[1]}\n"
  235. )
  236. except OSError:
  237. return None
  238. return (
  239. f"⚠ security-guidance plugin: the cross-file commit reviewer "
  240. f"(layer 3 of 3 — catches IDOR, auth-bypass, cross-file SSRF) "
  241. f"is unavailable in this environment. It requires Python ≥3.10, "
  242. f"but the hook is running on "
  243. f"{sys.version_info[0]}.{sys.version_info[1]}.\n\n"
  244. f"Pattern checks and the single-shot LLM diff review are still "
  245. f"active. To enable the deeper reviewer, install Python 3.10+ "
  246. f"(e.g. `brew install python` on macOS) and restart Claude Code.\n\n"
  247. f"This notice is shown once per plugin version. "
  248. f"See: github.com/anthropics/claude-plugins-official/issues/2071"
  249. )
  250. if __name__ == "__main__":
  251. # Tell the harness this is async — venv create + pip install can take
  252. # 30-60s on a cold cache, well past the default sync hook timeout.
  253. # SessionStart runs before the user's first prompt; doing this in the
  254. # background means the first commit-review of the session usually finds
  255. # the venv ready.
  256. print(json.dumps({"async": True, "asyncTimeout": 180000}), flush=True)
  257. t0 = time.perf_counter()
  258. try:
  259. outcome, err_phase, err_kind = main()
  260. except Exception as exc:
  261. outcome, err_phase, err_kind = (
  262. BUILD_FAILED, "main", f"exc:{type(exc).__name__}"
  263. )
  264. # CC's async-hook registry scans stdout line-by-line after process exit
  265. # and takes the FIRST non-{"async":...} JSON line as the hook response;
  266. # its `metrics` key is forwarded to the hook metrics event on the
  267. # next attachments pass. Must be a single line — the registry splits on
  268. # \n and json-parses each independently. Values must be bool|number OR
  269. # short strings (CC accepts string metric values if they're not
  270. # null). Stay inside the 10-key emit cap.
  271. metrics: dict[str, object] = {
  272. "sdk_bootstrap": outcome,
  273. "sdk_bootstrap_ms": round((time.perf_counter() - t0) * 1000),
  274. }
  275. if err_kind:
  276. # Truncate defensively; categorized values are <40 chars but the
  277. # `other:<tail>` mode could be longer. err_phase may be empty for
  278. # pre-venv failures (state_dir.mkdir perm-denied, sentinel O_EXCL
  279. # raising a non-FileExistsError OSError) — emit as "pre" so the
  280. # err_kind isn't silently dropped.
  281. metrics["sdk_bootstrap_phase"] = (err_phase or "pre")[:16]
  282. metrics["sdk_bootstrap_err"] = err_kind[:96]
  283. pv = _plugin_version_int()
  284. if pv:
  285. metrics["pv"] = pv
  286. response: dict[str, object] = {"metrics": metrics}
  287. # One-time user-visible notice when the agentic reviewer is dead on
  288. # arrival. Uses hookSpecificOutput.additionalContext (SessionStart's
  289. # supported channel for surfacing text to both the model and the user)
  290. # plus systemMessage as a belt-and-suspenders. Marker-file-gated so
  291. # this fires exactly once per plugin version per install — see
  292. # _maybe_emit_user_notice.
  293. notice = _maybe_emit_user_notice(outcome, pv)
  294. if notice:
  295. response["hookSpecificOutput"] = {
  296. "hookEventName": "SessionStart",
  297. "additionalContext": notice,
  298. }
  299. response["systemMessage"] = notice
  300. print(json.dumps(response), flush=True)