Agent skill · Frontend

slack

Slack tool actions: send/read/edit/delete messages, react, pin/unpin, list pins/reactions/emoji, member info.

Health-Yanggithub.com/Health-YangGitHub ↗
claude-codeNOASSERTION
Install
npx skills add Health-Yang/MineEcho --skill slack --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Path: vendor/openclaw-gateway/skills/slack/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 248
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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>` or `user:<id>` for sends. - `emoji`: Unicode or `:name:` for reactions. ## Actions ```json { "action": "sendMessage", "to": "channel:C123", "content": "Hello" } ``` ```json { "action": "readMessages", "channelId": "C123", "limit": 20 } ``` ```json { "action": "react", "channelId": "C123", "messageId": "1712023032.1234", "emoji": ":white_check_mark:" } ``` ```json { "action": "reactions", "channelId": "C123", "messageId": "1712023032.1234" } ``` ```json { "action": "editMessage", "channelId": "C123", "messageId": "1712023032.1234", "content": "Updated text" } ``` ```json { "action": "deleteMessage", "channelId": "C123", "messageId": "1712023032.1234" } ``` ```json { "action": "pinMessage", "channelId": "C123", "messageId": "1712023032.1234" } ``` ```json { "action": "unpinMessage", "channelId": "C123", "messageId": "1712023032.1234" } ``` ```json { "action": "listPins", "channelId": "C123" } ``` ```json { "action": "memberInfo", "userId": "U123" } ``` ```jso

What's inside
Steps it walks through
  1. Inputs
  2. Actions
  3. Safety
More from MineEcho
All skills →
About this skill
What does the slack skill do?

Slack tool actions: send/read/edit/delete messages, react, pin/unpin, list pins/reactions/emoji, member info.

How do I install it?

Run `npx skills add Health-Yang/MineEcho --skill slack --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From Health-Yang/MineEcho, a repository with 248 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going