Agent Skills
› outworked/outworked
› Slack
Slack
GitHub用于在Slack工作区中搜索消息、管理频道(创建/列表/设置主题)、处理消息表情和置顶,以及列出用户。注意实时收发消息需使用Slack channel技能而非本技能。
触发场景
查询或搜索Slack历史消息
创建或查看Slack频道
给消息添加表情或置顶消息
查找Slack成员信息
安装
npx skills add outworked/outworked --skill Slack -g -y
SKILL.md
Frontmatter
{
"auth": {
"type": "oauth2",
"scopes": [
"search:read",
"channels:read",
"channels:manage",
"groups:read",
"reactions:write",
"pins:write",
"users:read"
],
"provider": "slack"
},
"name": "Slack",
"emoji": "💬",
"tools": [
"slack:search_messages",
"slack:list_channels",
"slack:create_channel",
"slack:set_topic",
"slack:add_reaction",
"slack:pin_message",
"slack:list_users"
],
"runtime": "slack",
"description": "Search messages, manage channels, reactions, pins, and users in Slack"
}
Slack Skill
You can search messages, manage channels, and interact with the Slack workspace. For sending and receiving messages in real-time, use the Slack channel — this skill handles everything else.
Tools
- slack:search_messages — Search across all channels using Slack's search syntax (e.g.
from:@alice in:#engineering has:link) - slack:list_channels — List public and/or private channels with member counts
- slack:create_channel — Create a new channel (public or private)
- slack:set_topic — Set a channel's topic
- slack:add_reaction — React to a message with an emoji
- slack:pin_message — Pin an important message in a channel
- slack:list_users — List workspace members with names and emails
Tips
- Channel names must be lowercase, no spaces, max 80 characters
- Use
slack:search_messageswith Slack search modifiers:from:,in:,has:,before:,after:,during: - When referencing messages for reactions or pins, you need the channel ID and message timestamp (ts)
版本历史
- 89ed7b9 当前 2026-07-19 08:49


