Stats
Actions
Tags
From workflow-automation
Slack 채널에 알림 메시지를 전송합니다. "슬랙에 알려줘", "slack notify", "slack 보내줘" 같은 요청에 사용됩니다. $ARGUMENTS에 전송할 메시지 내용을 전달할 수 있습니다.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow-automation:slack-notifyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
1. `SLACK_WEBHOOK_URL` 환경변수가 설정되어 있는지 확인한다.
SLACK_WEBHOOK_URL 환경변수가 설정되어 있는지 확인한다.curl로 Slack Incoming Webhook에 JSON payload를 전송한다./workflow-automation:slack-notify 배포 완료되었습니다 ✅
/workflow-automation:slack-notify PR 리뷰 요청: https://github.com/...
.env 파일 또는 시스템 환경변수에 다음을 추가:
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/YOUR/WEBHOOK/URL
SLACK_CHANNEL=#general
curl -X POST "$SLACK_WEBHOOK_URL" \
-H 'Content-type: application/json' \
--data '{
"text": "$ARGUMENTS",
"username": "Claude Code Bot",
"icon_emoji": ":robot_face:"
}'
SLACK_WEBHOOK_URL이 없으면 설정 방법을 안내하고 중단한다.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub jungkhyun/workflow-automation-plugin