steipete/clawdis2.2k installs
slack
Slack tool actions: send/read/edit/delete messages, react, pin/unpin, list pins/reactions/emoji, member info.
How do I install this agent skill?
npx skills add https://github.com/steipete/clawdis --skill slackIs this agent skill safe to install?
- Gen Agent Trust Hubpass
This skill provides standard Slack integration features such as managing messages, pins, and reactions. No security issues or malicious patterns were identified.
- Socketpass
No alerts
- Snykwarn
Risk: MEDIUM · 1 issue
- Runlayerwarn
1/1 file flagged
- ZeroLeakspass
Score: 93/100 · 2 sections analyzed
What does this agent skill do?
Slack
Use the slack tool. Reuse channelId and Slack timestamp message IDs from context when present.
Inputs
channelId: Slack channel ID.messageId: Slack timestamp, e.g.1712023032.1234.to:channel:<id>oruser:<id>for sends.emoji: Unicode or:name:for reactions.
Actions
{ "action": "sendMessage", "to": "channel:C123", "content": "Hello" }
{ "action": "readMessages", "channelId": "C123", "limit": 20 }
{
"action": "react",
"channelId": "C123",
"messageId": "1712023032.1234",
"emoji": ":white_check_mark:"
}
{ "action": "reactions", "channelId": "C123", "messageId": "1712023032.1234" }
{
"action": "editMessage",
"channelId": "C123",
"messageId": "1712023032.1234",
"content": "Updated text"
}
{ "action": "deleteMessage", "channelId": "C123", "messageId": "1712023032.1234" }
{ "action": "pinMessage", "channelId": "C123", "messageId": "1712023032.1234" }
{ "action": "unpinMessage", "channelId": "C123", "messageId": "1712023032.1234" }
{ "action": "listPins", "channelId": "C123" }
{ "action": "memberInfo", "userId": "U123" }
{ "action": "emojiList" }
Safety
- Confirm destructive deletes when context is unclear.
- Keep outbound messages short; avoid Markdown tables.
- Prefer thread/message IDs over fuzzy channel names.
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/steipete/clawdis/slack">View slack on skillZs</a>