Configure Slack channel tokens (bot token + app-level token)
Scanned 5/29/2026
Install to Claude Code
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill configure --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Configure?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jeremylongshore-configure)More formats (shields.io, HTML) on the badges page.
---
name: configure
description: Configure Slack channel tokens (bot token + app-level token)
version: 1.0.0
author: Jeremy Longshore <jeremy@intentsolutions.io>
license: MIT
user-invocable: true
argument-hint: "<bot-token> <app-token>"
allowed-tools: [Read, Write, "Bash(cmd:chmod)"]
---
# /slack-channel:configure
Configure the Slack channel with your bot token and app-level token.
## Usage
```
/slack-channel:configure <xoxb-bot-token> <xapp-app-token>
```
## Instructions
1. Parse the two arguments from `$ARGUMENTS`:
- First token must start with `xoxb-` (Bot User OAuth Token)
- Second token must start with `xapp-` (App-Level Token)
2. If either token is missing or has the wrong prefix, show this error and stop:
```
Error: Two tokens required.
- Bot token (starts with xoxb-) from OAuth & Permissions
- App token (starts with xapp-) from Socket Mode settings
Usage: /slack-channel:configure xoxb-... xapp-...
```
3. Create the state directory if it doesn't exist:
```
~/.claude/channels/slack/
```
4. Write the `.env` file at `~/.claude/channels/slack/.env`:
```
SLACK_BOT_TOKEN=<bot-token>
SLACK_APP_TOKEN=<app-token>
```
5. Set file permissions to owner-only:
```bash
chmod 600 ~/.claude/channels/slack/.env
```
6. Confirm success:
```
Slack channel configured.
Start Claude with the Slack channel:
claude --channels plugin:slack-channel@claude-code-plugins
Or for development:
claude --dangerously-load-development-channels server:slack
```
## Security
- Never echo the tokens back in the confirmation message
- Never log tokens to stdout or any file other than `.env`
- Always set 0o600 permissions on the `.env` file
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!