Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

geeksdobyte-slack-botskillgeeksdobyte Slack botskill 安全

Agent Skill

用于处理 Slack 工作区里的频道、消息、线程、用户和通知信息。它适合让 Agent 查询团队沟通记录、整理上下文、回复线程或辅助协作提醒。使用时需要确认机器人或用户 token 是否具备目标频道访问权,私有频道和历史消息通常有额外权限限制;发送消息、@成员或批量读取对话时,应避免泄露内部讨论和敏感工作信息。

总安装

21,258

周安装

877

GitHub Stars

公开资料未说明

下载量

6,946
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:geeksdobyte-slack-botskill(geeksdobyte Slack botskill 安全)
来源仓库:https://github.com/rk905/geeksdobyte-slack-botskill
安装命令:
openclaw skills install geeksdobyte-slack-botskill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install geeksdobyte-slack-botskill

简介

允许与 Slack 进行经过身份验证的交互,以便通过安全机器人令牌发送、编辑、删除、响应和管理消息和 pin。

SKILL.md

name
slack-actions
summary
Control Slack messaging, reactions, pins, and member information using Clawdbot.
description
Enables authenticated interaction with Slack for sending, editing, deleting, reacting to, and managing messages and pins via a secure bot token.
tags
["slack","automation","collaboration","productivity","chatops"]
version
1.2.0
author
Rayen Kamta / GEEKSDOBYTE LLC / GEEKSDOBYTE.COM

Slack Actions Skill

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.


Authentication & Configuration

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:

  1. Create a Slack App in your workspace
  2. Enable Bot Token authentication
  3. Assign required OAuth scopes
  4. Install the app to the workspace
  5. Copy the Bot User OAuth token
  6. Store the token in SLACK_BOT_TOKEN
  7. 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?”

Required Inputs

Message Targeting

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

Reactions

  • emoji — Unicode emoji or :name: format

Sending Messages

  • tochannel:<id> or user:<id>
  • content — Message text

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


Supported Action Groups

GroupStatusDescription
reactionsEnabledAdd and list reactions
messagesEnabledSend, edit, delete, read messages
pinsEnabledManage pinned items
memberInfoEnabledRetrieve user profiles
emojiListEnabledList custom emojis

Available Actions

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

Usage Examples

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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.42%
按下载量换算5,169

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills