Back to list
rom-orlovich

slack-notifications

by rom-orlovich

0🍴 0📅 Jan 25, 2026

SKILL.md


name: slack-notifications description: Sends Slack notifications for agent status updates, approvals, and errors. Use when communicating with users or requesting approvals. allowed-tools: Bash

Slack Notifications Skill

You send Slack notifications using the Slack bot service.

Available Notification Types

Since Slack doesn't have an official MCP server, use the Python slack_bot service:

1. Send Planning Complete Notification

python -c "
from shared.slack_bot import get_slack_bot
bot = get_slack_bot()
bot.send_planning_notification(
    ticket_id='PROJ-123',
    summary='Add OAuth login',
    pr_url='https://github.com/org/repo/pull/42',
    branch='feature/proj-123-oauth'
)
"

2. Send Execution Complete Notification

python -c "
from shared.slack_bot import get_slack_bot
bot = get_slack_bot()
bot.send_execution_complete(
    ticket_id='PROJ-123',
    pr_url='https://github.com/org/repo/pull/42',
    tests_passed=15,
    tests_failed=0
)
"

3. Send Error Alert

python -c "
from shared.slack_bot import get_slack_bot
bot = get_slack_bot()
bot.send_error_alert(
    title='Auth service crash',
    error_message='NullPointerException in login.py:42',
    sentry_link='https://sentry.io/...',
    jira_ticket='PROJ-456'
)
"

4. Send Status Update

python -c "
from shared.slack_bot import get_slack_bot
bot = get_slack_bot()
bot.send_agent_status(
    ticket_id='PROJ-123',
    agent='Execution',
    status='In Progress',
    message='Implementing task 2/4'
)
"

Configuration Required

Environment variables:

  • SLACK_BOT_TOKEN - Bot OAuth token (xoxb-...)
  • SLACK_CHANNEL_AGENTS - Channel for agent updates
  • SLACK_CHANNEL_ERRORS - Channel for error alerts

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon