ab-test-setup
Design, plan, and analyze A/B tests with statistical rigor. Use when the user asks about A/B testing, split testing, experiment design, statistical…
Send messages and rich content to Slack channels via webhooks or Bot API. Use Block Kit for formatted announcements, marketing reports, and community updates. Trigger phrases: "post to slack", "slack message", "slack webhook", "slack notification", "slack announcement", "send to
$ npx -y skills add openclaudia/openclaudia-skills --skill slack-bot --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/slack-botContext preview
The summary Claude sees to decide when to auto-load this skill.
Send messages and rich content to Slack channels via webhooks or Bot API. Use Block Kit for formatted announcements, marketing reports, and community updates. Trigger phrases: "post to slack", "slack message", "slack webhook", "slack notification", "slack announcement", "send to
name: slack-bot description: > Send messages and rich content to Slack channels via webhooks or Bot API. Use Block Kit for formatted announcements, marketing reports, and community updates. Trigger phrases: "post to slack", "slack message", "slack webhook", "slack notification", "slack announcement", "send to slack", "slack marketing", "slack update", "slack channel". allowed-tools: - Bash - WebFetch - WebSearch
Send messages and rich content to Slack channels using Incoming Webhooks or the Slack Web API. Build formatted announcements, marketing reports, metrics dashboards, and community updates with Block Kit.
Requires either `SLACK_WEBHOOK_URL` or `SLACK_BOT_TOKEN` set in `.env`, `.env.local`, or `~/.claude/.env.global`.
source ~/.claude/.env.global 2>/dev/null source .env 2>/dev/null source .env.local 2>/dev/null if [ -n "$SLACK_WEBHOOK_URL" ]; then echo "SLACK_WEBHOOK_URL is set. Webhook mode available." elif [ -n "$SLACK_BOT_TOKEN" ]; then echo "SLACK_BOT_TOKEN is set. Web API mode available." else echo "Neither SLACK_WEBHOOK_URL nor SLACK_BOT_TOKEN is set." echo "See the Setup Guide below to configure Slack credentials." fi
If neither variable is set, instruct the user to follow the Setup Guide section below.
---
Incoming Webhooks are the fastest way to post messages. They require no OAuth scopes and are scoped to a single channel.
1. Go to https://api.slack.com/apps and click **Create New App** > **From scratch**. 2. Name the app (e.g., "Marketing Bot") and select your workspace. 3. In the left sidebar, click **Incoming Webhooks** and toggle it **On**. 4. Click **Add New Webhook to Workspace** at the bottom. 5. Select the channel to post to and click **Allow**. 6. Copy the Webhook URL (starts with `https://hooks.slack.com/services/...`). 7. Add it to your environment:
echo 'SLACK_WEBHOOK_URL=https://hooks.slack.com/services/T.../B.../xxxx' >> .env
**Limitations:** One webhook per channel. Cannot read messages, list channels, or reply to threads programmatically (you must know the `thread_ts` from a prior API response).
Bot tokens give access to the full Slack Web API: post to any channel the bot is in, reply to threads, list channels, upload files, and more.
1. Go to https://api.slack.com/apps and click **Create New App** > **From scratch**. 2. Name the app and select your workspace. 3. In the left sidebar, click **OAuth & Permissions**. 4. Under **Bot Token Scopes**, add these scopes:
5. Click **Install to Workspace** at the top and authorize. 6. Copy the **Bot User OAuth Token** (starts with `xoxb-`). 7. Add it to your environment:
echo 'SLACK_BOT_TOKEN=xoxb-your-token-here' >> .env
8. Invite the bot to the channels it should post in: type `/invite @YourBotName` in each channel.
**Optional:** Set a default channel for convenience:
echo 'SLACK_DEFAULT_CHANNEL=#marketing' >> .env
---
curl -s -X POST "$SLACK_WEBHOOK_URL" \
-H "Content-Type: application/json" \
-d '{
"text": "Hello from the marketing bot!"
}'curl -s -X POST "$SLACK_WEBHOOK_URL" \
-H "Content-Type: application/json" \
-d '{
"text": "New blog post published!",
"username": "Marketing Bot",
"icon_emoji": ":mega:"
}'curl -s -X POST "$SLACK_WEBHOOK_URL" \
-H "Content-Type: application/json" \
-d '{
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "New Product Launch"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Product X* is now live! Check out the announcement."
}
},
{
"type": "divider"
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Read the full announcement on our blog."
},
"accessory": {
"type": "button",
"text": {
"type": "plain_text",
"text": "Read More"
},
"url": "https://example.com/blog/launch"
}
}
]
}'---
The Web API provides full control over message delivery, threading, channel management, and more.
All requests go to `https://slack.com/api/` with the header `Authorization: Bearer {SLACK_BOT_TOKEN}`.
curl -s -X POST "https://slack.com/api/chat.postMessage" \
-H "Authorization: Bearer ${SLACK_BOT_TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"channel": "#marketing",
"text": "Weekly metrics report is ready!",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Weekly Marketing Metrics"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Here are the numbers for this week."
}
}
]
}'The response includes a `ts` (timestamp) field which identifies the message. Save this value for threading replies:
# Post and capture the message timestamp for threading
RESPONSE=$(curl -s -X POST "https://slack.com/api/chat.postMessage" \
-H "Authorization: Bearer ${SLACK_BOT_TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"channel": "#marketing",
"text": "Thread parent message"
}')
MESSAGE_TS=$77 open-source marketing skills for Claude Code, Codex, and other AI coding agents. SEO, content, email, ads, analytics, and growth.
Repo: openclaudia/openclaudia-skills
Design, plan, and analyze A/B tests with statistical rigor. Use when the user asks about A/B testing, split testing, experiment design, statistical…
Build and manage an affiliate marketing program. Use when the user says "affiliate program", "affiliate marketing", "affiliate partners", "referral…
Manages Ahrefs API usage in Python using `ahrefs-python` library. Use when working with SEO / marketing related tasks or with data including backlinks,…
Generate an AI Citations Report (GEO) for a domain — which AI-search prompts cite the site across Google AI Overview and ChatGPT, plus organic-traffic context…
Generate images using AI (OpenAI GPT Image or Stability AI). Use when the user asks to generate an image, create an AI image, make an illustration, or produce…
Research and enrich B2B leads using the Apollo.io API. Use when the user says "find leads", "prospect research", "company enrichment", "find decision makers",…