communication-slack-message-posting
Sub-skill of communication: Slack Message Posting (+3).
Best use case
communication-slack-message-posting is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of communication: Slack Message Posting (+3).
Teams using communication-slack-message-posting should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/slack-message-posting/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How communication-slack-message-posting Compares
| Feature / Agent | communication-slack-message-posting | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Sub-skill of communication: Slack Message Posting (+3).
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Slack Message Posting (+3)
## Slack Message Posting
```bash
# See slack-api for complete patterns
# Simple webhook message
send_slack_webhook() {
local webhook_url="$SLACK_WEBHOOK_URL"
local message="$1"
curl -s -X POST "$webhook_url" \
-H "Content-Type: application/json" \
-d "{\"text\": \"$message\"}"
}
# Rich Block Kit message
send_slack_blocks() {
local channel="$1"
local blocks="$2"
curl -s -X POST "https://slack.com/api/chat.postMessage" \
-H "Authorization: Bearer $SLACK_BOT_TOKEN" \
-H "Content-Type: application/json" \
-d "{
\"channel\": \"$channel\",
\"blocks\": $blocks
}"
}
# Example Block Kit payload
blocks='[
{
"type": "header",
"text": {"type": "plain_text", "text": "Deployment Complete"}
},
{
"type": "section",
"fields": [
{"type": "mrkdwn", "text": "*Environment:*\nProduction"},
{"type": "mrkdwn", "text": "*Version:*\nv2.1.0"}
]
},
{
"type": "actions",
"elements": [
{"type": "button", "text": {"type": "plain_text", "text": "View Logs"}, "url": "https://logs.example.com"}
]
}
]'
send_slack_blocks "#deployments" "$blocks"
```
## Teams Message via Graph API
```bash
# See teams-api for complete patterns
# Send channel message
send_teams_message() {
local team_id="$1"
local channel_id="$2"
local message="$3"
curl -s -X POST "https://graph.microsoft.com/v1.0/teams/$team_id/channels/$channel_id/messages" \
-H "Authorization: Bearer $TEAMS_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d "{
\"body\": {
\"contentType\": \"html\",
\"content\": \"$message\"
}
}"
}
# Send adaptive card
send_teams_card() {
local webhook_url="$1"
local card="$2"
curl -s -X POST "$webhook_url" \
-H "Content-Type: application/json" \
-d "{
\"type\": \"message\",
\"attachments\": [{
\"contentType\": \"application/vnd.microsoft.card.adaptive\",
\"content\": $card
}]
}"
}
```
## Miro Board Operations
```bash
# See miro-api for complete patterns
# Create sticky note
create_sticky() {
local board_id="$1"
local content="$2"
local x="${3:-0}"
local y="${4:-0}"
curl -s -X POST "https://api.miro.com/v2/boards/$board_id/sticky_notes" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d "{
\"data\": {\"content\": \"$content\"},
\"position\": {\"x\": $x, \"y\": $y}
}"
}
# Create frame
create_frame() {
local board_id="$1"
local title="$2"
curl -s -X POST "https://api.miro.com/v2/boards/$board_id/frames" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d "{
\"data\": {\"title\": \"$title\"},
\"geometry\": {\"width\": 800, \"height\": 600}
}"
}
```
## Calendly Event Management
```bash
# See calendly-api for complete patterns
# List scheduled events
list_events() {
local user_uri="$1"
local min_time=$(date -u +%Y-%m-%dT%H:%M:%SZ)
curl -s "https://api.calendly.com/scheduled_events?user=$user_uri&min_start_time=$min_time" \
-H "Authorization: Bearer $CALENDLY_API_KEY"
}
# Get event details
get_event() {
local event_uuid="$1"
curl -s "https://api.calendly.com/scheduled_events/$event_uuid" \
-H "Authorization: Bearer $CALENDLY_API_KEY"
}
# Create webhook subscription
create_webhook() {
local organization="$1"
local callback_url="$2"
curl -s -X POST "https://api.calendly.com/webhook_subscriptions" \
-H "Authorization: Bearer $CALENDLY_API_KEY" \
-H "Content-Type: application/json" \
-d "{
\"url\": \"$callback_url\",
\"events\": [\"invitee.created\", \"invitee.canceled\"],
\"organization\": \"$organization\",
\"scope\": \"organization\"
}"
}
```Related Skills
job-posting-fit-analysis
Scrape specific job posting URLs, extract full details, score fit against practitioner's resume, rank by relevance, and prepare application pipeline. Use when user provides specific job URLs (e.g., from Rigzone, LinkedIn) and wants to know which ones are worth applying to.
slack-gif-creator
Create custom animated GIFs for Slack reactions and celebrations. Use for team milestones, custom emoji reactions, inside jokes, and workplace fun.
windmill-integration-with-database-and-slack
Sub-skill of windmill: Integration with Database and Slack.
n8n-integration-with-slack-google-sheets-and-email
Sub-skill of n8n: Integration with Slack, Google Sheets, and Email.
github-actions-integration-with-slack-notifications
Sub-skill of github-actions: Integration with Slack Notifications (+1).
activepieces-integration-with-notion-and-slack
Sub-skill of activepieces: Integration with Notion and Slack.
orcaflex-static-debug-common-error-messages
Sub-skill of orcaflex-static-debug: Common Error Messages.
openfoam-41-error-message-format
Sub-skill of openfoam: 4.1 Error Message Format (+2).
notion-api-integration-with-slack
Sub-skill of notion-api: Integration with Slack (+1).
memory-management-communication
Sub-skill of memory-management: Communication.
slack-gif-creator-design-guidelines
Sub-skill of slack-gif-creator: Design Guidelines (+2).
slack-gif-creator-dependencies
Sub-skill of slack-gif-creator: Dependencies.