From a66fc1365dc524a40c242fa4bc441d3203f7c22f Mon Sep 17 00:00:00 2001 From: Teknium Date: Mon, 13 Apr 2026 16:31:19 -0700 Subject: [PATCH] fix: add files:read to SLACK_BOT_TOKEN description in config.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Missed in the original PR — the env var description also lists required scopes. --- hermes_cli/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hermes_cli/config.py b/hermes_cli/config.py index 738960bb4..462f651e8 100644 --- a/hermes_cli/config.py +++ b/hermes_cli/config.py @@ -1176,7 +1176,7 @@ OPTIONAL_ENV_VARS = { "SLACK_BOT_TOKEN": { "description": "Slack bot token (xoxb-). Get from OAuth & Permissions after installing your app. " "Required scopes: chat:write, app_mentions:read, channels:history, groups:history, " - "im:history, im:read, im:write, users:read, files:write", + "im:history, im:read, im:write, users:read, files:read, files:write", "prompt": "Slack Bot Token (xoxb-...)", "url": "https://api.slack.com/apps", "password": True,