| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487 |
- #!/usr/bin/env python3
- """SessionStart bootstrap: ensure claude_agent_sdk is importable for the
- agentic commit reviewer.
- If claude_agent_sdk already imports in the current python3, this is a no-op.
- Otherwise it creates a venv at ~/.claude/security/agent-sdk-venv and installs
- the SDK there. security_reminder_hook.py prepends that venv's site-packages to
- sys.path before attempting the SDK import, so the venv is used as a
- fallback only when the system install is missing.
- The venv lives under ~/.claude/security/ (same dir the plugin already uses
- for per-session state) so it persists across plugin updates — rebuilding
- on every update is 30-60s of wasted work for a package that changes far
- less often than the plugin does.
- """
- from __future__ import annotations
- import importlib.util
- import json
- import os
- import subprocess
- import sys
- import time
- from pathlib import Path
- # Shared state-dir resolver: SECURITY_WARNINGS_STATE_DIR → CLAUDE_CONFIG_DIR/security
- # → ~/.claude/security. See _base.state_dir for resolution precedence. Re-aliased
- # here to match the existing local name (state_dir was already a local var in
- # main() and _maybe_emit_user_notice).
- from _base import state_dir as _resolve_state_dir
- # Outcome codes for the sdk_bootstrap metric. Values are stable for telemetry.
- NOOP_SYSTEM = 0 # claude_agent_sdk already importable in system python
- NOOP_VENV = 1 # venv already built and SDK imports from it
- BUILT = 2 # venv created + SDK pip-installed this run
- BUILD_FAILED = 3 # venv create or pip install raised/timed out
- # Outcome 4 was previously SKIP_WIN32; retired now that the consumer glob in
- # llm.py also matches Windows venv layout (Lib/site-packages). Don't reuse the
- # value — telemetry rows from older plugin builds still emit 4.
- SKIP_SENTINEL = 5 # another SessionStart is currently building
- HOOK_PY_INCOMPATIBLE = 6 # hook interpreter is <3.10 — SDK syntax can't load
- # here no matter how the venv was built. See #2071.
- # Phase + err-kind integer encoding for sdk_bootstrap_phase / sdk_bootstrap_err.
- #
- # Earlier versions emitted these as STRINGS (e.g. "pip", "dns_fail"). CC's
- # plugin-metrics pipeline silently drops plugin-emitted string values —
- # only `bool|finite-number` plugin metrics reach BigQuery. (CC-core
- # metrics like `subscription_type` are exempt because they're injected
- # downstream of plugin validation.) Confirmed empirically: 185K
- # BUILD_FAILED rows in BQ had `sdk_bootstrap_phase`/`sdk_bootstrap_err`
- # = NULL despite the Python code emitting them. This left ~28K
- # BUILD_FAILED sessions/day with no diagnostic split — flying blind on
- # the real failure modes (pip-no-match vs dns-fail vs ssl-verify etc.).
- #
- # Fix: encode as small integers per the maps below. Values are
- # APPEND-ONLY for telemetry stability. Reserve 99 as the "unknown /
- # uncategorized" bucket so an unmapped err_kind (e.g., a new exception
- # type) still emits a non-zero signal.
- SDK_BOOTSTRAP_PHASE_CODES = {
- "pre": 1, # pre-venv (state_dir.mkdir, sentinel open)
- "venv": 2, # python -m venv --clear
- "pip": 3, # pip install
- "main": 4, # uncaught exception above main()
- }
- SDK_BOOTSTRAP_ERR_CODES = {
- "pip_no_match": 1,
- "dns_fail": 2,
- "conn_refused": 3,
- "ssl_verify": 4,
- "perm_denied": 5,
- "no_pip": 6,
- "disk_full": 7,
- "proxy_auth": 8,
- "stderr_timeout": 9, # pip stderr containing "timeout"/"timed out"
- "subprocess_timeout": 10, # subprocess.TimeoutExpired (>120s)
- # Venv-stage specific categories added after PR #2112 telemetry surfaced
- # 2,406 phase=2/err=99 sessions in the first 3h of v2.0.1 — venv phase
- # failing in ways the original pip-flavored patterns didn't catch. These
- # all split out of what was previously collapsing to _uncategorized.
- "venv_ensurepip_fail": 11, # Debian/Ubuntu missing python3-venv;
- # stderr mentions ensurepip non-zero exit
- # or "ensurepip is not available"
- "venv_path_too_long": 12, # Windows MAX_PATH (260) or POSIX
- # ENAMETOOLONG — venv writes deep paths
- # under state_dir/agent-sdk-venv/Lib/...
- "venv_no_module": 13, # `python3 -m venv` itself missing — "No
- # module named 'venv'" / "No module named venv"
- "venv_already_exists": 14, # Errno 17 / "file exists" — sentinel race
- # past O_EXCL or stale dir survived --clear
- "venv_setup_failed": 15, # Generic "virtual environment was not
- # created successfully" — catches the long
- # tail of venv setup failures that don't
- # match a more specific category above
- # 16–98 reserved for future categories; APPEND-ONLY.
- # 99 catches everything else (including "exc:<TypeName>" and "other:<tail>"
- # — the original string is debug-loggable but the integer is what makes
- # it to telemetry). For the "other:" tail, `sdk_bootstrap_stderr_sig`
- # carries a bounded integer hash so we can still distinguish patterns
- # in BQ aggregation.
- "_uncategorized": 99,
- }
- def _encode_phase(s):
- """Map err_phase string to its telemetry integer code, or 0 if unset.
- Empty/None → 0 lets `if encoded:` cleanly skip emission. Per
- SDK_BOOTSTRAP_PHASE_CODES, valid codes are 1-4."""
- return SDK_BOOTSTRAP_PHASE_CODES.get((s or "").strip(), 0)
- def _encode_err_kind(s):
- """Map err_kind string to its telemetry integer code, or 0 if unset.
- Direct hits use the static map; "exc:<X>" and "other:<tail>" both
- collapse to _uncategorized (99) — the raw string survives in debug
- logs, only the integer reaches BQ."""
- s = (s or "").strip()
- if not s:
- return 0
- if s in SDK_BOOTSTRAP_ERR_CODES:
- return SDK_BOOTSTRAP_ERR_CODES[s]
- # Prefix matches for the catch-all categories
- if s.startswith("exc:") or s.startswith("other:") or s == "other":
- return SDK_BOOTSTRAP_ERR_CODES["_uncategorized"]
- # Unknown string — still emit as uncategorized rather than dropping
- return SDK_BOOTSTRAP_ERR_CODES["_uncategorized"]
- def _encode_stderr_sig(err_kind):
- """Bounded integer hash of the stderr tail captured in "other:<tail>"
- err_kinds. Lets us distinguish patterns INSIDE the _uncategorized
- (code 99) bucket without unbounded cardinality.
- Returns 0 for non-"other:" err_kinds (so the field auto-omits from
- emit_metrics on categorized failures — see the emit block in main()).
- Strategy: take the tail's first ~30 chars (post-lowercase, post-trim),
- SHA-1, fold the first 2 bytes to 0–999. Different stderr messages
- cluster into different buckets; same stderr always maps to the same
- bucket. Cardinality is bounded at 1000, well below any "high
- cardinality" alarm — and a real failure mode typically produces
- near-identical stderr across thousands of machines, so 1000 buckets
- is comfortably wide.
- Why first ~30 chars: stderr like "ERROR: Command failed: <full
- path>" varies the tail wildly (paths) but the categorization signal
- is in the leading words. Dropping the suffix focuses the hash on
- the discriminative part.
- """
- if not err_kind or not err_kind.startswith("other:"):
- return 0
- import hashlib
- tail = err_kind[len("other:"):].strip().lower()[:30]
- if not tail:
- return 0
- h = hashlib.sha1(tail.encode("utf-8", errors="replace")).digest()
- return int.from_bytes(h[:2], "big") % 1000
- def _sdk_on_syspath() -> bool:
- # find_spec is ~10ms; actually importing the SDK pulls in
- # transitive deps and costs ~800ms — too heavy for a
- # per-SessionStart no-op check that most sessions hit.
- try:
- return importlib.util.find_spec("claude_agent_sdk") is not None
- except Exception:
- return False
- def _plugin_version_int() -> int:
- # Same encoding as security_reminder_hook._read_plugin_version_int so
- # metrics rows from both hooks join on pv.
- try:
- p = Path(__file__).parent.parent / ".claude-plugin" / "plugin.json"
- v = json.loads(p.read_text())["version"]
- major, minor, patch = (int(x) for x in v.split(".")[:3])
- return major * 10000 + minor * 100 + patch
- except Exception:
- return 0
- def main() -> tuple[int, str, str]:
- """Run the bootstrap. Returns (outcome, err_phase, err_kind).
- err_phase / err_kind are non-empty only on BUILD_FAILED — they let
- telemetry split bootstrap failures by root cause.
- """
- # Honesty check (fixes the misleading NOOP_VENV in #2071): the SDK
- # requires Python >=3.10 and uses 3.10+ syntax (match statements,
- # PEP 604 unions). On a 3.9 hook interpreter we CANNOT import it no
- # matter how the venv was built — llm.py runs in this same interpreter
- # and the syntax-level import will SyntaxError. macOS ships 3.9.6 as
- # the default `python3` and `/usr/bin` precedes Homebrew in PATH, so
- # this case is the default state for a large share of macOS users.
- #
- # sg-python.sh now prefers python3.10+ binaries so most users won't
- # reach this branch; the fallback to 3.9 is preserved for the
- # pattern-warning hooks that don't need the SDK. Reporting
- # HOOK_PY_INCOMPATIBLE here:
- # (a) avoids 30-60s of wasted pip install,
- # (b) avoids the lie where the venv_py probe says NOOP_VENV but the
- # consumer import fails, and
- # (c) gives telemetry a clean bucket to size the affected fleet.
- if sys.version_info < (3, 10):
- return (
- HOOK_PY_INCOMPATIBLE,
- "hook_py",
- f"py_{sys.version_info[0]}.{sys.version_info[1]}",
- )
- if _sdk_on_syspath():
- return NOOP_SYSTEM, "", ""
- state_dir = Path(_resolve_state_dir())
- venv = state_dir / "agent-sdk-venv"
- # Windows venvs put the interpreter at Scripts\python.exe; POSIX uses bin/python.
- if sys.platform == "win32":
- venv_py = venv / "Scripts" / "python.exe"
- else:
- venv_py = venv / "bin" / "python"
- # Another SessionStart (concurrent CC instance, same plugin) may already
- # be building. The sentinel lives NEXT TO the venv, not inside it —
- # `python -m venv --clear` wipes the target dir's contents, so an
- # in-venv sentinel would be deleted the instant we create the venv.
- # Stale sentinels (>5min) from a SIGKILL'd build are ignored.
- sentinel = state_dir / "agent-sdk-venv.building"
- if sentinel.exists():
- try:
- if time.time() - sentinel.stat().st_mtime < 300:
- return SKIP_SENTINEL, "", ""
- sentinel.unlink(missing_ok=True)
- except OSError:
- return SKIP_SENTINEL, "", ""
- # If a venv already exists and its python can import the SDK, done.
- if venv_py.exists():
- try:
- r = subprocess.run(
- [str(venv_py), "-c", "import claude_agent_sdk"],
- capture_output=True, timeout=10,
- )
- if r.returncode == 0:
- return NOOP_VENV, "", ""
- except Exception:
- pass # broken venv; rebuild below
- err_phase = ""
- err_kind = ""
- we_own_sentinel = False
- try:
- state_dir.mkdir(parents=True, exist_ok=True)
- # O_EXCL makes the sentinel an atomic lock — if two SessionStarts
- # race past the exists() check above, only one creates it.
- try:
- os.close(os.open(sentinel, os.O_CREAT | os.O_EXCL | os.O_WRONLY))
- except FileExistsError:
- return SKIP_SENTINEL, "", ""
- we_own_sentinel = True
- err_phase = "venv"
- subprocess.run(
- [sys.executable, "-m", "venv", "--clear", str(venv)],
- capture_output=True, timeout=60, check=True,
- )
- # Some machines route pip through a private registry; we
- # don't pass --index-url here so we inherit that default. Outside
- # the user's machine, pip's own default registry applies — that's the same
- # exposure the user would have running `pip install` themselves, so
- # we're not widening the supply-chain surface.
- #
- # --prefer-binary: on ARM64 Windows, pip's default resolver picks a
- # `cryptography` version with no published binary wheel and tries to
- # build from source, which needs Rust/Cargo (almost never present
- # on user machines). The build fails and the whole bootstrap returns
- # BUILD_FAILED. A binary wheel exists on PyPI for an adjacent
- # version (`cryptography-46.0.3-cp311-abi3-win_arm64.whl`);
- # --prefer-binary tells pip to pick it. Cross-platform safe: no-op
- # on platforms where the latest version already has a wheel.
- err_phase = "pip"
- subprocess.run(
- [str(venv_py), "-m", "pip", "install", "--quiet",
- "--disable-pip-version-check", "--prefer-binary",
- "claude-agent-sdk"],
- capture_output=True, timeout=120, check=True,
- )
- return BUILT, "", ""
- except subprocess.CalledProcessError as e:
- # Capture a stderr fingerprint so telemetry can split BUILD_FAILED by
- # root cause (no-network, package-not-found, dns-fail, etc.).
- # Categorize first, then keep a short raw tail for the long tail of
- # unexpected modes.
- stderr_b = e.stderr or b""
- if isinstance(stderr_b, bytes):
- stderr_str = stderr_b.decode("utf-8", errors="replace")
- else:
- stderr_str = str(stderr_b)
- s = stderr_str.lower()
- # Venv-specific patterns checked FIRST — they overlap with some pip
- # patterns (e.g. "no module named ensurepip" could match no_pip OR
- # venv_ensurepip_fail; the venv-stage interpretation is the right
- # one when err_phase=="venv"). Order is venv-most-specific →
- # pip-historical → generic.
- if err_phase == "venv" and (
- "ensurepip is not available" in s
- or ("ensurepip" in s and "returned non-zero" in s)
- or "the virtual environment was not created" in s and "ensurepip" in s
- ):
- err_kind = "venv_ensurepip_fail"
- elif err_phase == "venv" and (
- "[errno 36]" in s
- or "file name too long" in s
- or "path too long" in s
- ):
- err_kind = "venv_path_too_long"
- elif err_phase == "venv" and (
- "no module named venv" in s
- or "no module named 'venv'" in s
- ):
- err_kind = "venv_no_module"
- elif err_phase == "venv" and (
- "[errno 17]" in s
- or ("file exists" in s and "venv" in s)
- ):
- err_kind = "venv_already_exists"
- elif "no matching distribution" in s or "could not find a version" in s:
- err_kind = "pip_no_match"
- elif "name or service not known" in s or "name resolution" in s \
- or "nodename nor servname" in s or "temporary failure in name" in s:
- err_kind = "dns_fail"
- elif "connection refused" in s or "connection reset" in s:
- err_kind = "conn_refused"
- elif "ssl" in s and ("verify" in s or "certificate" in s):
- err_kind = "ssl_verify"
- elif "permission denied" in s or "read-only file system" in s:
- err_kind = "perm_denied"
- elif "no module named pip" in s or "no module named ensurepip" in s:
- err_kind = "no_pip"
- elif "no space left" in s or "disk quota" in s:
- err_kind = "disk_full"
- elif "proxy" in s and ("authent" in s or "tunnel" in s or "407" in s):
- err_kind = "proxy_auth"
- elif "timeout" in s or "timed out" in s:
- err_kind = "stderr_timeout"
- elif err_phase == "venv" and (
- "virtual environment was not created" in s
- or "error: command" in s and "venv" in s
- ):
- # Generic venv-setup catch-all — matched AFTER the more specific
- # venv patterns above so we don't shadow them, but BEFORE the
- # other: fallback so generic venv setup failures get their own
- # bucket instead of polluting the long-tail signature space.
- err_kind = "venv_setup_failed"
- else:
- # First 60 chars of the last non-empty stderr line — bounded to
- # stay inside CC's metric value-length budget. Real failure modes
- # we haven't categorized show up here as a low-cardinality bucket.
- tail = next(
- (ln.strip() for ln in reversed(stderr_str.splitlines()) if ln.strip()),
- "",
- )[:60]
- err_kind = f"other:{tail}" if tail else "other"
- return BUILD_FAILED, err_phase, err_kind
- except subprocess.TimeoutExpired:
- return BUILD_FAILED, err_phase, "subprocess_timeout"
- except Exception as e:
- return BUILD_FAILED, err_phase, f"exc:{type(e).__name__}"
- finally:
- # Only remove the sentinel if THIS process created it. The
- # FileExistsError path above means another process owns the lock;
- # unconditionally unlinking here would delete its sentinel and let
- # a third concurrent SessionStart `venv --clear` over the in-flight
- # build.
- if we_own_sentinel:
- sentinel.unlink(missing_ok=True)
- def _maybe_emit_user_notice(outcome: int, pv: int) -> str | None:
- """Return a one-time user-visible notice when the agentic reviewer is
- in a persistent broken state on this machine, or None if we've already
- shown the notice for this plugin version (or shouldn't show one).
- The marker file is plugin-version-keyed: a future plugin update can
- re-notify if behavior changes (e.g. we ship out-of-process SDK in v3
- and want to tell affected users it's fixed). Failures to write the
- marker degrade to "skip the notice this session" so we don't spam
- every SessionStart on a read-only home dir.
- Currently only HOOK_PY_INCOMPATIBLE qualifies. BUILD_FAILED is
- intentionally excluded — it covers transient causes (network failure,
- pip registry hiccup, in-flight rebuild) where the next session may
- succeed and a permanent notice would mislead.
- """
- if outcome != HOOK_PY_INCOMPATIBLE:
- return None
- try:
- state_dir = Path(_resolve_state_dir())
- marker = state_dir / f".agentic_unavailable_notice_v{pv or 0}"
- if marker.exists():
- return None
- state_dir.mkdir(parents=True, exist_ok=True)
- # Write timestamp + Python version so the marker is self-documenting
- # if a user goes looking. O_EXCL would be racier with no real win
- # (two concurrent SessionStarts both showing the notice once is fine).
- marker.write_text(
- f"{time.strftime('%Y-%m-%dT%H:%M:%SZ', time.gmtime())} "
- f"py={sys.version_info[0]}.{sys.version_info[1]}\n"
- )
- except OSError:
- return None
- return (
- f"⚠ security-guidance plugin: the cross-file commit reviewer "
- f"(layer 3 of 3 — catches IDOR, auth-bypass, cross-file SSRF) "
- f"is unavailable in this environment. It requires Python ≥3.10, "
- f"but the hook is running on "
- f"{sys.version_info[0]}.{sys.version_info[1]}.\n\n"
- f"Pattern checks and the single-shot LLM diff review are still "
- f"active. To enable the deeper reviewer, install Python 3.10+ "
- f"(e.g. `brew install python` on macOS) and restart Claude Code.\n\n"
- f"This notice is shown once per plugin version. "
- f"See: github.com/anthropics/claude-plugins-official/issues/2071"
- )
- if __name__ == "__main__":
- # Tell the harness this is async — venv create + pip install can take
- # 30-60s on a cold cache, well past the default sync hook timeout.
- # SessionStart runs before the user's first prompt; doing this in the
- # background means the first commit-review of the session usually finds
- # the venv ready.
- print(json.dumps({"async": True, "asyncTimeout": 180000}), flush=True)
- t0 = time.perf_counter()
- try:
- outcome, err_phase, err_kind = main()
- except Exception as exc:
- outcome, err_phase, err_kind = (
- BUILD_FAILED, "main", f"exc:{type(exc).__name__}"
- )
- # CC's async-hook registry scans stdout line-by-line after process exit
- # and takes the FIRST non-{"async":...} JSON line as the hook response;
- # its `metrics` key is forwarded to the hook metrics event on the
- # next attachments pass. Must be a single line — the registry splits on
- # \n and json-parses each independently.
- #
- # IMPORTANT — values must be bool|finite-number. The validation comment
- # has historically said "or short strings" but that was wrong: CC's
- # plugin-metrics pipeline silently drops plugin-emitted string values.
- # Stay inside the 10-key emit cap.
- metrics: dict[str, object] = {
- "sdk_bootstrap": outcome,
- "sdk_bootstrap_ms": round((time.perf_counter() - t0) * 1000),
- }
- if err_kind:
- # Encode phase + err_kind as integer codes (see
- # SDK_BOOTSTRAP_PHASE_CODES / SDK_BOOTSTRAP_ERR_CODES). Earlier
- # versions emitted these as strings and CC dropped them — restoring
- # the diagnostic split that 28K BUILD_FAILED/day need to triage by
- # root cause. err_phase defaults to "pre" when empty (pre-venv
- # failure path, e.g. state_dir.mkdir perm-denied).
- metrics["sdk_bootstrap_phase"] = _encode_phase(err_phase or "pre")
- metrics["sdk_bootstrap_err"] = _encode_err_kind(err_kind)
- # For "other:<tail>" (encoded err==99), emit a bounded integer
- # hash of the stderr tail so BQ can distinguish patterns inside
- # the _uncategorized bucket without unbounded cardinality. Zero
- # when err_kind is categorized — the schema reader treats 0 as
- # "no signal", matching the absence convention.
- sig = _encode_stderr_sig(err_kind)
- if sig:
- metrics["sdk_bootstrap_stderr_sig"] = sig
- pv = _plugin_version_int()
- if pv:
- metrics["pv"] = pv
- response: dict[str, object] = {"metrics": metrics}
- # One-time user-visible notice when the agentic reviewer is dead on
- # arrival. Uses hookSpecificOutput.additionalContext (SessionStart's
- # supported channel for surfacing text to both the model and the user)
- # plus systemMessage as a belt-and-suspenders. Marker-file-gated so
- # this fires exactly once per plugin version per install — see
- # _maybe_emit_user_notice.
- notice = _maybe_emit_user_notice(outcome, pv)
- if notice:
- response["hookSpecificOutput"] = {
- "hookEventName": "SessionStart",
- "additionalContext": notice,
- }
- response["systemMessage"] = notice
- print(json.dumps(response), flush=True)
|