# Build a Slack AI Agent with nanobot This guide connects nanobot to Slack through Socket Mode. No public webhook URL is required for the first working setup. ## What this guide builds - a Slack app with Socket Mode - a bot token and app-level token - the `slack` channel enabled in nanobot - a DM or mention test from an allowed Slack user ## Prerequisites - A working nanobot reply: ```bash nanobot agent -m "Hello!" ``` - Permission to create a Slack app in a workspace. - Your Slack user ID. ## Install nanobot ```bash python -m pip install nanobot-ai nanobot onboard --wizard ``` ## Enable the Slack channel Install the optional channel dependency: ```bash nanobot plugins enable slack ``` In Slack, create an app, enable Socket Mode, create an app-level token with `connections:write`, add bot scopes, subscribe to bot events, and install the app to your workspace. Merge this snippet into `~/.nanobot/config.json`: ```json { "channels": { "slack": { "enabled": true, "botToken": "xoxb-...", "appToken": "xapp-...", "allowFrom": ["YOUR_SLACK_USER_ID"], "groupPolicy": "mention" } } } ``` ## Run nanobot gateway ```bash nanobot channels status nanobot gateway ``` ## Test a message DM the Slack bot directly, or mention it in a channel: ```text @nanobot Hello from Slack ``` ## Security notes - Keep `groupPolicy` as `mention` unless the bot is intentionally listening to every channel message. - Use `groupAllowFrom` with allowlist mode for approved channels. - Reinstall the Slack app after changing scopes. - Keep bot and app tokens out of committed config files. ## Troubleshooting - If Socket Mode fails, confirm the app-level token starts with `xapp-`. - If the bot cannot send files, add `files:write`, reinstall the app, and restart nanobot. - If channel messages are ignored, check event subscriptions and group policy. ## Next: memory, automations, MCP tools - [Chat Apps reference](../chat-apps.md) - [Configure web search](./configure-web-search.md) - [Long-running AI Agent](./long-running-ai-agent.md) - [Deployment](../deployment.md)