Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

slack-automationSlack 自动化

Agent Skill

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

总安装

4,272

周安装

178

GitHub Stars

11

下载量

1,424
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:slack-automation(Slack 自动化)
来源仓库:https://github.com/casper-studios/casper-marketplace
仓库路径:skills/slack-automation
安装命令:
npx skills add https://github.com/casper-studios/casper-marketplace --skill slack-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/casper-studios/casper-marketplace --skill slack-automation

简介

slack-automation 读取 Slack 频道消息、线程与用户信息辅助团队协作分析。

  • 支持按关键词搜索历史对话、创建新频道与分类分析消息内容主题。
  • 所有操作默认只读,创建频道除外,确保符合企业通信安全政策要求。
  • 私有频道与近期消息访问需额外 bot token 权限,历史数据可能受保留策略限制。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Slack Automation

Overview

Interact with Slack workspaces for channel management, message reading, and content analysis. All operations are read-only unless creating channels.

Quick Decision Tree

What do you need?
│
├── Search for channels by name
│   └── references/search.md
│   └── Script: scripts/slack_search.py search
│
├── Read messages from a channel
│   └── references/fetch-news.md
│   └── Script: scripts/fetch_slack_news.py
│
├── Create a new channel
│   └── references/create-channel.md
│   └── Script: scripts/create_slack_channel.py
│
└── Categorize/analyze messages
    └── references/categorize.md
    └── Script: scripts/categorize_slack_messages.py

Environment Setup

# Required in .env
SLACK_BOT_TOKEN=xoxb-your-bot-token

Required Bot Scopes

ScopePurpose
channels:readList public channels
channels:historyRead public channel messages
groups:readList private channels
groups:historyRead private channel messages
channels:manageCreate channels

Common Usage

Search Channels

python scripts/slack_search.py search "internal" --limit 10

Read Channel Messages

python scripts/slack_search.py read "internal-client" --days 7

Create Channel

python scripts/create_slack_channel.py "project-alpha" --private

Channel Naming Pattern

For client channels: internal-{client-name}

  • e.g., internal-microsoft, internal-acme-corp

Cost

Free - Slack API has no per-request cost. Rate limited to ~50 requests/minute.

Security Notes

Credential Handling

  • Store SLACK_BOT_TOKEN in .env file (never commit to git)
  • Bot tokens start with xoxb- - never expose in logs or output
  • Rotate tokens via Slack App settings if compromised
  • Use environment variables, not hardcoded values

Data Privacy

  • Messages may contain sensitive internal communications
  • Avoid storing message content in persistent logs
  • Use message links/IDs for references instead of copying content
  • Consider data retention policies for exported messages
  • User profiles include PII (names, emails, profile photos)

Access Scopes

  • Request minimum required scopes for your use case:

- channels:read - List public channels (read-only) - channels:history - Read public channel messages (read-only) - groups:read - List private channels bot is in (read-only) - groups:history - Read private channel messages (read-only) - channels:manage - Create channels (write access)

  • Bot can only access channels it has been invited to
  • Review scopes at: Slack App Settings > OAuth & Permissions

Compliance Considerations

  • Audit Logging: Slack Enterprise Grid provides audit logs for compliance
  • Message Retention: Follow your organization's data retention policies
  • GDPR: Message content may contain EU user PII
  • eDiscovery: Exported messages may be subject to legal holds
  • Internal Communications: Treat Slack data as confidential
  • Channel Privacy: Private channel access requires explicit invitation

Troubleshooting

Common Issues

Issue: Channel not found

Symptoms: "channel_not_found" error when reading or posting Cause: Invalid channel ID, bot not in channel, or private channel Solution:

  • Verify channel ID is correct (use slack_search.py search)
  • Invite the bot to the channel (/invite @botname)
  • Check if channel is private - bot needs explicit invitation
  • Ensure channel hasn't been archived or deleted

Issue: Missing permissions / scope errors

Symptoms: "missing_scope" or "not_allowed_token_type" error Cause: Bot token missing required OAuth scopes Solution:

  • Go to Slack App Settings > OAuth & Permissions
  • Add required scopes: channels:read, channels:history, etc.
  • Reinstall the app to workspace after adding scopes
  • Verify using the correct bot token (starts with xoxb-)

Issue: Token expired or invalid

Symptoms: "invalid_auth" or "token_revoked" error Cause: OAuth token expired, revoked, or incorrectly configured Solution:

  • Reauthorize the bot in Slack App settings
  • Regenerate the bot token if revoked
  • Check .env for correct SLACK_BOT_TOKEN value
  • Verify no whitespace or special characters in token

Issue: Rate limited

Symptoms: "ratelimited" error or 429 status code Cause: Too many API requests in short period Solution:

  • Add delays between requests (1-2 seconds)
  • Reduce batch size for bulk operations
  • Implement exponential backoff on retries
  • Slack allows ~50 requests/minute for most endpoints

Issue: Private channel access denied

Symptoms: Can't read private channel despite having scopes Cause: Bot not added to the private channel Solution:

  • Have a channel member invite the bot: /invite @botname
  • Ensure groups:read and groups:history scopes are added
  • Verify bot has been reinstalled after adding scopes

Resources

  • references/search.md - Channel search and message reading
  • references/fetch-news.md - Fetch news from channels
  • references/create-channel.md - Create new channels
  • references/categorize.md - AI message categorization

Integration Patterns

Slack to Newsletter

Skills: slack-automation → content-generation Use case: Summarize internal news for weekly newsletter Flow:

  1. Fetch messages from news/announcements channels
  2. Categorize and filter relevant content
  3. Generate formatted newsletter section via content-generation

Slack and Meeting Context

Skills: slack-automation → transcript-search Use case: Find related meetings when researching Slack discussions Flow:

  1. Search Slack for client name or topic
  2. Extract date ranges and participant names
  3. Search transcript-search for related meeting recordings

Slack Reports to Drive

Skills: slack-automation → google-workspace Use case: Archive categorized Slack summaries to Google Drive Flow:

  1. Fetch and categorize messages from internal channels
  2. Generate formatted report document
  3. Upload to Google Drive via google-workspace

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.31%
按下载量换算474

Claude

30.24%
按下载量换算431

Cursor

19.39%
按下载量换算276

Gemini CLI

10.72%
按下载量换算153

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills