← Back to Skills Marketplace
1630
Downloads
1
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install slack-hub-skill
Description
Send messages, reply in threads, search workspace content, and list public channels using Slack Bot integration with rate-limit handling.
Usage Guidance
This skill implements Slack messaging/search and needs a SLACK_BOT_TOKEN, but the package metadata doesn't declare that requirement and there are a few inconsistencies you should resolve before installing:
- Confirm the SLACK_BOT_TOKEN: the code reads SLACK_BOT_TOKEN from the environment. Only provide a token with the minimal scopes required (e.g., chat:write, search:read, channels:read) and avoid full admin tokens. Understand that a token with broad scopes can read private channels and post messages.
- .env vs environment: SKILL.md asks you to put the token in a .env file, but the code doesn't load .env. Ensure your runtime will load that file (or set the env var securely in the agent environment) rather than leaving secrets in an unprotected file.
- Dependency/install: skill.json lists 'requests' but there is no install spec. Make sure the runtime includes the requests package or install it in an isolated environment before use.
- Claims vs implementation: SKILL.md claims rate-limit handling and threading support; the code does not implement explicit rate-limit backoff logic and threading is only included insofar as chat.postMessage accepts thread_ts. Ask the author to clarify or update the code/README.
- Review token scopes and audit: inspect or run the code in an isolated environment (or read the source, which appears to call only slack.com endpoints) and verify no external endpoints aside from slack.com are used. If you proceed, rotate the bot token afterward and monitor Slack app activity/logs.
If the author can correct the metadata (declare SLACK_BOT_TOKEN as a required credential), add clear install steps for dependencies, and either implement or remove the claimed rate-limit handling, this package would be internally coherent. Until then, treat it as suspicious and verify details before granting it a production token.
Capability Analysis
Type: OpenClaw Skill
Name: slack-hub-skill
Version: 0.1.0
The OpenClaw skill bundle for Slack integration is classified as benign. All files, including `SKILL.md`, `slack_hub.py`, and `skill.json`, align with the stated purpose of providing Slack messaging and search capabilities. The `slack_hub.py` script correctly retrieves the `SLACK_BOT_TOKEN` from environment variables and makes network requests exclusively to the official Slack API (https://slack.com/api). The `skill.json` file explicitly declares the necessary 'network' and 'env_vars' permissions, which are justified by the code's functionality. There is no evidence of prompt injection attempts in `SKILL.md`, unauthorized data exfiltration, malicious execution, persistence mechanisms, or obfuscation.
Capability Assessment
Purpose & Capability
The name, SKILL.md, and slack_hub.py all implement a Slack integration (sending messages, searching, listing channels) which is consistent with the stated purpose — but the registry metadata at the top of the package declares no required env vars while both SKILL.md and the code require a SLACK_BOT_TOKEN. That mismatch should be resolved.
Instruction Scope
SKILL.md instructs storing SLACK_BOT_TOKEN in a .env file and promises rate-limit handling. The code does read SLACK_BOT_TOKEN via os.getenv (so it needs the env var), but there is no .env loader in the code (e.g., python-dotenv) and there is no actual rate-limit handling implemented. The instructions also imply access to workspace searches and channel lists; the code will call Slack endpoints and — depending on token scopes — could access private channels. These mismatches are scope/behavior inconsistencies that could lead to unexpected credential placement or overprivileged access.
Install Mechanism
This is instruction-only (no install spec). skill.json lists 'requests' as a dependency, but there is no install step or packaging guidance. That means the runtime must already provide the requests package; otherwise the skill will fail. Not an immediate security red flag, but an operational hole that should be fixed.
Credentials
The code requires a single sensitive credential (SLACK_BOT_TOKEN) which is appropriate for a Slack integration. However, the package metadata (registry summary) does not declare this requirement even though skill.json includes env_vars in permissions and SKILL.md explicitly requires the token. The token grants the skill the ability to read/search and post on behalf of the bot — if the token has broad scopes it could access private channels or send messages. The requested secret is proportionate for Slack, but the lack of clear declaration and guidance about minimal scopes is concerning.
Persistence & Privilege
No 'always: true' and model invocation is not disabled, which is expected and appropriate. The skill does not attempt to modify other skill configs or request permanent system-wide presence.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install slack-hub-skill - After installation, invoke the skill by name or use
/slack-hub-skill - Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.0
Initial release of Slack Hub Skill for OpenClaw:
- Professional Slack integration with messaging, threading, and workspace-wide search.
- Send messages to channels or users, including threaded replies.
- Search messages or files across the workspace.
- List all public channels in the workspace.
- Handles Slack API rate limiting for high-volume environments.
Metadata
Frequently Asked Questions
What is Slack Hub Skill?
Send messages, reply in threads, search workspace content, and list public channels using Slack Bot integration with rate-limit handling. It is an AI Agent Skill for Claude Code / OpenClaw, with 1630 downloads so far.
How do I install Slack Hub Skill?
Run "/install slack-hub-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Slack Hub Skill free?
Yes, Slack Hub Skill is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Slack Hub Skill support?
Slack Hub Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Slack Hub Skill?
It is built and maintained by IcyFrosty (@icyfrosty); the current version is v0.1.0.
More Skills