From 0753d53871e5028048822a01ad5aaa175090ee57 Mon Sep 17 00:00:00 2001 From: anandgupta42 <93243293+anandgupta42@users.noreply.github.com> Date: Wed, 8 Jul 2026 11:24:20 -0700 Subject: [PATCH 1/2] ci: add aireceipts auto-attach hook (.claude/settings.json) --- .claude/settings.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000000..3e5e4d8cef --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,16 @@ +{ + "hooks": { + "PreToolUse": [ + { + "matcher": "Bash", + "hooks": [ + { + "type": "command", + "command": "npx -y aireceipts-cli@latest hook pre-push", + "timeout": 10 + } + ] + } + ] + } +} From 43208086973753b7103f4fb54c4428dac2994c97 Mon Sep 17 00:00:00 2001 From: anandgupta42 <93243293+anandgupta42@users.noreply.github.com> Date: Wed, 8 Jul 2026 11:43:47 -0700 Subject: [PATCH 2/2] ci: bump auto-attach hook timeout 10s->60s (cold-cache first-run npx headroom) --- .claude/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/settings.json b/.claude/settings.json index 3e5e4d8cef..b2944bfeb2 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -7,7 +7,7 @@ { "type": "command", "command": "npx -y aireceipts-cli@latest hook pre-push", - "timeout": 10 + "timeout": 60 } ] }