Skip to content

v5.11.81

Latest

Choose a tag to compare

@alexgreensh alexgreensh released this 05 Aug 10:33

Windows fixes

#118 — Windows hooks no longer break silently under Git Bash. Hook commands were built with cmd.exe syntax (>NUL), but Claude Code runs hooks through Git Bash, which created a literal NUL file in every project and silently disabled every hook. Hooks are now emitted bash-safe, and existing broken installs self-heal on upgrade (the legacy SessionEnd hook is detected as stale and rewritten). No more perpetual settings.json rewrites either.

#117 — Windows process enumeration is fast again. tasklist /v was pathologically slow for standard users on Win11; replaced with a Get-Process -Name 'claude*' pipeline.

Internal

  • New check-mirror-sync.sh + CI job keeps the Codex plugins/ mirror from drifting on any push (not just at release).
  • codex_install.py intentionally stays cmd.exe — Codex spawns hooks via %COMSPEC% /C (verified against codex-rs source).