fix: feat: StopFailure hook writes phase file on API error / rate limit (#275)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
109758e86b
commit
eaf2841494
4 changed files with 127 additions and 3 deletions
|
|
@ -47,6 +47,7 @@ agent_inject_into_session() {
|
|||
# Installs a Stop hook for idle detection (see monitor_phase_loop).
|
||||
# Installs a PreToolUse hook to guard destructive Bash operations.
|
||||
# Optionally installs a PostToolUse hook for phase file write detection.
|
||||
# Optionally installs a StopFailure hook for immediate phase file update on API error.
|
||||
# Args: session workdir [phase_file]
|
||||
# Returns 0 if session is ready, 1 otherwise.
|
||||
create_agent_session() {
|
||||
|
|
@ -121,6 +122,38 @@ create_agent_session() {
|
|||
fi
|
||||
fi
|
||||
|
||||
# Install StopFailure hook for immediate phase file update on API error:
|
||||
# when Claude hits a rate limit, server error, billing error, or auth failure,
|
||||
# the hook writes PHASE:failed to the phase file and touches the phase-changed
|
||||
# marker so monitor_phase_loop picks it up within one poll cycle instead of
|
||||
# waiting for idle timeout (up to 2 hours).
|
||||
if [ -n "$phase_file" ]; then
|
||||
local stop_failure_hook_script="${FACTORY_ROOT}/lib/hooks/on-stop-failure.sh"
|
||||
if [ -x "$stop_failure_hook_script" ]; then
|
||||
local stop_failure_hook_cmd="${stop_failure_hook_script} ${phase_file} ${phase_marker}"
|
||||
if [ -f "$settings" ]; then
|
||||
jq --arg cmd "$stop_failure_hook_cmd" '
|
||||
if (.hooks.StopFailure // [] | any(.[]; .hooks[]?.command == $cmd))
|
||||
then .
|
||||
else .hooks.StopFailure = (.hooks.StopFailure // []) + [{
|
||||
matcher: "rate_limit|server_error|authentication_failed|billing_error",
|
||||
hooks: [{type: "command", command: $cmd}]
|
||||
}]
|
||||
end
|
||||
' "$settings" > "${settings}.tmp" && mv "${settings}.tmp" "$settings"
|
||||
else
|
||||
jq -n --arg cmd "$stop_failure_hook_cmd" '{
|
||||
hooks: {
|
||||
StopFailure: [{
|
||||
matcher: "rate_limit|server_error|authentication_failed|billing_error",
|
||||
hooks: [{type: "command", command: $cmd}]
|
||||
}]
|
||||
}
|
||||
}' > "$settings"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# Install PreToolUse hook for destructive operation guard: blocks force push
|
||||
# to primary branch, rm -rf outside worktree, direct API merge calls, and
|
||||
# checkout/switch to primary branch. Claude sees the denial reason on exit 2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue