🎯

slack

🎯Skill

from steipete/clawdis

VibeIndex|
What it does

Manages Slack interactions like sending messages, reacting, pinning, and fetching member info using a configured bot token.

πŸ“¦

Part of

steipete/clawdis(48 items)

slack

Installation

npm installInstall npm package
npm install -g openclaw@latest
git cloneClone repository
git clone https://github.com/openclaw/openclaw.git
pnpmRun with pnpm
pnpm install
πŸ“– Extracted from docs: steipete/clawdis
11Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Use when you need to control Slack from OpenClaw via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.

Overview

# Slack Actions

Overview

Use slack to react, manage pins, send/edit/delete messages, and fetch member info. The tool uses the bot token configured for OpenClaw.

Inputs to collect

  • channelId and messageId (Slack message timestamp, e.g. 1712023032.1234).
  • For reactions, an emoji (Unicode or :name:).
  • For message sends, a to target (channel: or user:) and content.

Message context lines include slack message id and channel fields you can reuse directly.

Actions

Action groups

| Action group | Default | Notes |

| ------------ | ------- | ---------------------- |

| reactions | enabled | React + list reactions |

| messages | enabled | Read/send/edit/delete |

| pins | enabled | Pin/unpin/list |

| memberInfo | enabled | Member info |

| emojiList | enabled | Custom emoji list |

React to a message

```json

{

"action": "react",

"channelId": "C123",

"messageId": "1712023032.1234",

"emoji": "βœ…"

}

```

List reactions

```json

{

"action": "reactions",

"channelId": "C123",

"messageId": "1712023032.1234"

}

```

Send a message

```json

{

"action": "sendMessage",

"to": "channel:C123",

"content": "Hello from OpenClaw"

}

```

Edit a message

```json

{

"action": "editMessage",

"channelId": "C123",

"messageId": "1712023032.1234",

"content": "Updated text"

}

```

Delete a message

```json

{

"action": "deleteMessage",

"channelId": "C123",

"messageId": "1712023032.1234"

}

```

Read recent messages

```json

{

"action": "readMessages",

"channelId": "C123",

"limit": 20

}

```

Pin a message

```json

{

"action": "pinMessage",

"channelId": "C123",

"messageId": "1712023032.1234"

}

```

Unpin a message

```json

{

"action": "unpinMessage",

"channelId": "C123",

"messageId": "1712023032.1234"

}

```

List pinned items

```json

{

"action": "listPins",

"channelId": "C123"

}

```

Member info

```json

{

"action": "memberInfo",

"userId": "U123"

}

```

Emoji list

```json

{

"action": "emojiList"

}

```

Ideas to try

  • React with βœ… to mark completed tasks.
  • Pin key decisions or weekly status updates.

More from this repository10

🎯
gog🎯Skill

Manages Gmail, Calendar, Drive, Contacts, Sheets, and Docs via CLI with OAuth-based Google Workspace interactions.

🎯
weather🎯Skill

Retrieves current weather and forecasts for any location using free services, with multiple output formats and no API key required.

🎯
summarize🎯Skill

Quickly summarizes URLs, local files, and YouTube links using AI models with flexible extraction options.

🎯
coding-agent🎯Skill

Runs coding agents like Claude Code or Codex in bash with PTY support, enabling programmatic control and background processing.

🎯
mcporter🎯Skill

Streamlines interaction with MCP servers through CLI, enabling listing, configuration, authentication, and direct tool calls via HTTP or stdio.

🎯
apple-reminders🎯Skill

Manages Apple Reminders via CLI, enabling listing, adding, editing, completing, and deleting tasks with flexible date and list filtering.

🎯
gifgrep🎯Skill

Searches and downloads GIFs from Tenor/Giphy with a CLI/TUI, enabling preview, extraction, and easy sharing.

🎯
nano-pdf🎯Skill

Edits PDFs using natural language instructions, allowing precise page-level modifications with simple CLI commands.

🎯
obsidian🎯Skill

Automates interactions with Obsidian vaults, enabling searching, creating, moving, and managing Markdown notes via obsidian-cli.

🎯
peekaboo🎯Skill

Automates macOS UI interactions by capturing screens, targeting elements, driving input, and managing apps via a powerful CLI tool.