# Send Slack Actions to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "geeksdobyte-slack-botskill",
    "name": "Slack Actions",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/RK905/geeksdobyte-slack-botskill",
    "canonicalUrl": "https://clawhub.ai/RK905/geeksdobyte-slack-botskill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/geeksdobyte-slack-botskill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=geeksdobyte-slack-botskill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/geeksdobyte-slack-botskill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/geeksdobyte-slack-botskill",
    "downloadUrl": "https://openagent3.xyz/downloads/geeksdobyte-slack-botskill",
    "agentUrl": "https://openagent3.xyz/skills/geeksdobyte-slack-botskill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/geeksdobyte-slack-botskill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/geeksdobyte-slack-botskill/agent.md"
  }
}
```
## Documentation

### Overview

The Slack Actions Skill enables Clawdbot to securely interact with Slack channels and direct messages using a Bot OAuth token.

This skill allows agents to:

Send, edit, and delete messages
Add and list reactions
Pin and unpin messages
Read recent channel history
Retrieve member information
List workspace emojis

All actions are executed using the permissions granted to the configured bot account.

### Purpose & Capability

This skill enables authenticated Slack operations using a Bot OAuth token supplied through the SLACK_BOT_TOKEN environment variable.

With valid credentials, the skill can:

Manage messages and reactions
Maintain pinned references
Retrieve basic user metadata
Support lightweight workflow automation

The skill operates strictly within the authorization scope of the configured Slack bot.

### Required Environment Variable

This skill requires a Slack Bot User OAuth token.

Before use, configure:

SLACK_BOT_TOKEN

Example:

export SLACK_BOT_TOKEN="xoxb-xxxxxxxxxxxx-xxxxxxxxxxxx-xxxxxxxxxxxx"

Or in .env format:

SLACK_BOT_TOKEN=xoxb-xxxxxxxxxxxx-xxxxxxxxxxxx-xxxxxxxxxxxx

### Token Requirements

The token must include the following OAuth scopes:

chat:write
channels:read
channels:history
reactions:write
pins:write
users:read
emoji:read

Additional scopes may be required depending on workspace policies.

### Credential Storage

Tokens must be stored only in environment variables
Tokens must never be hardcoded
Tokens must never be logged
Tokens must not be exposed in outputs

If SLACK_BOT_TOKEN is missing, invalid, or revoked, this skill must not execute.

### Initial Setup

To configure this skill:

Create a Slack App in your workspace
Enable Bot Token authentication
Assign required OAuth scopes
Install the app to the workspace
Copy the Bot User OAuth token
Store the token in SLACK_BOT_TOKEN
Restart the agent

After setup, the skill becomes available for execution.

### Credential Constraints

Only Bot User tokens (xoxb-) are supported
User tokens (xoxp-) are not permitted
Tokens must belong to a single workspace
Cross-workspace tokens are unsupported
Tokens must be rotated periodically
Tokens must comply with organizational security policies

Unauthorized credential usage is prohibited.

### When to Use This Skill

Activate this skill when the user requests:

Sending messages to Slack
Reacting to messages
Editing or deleting content
Pinning or unpinning messages
Reading recent messages
Looking up users
Viewing emojis

Example triggers:

“Send this to #engineering.”
“React with a checkmark.”
“Pin that message.”
“Who is U123?”

### Message Targeting

channelId — Slack channel ID (ex: C1234567890)
messageId — Slack timestamp (ex: 1712023032.1234)

### Reactions

emoji — Unicode emoji or :name: format

### Sending Messages

to — channel:<id> or user:<id>
content — Message text

Message context may contain reusable fields such as channel and slack message id.

### Supported Action Groups

GroupStatusDescriptionreactionsEnabledAdd and list reactionsmessagesEnabledSend, edit, delete, read messagespinsEnabledManage pinned itemsmemberInfoEnabledRetrieve user profilesemojiListEnabledList custom emojis

### React to a Message

{
  "action": "react",
  "channelId": "C123",
  "messageId": "1712023032.1234",
  "emoji": "✅"
}

### List Reactions

{
  "action": "reactions",
  "channelId": "C123",
  "messageId": "1712023032.1234"
}

### Send a Message

{
  "action": "sendMessage",
  "to": "channel:C123",
  "content": "Hello from Clawdbot"
}

### Edit a Message

{
  "action": "editMessage",
  "channelId": "C123",
  "messageId": "1712023032.1234",
  "content": "Updated text"
}

### Delete a Message

{
  "action": "deleteMessage",
  "channelId": "C123",
  "messageId": "1712023032.1234"
}

### Read Recent Messages

{
  "action": "readMessages",
  "channelId": "C123",
  "limit": 20
}

### Pin a Message

{
  "action": "pinMessage",
  "channelId": "C123",
  "messageId": "1712023032.1234"
}

### Unpin a Message

{
  "action": "unpinMessage",
  "channelId": "C123",
  "messageId": "1712023032.1234"
}

### List Pinned Items

{
  "action": "listPins",
  "channelId": "C123"
}

### Get Member Information

{
  "action": "memberInfo",
  "userId": "U123"
}

### List Workspace Emojis

{
  "action": "emojiList"
}

### Behavioral Rules

Confirm IDs before destructive actions
Never delete messages without explicit user approval
Prefer reactions over messages for acknowledgments
Validate inputs before execution
Never expose credentials

### Mark Task Complete

{
  "action": "react",
  "channelId": "C123",
  "messageId": "1712023032.1234",
  "emoji": "✅"
}

### Post Status Update

{
  "action": "sendMessage",
  "to": "channel:C456",
  "content": "Deployment completed successfully."
}

### Save Important Message

{
  "action": "pinMessage",
  "channelId": "C123",
  "messageId": "1712023032.1234"
}

### Instruction Scope

This skill is limited to Slack workspace operations authorized by the configured bot token.

It does NOT:

Create Slack applications
Modify workspace settings
Manage billing
Bypass permissions
Escalate privileges

All operations respect Slack API constraints.

### Compliance

This skill follows Slack API Terms of Service and OAuth security guidelines.

Users are responsible for obtaining organizational approval prior to deployment.

### Best Practices

Use reactions for lightweight workflows
Pin long-term references
Keep messages concise
Avoid bulk destructive actions
Rotate credentials regularly
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: RK905
- Version: 0.1.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/geeksdobyte-slack-botskill)
- [Send to Agent page](https://openagent3.xyz/skills/geeksdobyte-slack-botskill/agent)
- [JSON manifest](https://openagent3.xyz/skills/geeksdobyte-slack-botskill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/geeksdobyte-slack-botskill/agent.md)
- [Download page](https://openagent3.xyz/downloads/geeksdobyte-slack-botskill)