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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-slack-channel-bots",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Multi-session Slack-to-Claude bridge — run multiple Claude Code bots across Slack channels via Socket Mode",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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**, show the user the exact JSON to add. This is
335
- the complete block for both entries:
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