claude-slack-channel-bots 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -331,8 +331,11 @@ Look for an entry inside `hooks.PreToolUse` with:
|
|
|
331
331
|
{ "matcher": "AskUserQuestion", "hooks": [{ "type": "command", "command": "~/.claude/hooks/ask-relay.sh" }] }
|
|
332
332
|
```
|
|
333
333
|
|
|
334
|
-
**If either entry is missing
|
|
335
|
-
the
|
|
334
|
+
**If either entry is missing OR exists but is missing `"timeout": 2000000`**,
|
|
335
|
+
show the user the exact JSON to add or fix. The timeout is critical — without
|
|
336
|
+
it Claude Code uses a short default timeout, kills the hook before the
|
|
337
|
+
long-poll completes, and falls back to TUI approval. This is the complete
|
|
338
|
+
block for both entries:
|
|
336
339
|
|
|
337
340
|
```jsonc
|
|
338
341
|
"PermissionRequest": [
|
package/src/cli.ts
CHANGED
|
File without changes
|