Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,14 @@ CUSTOM_PROMPT="You are a DevOps assistant."

## Slack App Setup

### Create Slack App

You can create a Slack app from a manifest JSON file (e.g., slack_app_manifest.json).

Note that the manifest does not cover all app settings. You still need to:
- Create an app-level token and a bot token in the app’s settings pages.
- Enable direct messages for the bot under App Home. The Messages (DM) setting is not controlled by the manifest.

### Token Types

The application requires two types of tokens:
Expand Down
49 changes: 49 additions & 0 deletions slack_app_manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"display_information": {
"name": "<Your App Name>",
"description": "<Your App Description>",
"background_color": "#1c4ad6"
},
"features": {
"bot_user": {
"display_name": "<Your App Name>",
"always_online": true
}
},
"oauth_config": {
"scopes": {
"bot": [
"app_mentions:read",
"assistant:write",
"channels:history",
"channels:read",
"chat:write",
"groups:history",
"groups:read",
"im:history",
"im:read",
"im:write",
"im:write.topic",
"incoming-webhook",
"mpim:history",
"users.profile:read",
"users:read",
"lists:read"
]
}
},
"settings": {
"event_subscriptions": {
"bot_events": [
"app_mention",
"message.im"
]
},
"interactivity": {
"is_enabled": true
},
"org_deploy_enabled": false,
"socket_mode_enabled": true,
"token_rotation_enabled": false
}
}
Loading