Install
$ agentstack add skill-digitalpine-claude-skills-slack-setup ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
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.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: DigitalPine
- Source: DigitalPine/claude-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.