askill
slack

slackSafety 70Repository

Send messages, react, pin items, and manage Slack channels and DMs.

3 stars
1.2k downloads
Updated 2/22/2026

Package Files

Loading files...
SKILL.md

Slack

Control Slack from openrappter.

Send a Message

curl -s -X POST "https://slack.com/api/chat.postMessage" \
  -H "Authorization: Bearer $SLACK_BOT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"channel": "C0123456", "text": "Hello from openrappter!"}'

React to a Message

curl -s -X POST "https://slack.com/api/reactions.add" \
  -H "Authorization: Bearer $SLACK_BOT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"channel": "C0123456", "name": "thumbsup", "timestamp": "1234567890.123456"}'

List Channels

curl -s "https://slack.com/api/conversations.list" \
  -H "Authorization: Bearer $SLACK_BOT_TOKEN" | jq '.channels[] | {name, id}'

Pin a Message

curl -s -X POST "https://slack.com/api/pins.add" \
  -H "Authorization: Bearer $SLACK_BOT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"channel": "C0123456", "timestamp": "1234567890.123456"}'

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

50/100Analyzed 2/25/2026

Moderate-quality skill covering 4 Slack operations with clear curl examples. Missing promised DM/channel management functionality, lacks setup instructions for authentication and parameter acquisition. Located in nested project-specific path indicating internal-only use. Actionable for users who already understand Slack API but requires additional context for standalone use.

70
65
55
45
55

Metadata

Licenseunknown
Version-
Updated2/22/2026
Publisherkody-w

Tags

api