Slack setup
Skill DigitalPine/claude-skills/plugins/personal-slack-bot/skills/slack-setup
Curated Claude Code plugins by Digital Pine. Framework setup, auditing, and modernization skills.
npx -y skills add DigitalPine/claude-skills --skill slack-setupAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Set up a personal Slack bot — create the app, configure scopes, store the token, verify the connection.
SKILL.md
1.8 KB, as published. Nobody here has run it
Slack Bot Setup
Goal
Get the user from zero to a working personal Slack bot. By the end, they have a Slack app installed in their workspace, a bot token in their shell profile, and a verified connection.
What Needs to Happen
- Choose a bot display name — this becomes the app name and bot username in Slack
- Create a Slack app from manifest — the template is at
skills/slack-setup/assets/slack-app-manifest.json(relative to plugin root). Replace{{BOT_NAME}}with their chosen name. The manifest includes 16 bot scopes covering read/write for messages, channels, users, files, pins, and reactions. - Install the app to their workspace — this happens in the Slack admin UI at api.slack.com
- Store the Bot User OAuth Token — goes in
~/.zshrcasexport SLACK_BOT_TOKEN="xoxb-...". This is the only auth method the MCP server supports. - Verify the connection — DM the user in Slack (not a public channel). Use
post_messageto their user's DM channel. This proves the token works and they see the bot come alive.
Constraints
- Never hardcode the token in any committed file
- Check
echo $SLACK_BOT_TOKENfirst — skip to verify if they're already set up - The manifest has 16 scopes. Don't add or remove scopes without explaining why.
- Chrome automation is available for co-piloting the Slack admin UI if the user wants help navigating it — offer but don't assume
After Setup
Show them what they can do. The plugin gives them 15 tools across messaging, reactions, channels, users, and files. All messages go through the slack-format agent automatically.