mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
Claude Code never reads a standalone .claude/hooks.json, so the PostToolUse and Stop pipeline is moved into .claude/settings.json and hooks.json is removed; .cursor/hooks.json is rewritten in Cursor's version+afterFileEdit/stop schema; .codex/hooks.json is already Codex-valid and stays. The shared scripts now parse both the Cursor file_path and Claude/Codex tool_input.file_path stdin shapes and normalize absolute paths, so the format, yarn-install, and react-pattern-review hooks stop being silent no-ops. verify.sh blocks with exit 2 plus a stderr reason, guards stop_hook_active, and skips clean trees; react-pattern-review surfaces its reminder via hookSpecificOutput on PostToolUse; sync-git-branches no longer misreports open PRs as merged. The validator now checks that the three harness-specific entry points wire the same hook scripts instead of requiring byte-identical hooks.json copies.
35 lines
1.1 KiB
Bash
Executable File
35 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# afterFileEdit/PostToolUse hook: Run Corepack-managed Yarn install when package.json is changed
|
|
# Stdin JSON differs per harness:
|
|
# Cursor afterFileEdit: {"file_path": "...", "edits": [...]}
|
|
# Claude/Codex PostToolUse: {"tool_input": {"file_path": "..."}, ...}
|
|
|
|
input=$(cat)
|
|
if command -v jq >/dev/null 2>&1; then
|
|
file_path=$(printf '%s' "$input" | jq -r '.tool_input.file_path // .file_path // empty' 2>/dev/null)
|
|
else
|
|
file_path=$(echo "$input" | grep -o '"file_path"[[:space:]]*:[[:space:]]*"[^"]*"' | head -1 | sed 's/.*:.*"\([^"]*\)"/\1/')
|
|
fi
|
|
|
|
if [ -z "$file_path" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
repo_root="$(git rev-parse --show-toplevel 2>/dev/null || pwd)"
|
|
|
|
# Claude Code and Codex deliver absolute paths; compare repo-relative so the
|
|
# root package.json matches in every harness.
|
|
case "$file_path" in
|
|
"$repo_root"/*) file_path="${file_path#"$repo_root"/}" ;;
|
|
/*) exit 0 ;;
|
|
esac
|
|
|
|
if [ "$file_path" = "package.json" ]; then
|
|
cd "$repo_root" || exit 0
|
|
echo "package.json changed - running corepack yarn install to update yarn.lock..."
|
|
corepack yarn install
|
|
fi
|
|
|
|
exit 0
|