claude-slack-channel-bots 0.1.2 → 0.1.3
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/README.md
CHANGED
|
@@ -319,8 +319,11 @@ The `update-config` skill can automate hook installation. It copies or symlinks
|
|
|
319
319
|
**routing.json CWD mismatch**
|
|
320
320
|
If a Claude Code session connects but immediately disconnects, the session's actual CWD does not match any `cwd` in `routing.json`. Confirm the session's working directory matches the entry exactly (after tilde expansion). Duplicate CWDs across multiple routes are rejected at startup.
|
|
321
321
|
|
|
322
|
+
**Bot not receiving messages in a new channel**
|
|
323
|
+
After inviting the bot to a channel, Slack may not deliver messages until the bot is @mentioned for the first time. This is a Slack Socket Mode behavior — the first @mention activates event delivery for that channel. After that, all messages flow normally regardless of `requireMention` settings.
|
|
324
|
+
|
|
322
325
|
**Channel not in access.json**
|
|
323
|
-
Messages to channels not listed in `access.json → channels` are silently dropped. Use the `slack-
|
|
326
|
+
Messages to channels not listed in `access.json → channels` and not present in `routing.json → routes` are silently dropped. Use the `claude-slack-channels-config` skill or edit `access.json` directly to add the channel ID with a `ChannelPolicy` entry.
|
|
324
327
|
|
|
325
328
|
**Permission relay not working**
|
|
326
329
|
Check that the Slack app has interactivity enabled (Interactivity & Shortcuts → toggle on). Verify `curl` and `jq` are on your `PATH`. Confirm the hook scripts are executable (`chmod +x`). If the port was changed in `routing.json`, ensure `SLACK_STATE_DIR` is set correctly so the hooks can read the updated port.
|
package/package.json
CHANGED
|
@@ -174,7 +174,9 @@ After collecting at least one route, write the updated `routing.json`.
|
|
|
174
174
|
**Important:** Remind the user to invite the bot to each channel they configured.
|
|
175
175
|
In Slack, type `/invite @Claude Slack Channel Bots` in each channel (or whatever
|
|
176
176
|
the bot's display name is). The bot cannot receive messages from channels it has
|
|
177
|
-
not been invited to.
|
|
177
|
+
not been invited to. After inviting, send an @mention to the bot in each channel
|
|
178
|
+
— Slack may not deliver messages until the first @mention activates event
|
|
179
|
+
delivery for that channel.
|
|
178
180
|
|
|
179
181
|
**Optional routing fields** — after required routes are set, offer these with
|
|
180
182
|
their defaults. Prompt only if the user wants to customise:
|