Awesome-omni-skill slack-integration
Slack MCP server integration patterns. Use when setting up team notifications, PR alerts, or CI status updates via Slack bot token
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/devops/slack-integration" ~/.claude/skills/diegosouzapw-awesome-omni-skill-slack-integration && rm -rf "$T"
manifest:
skills/devops/slack-integration/SKILL.mdsource content
Slack Integration
Overview
Integrate Slack notifications into your Claude Code workflow using the Slack MCP server. Receive team notifications for PR lifecycle events, review completions, and CI status.
Configuration
Slack MCP Server Setup
Add to your MCP configuration:
{ "mcpServers": { "slack": { "command": "npx", "args": ["-y", "@anthropic/mcp-slack"], "env": { "SLACK_BOT_TOKEN": "xoxb-your-bot-token", "SLACK_CHANNEL": "#dev-notifications" } } } }
Required Bot Permissions
- Post messageschat:write
- List channelschannels:read
- Add reactionsreactions:write
PR Lifecycle Notifications
| Event | Message | When |
|---|---|---|
| PR Created | "PR #123 opened: Title" | After |
| Review Complete | "PR #123 reviewed: APPROVED" | After |
| PR Merged | "PR #123 merged to main" | After merge |
| CI Failed | "CI failed on PR #123" | On check failure |
Integration with CC 2.1.20
CC 2.1.20's
/commit-push-pr flow can auto-post to Slack:
- Commit changes
- Push branch
- Create PR
- Post Slack notification with PR link
Usage Patterns
Post-Review Notification
After completing a PR review:
mcp__slack__post_message({ channel: "#dev-reviews", text: "PR #123 reviewed: APPROVED - 0 blockers, 2 suggestions" })
Post-Create Notification
After creating a PR:
mcp__slack__post_message({ channel: "#dev-prs", text: "New PR: #123 - feat: Add user auth | 5 files, +200/-50" })
Related Skills
- PR review with optional Slack notificationreview-pr
- PR creation with optional Slack notificationcreate-pr
- Release announcementsrelease-management