一键导入
slack
Configure SlackApp or SlackLogin with /connect, then resolve Slack users/channels and search/read Slack messages through the internal CLI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Configure SlackApp or SlackLogin with /connect, then resolve Slack users/channels and search/read Slack messages through the internal CLI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Recipe for rendering a code review as a Canvas — compose findings with evidence and actions into a scannable page instead of a long text answer.
Use when the user asks to create a short drama from a prompt — e.g. "生成短剧", "制作微短剧", "make a short drama", "turn this script into a short drama", "ショートドラマを生成", "숏드라마를 만들어". Orchestrates script, storyboard, optional character images, per-shot video clips, and ffmpeg composition through the existing media tools.
Configure Gmail Browser with /connect and use Gmail ConnectorAct actions through the global Puffer browser profile.
Authenticate Lark with /connect (delegated to the official lark-cli), then send/react/reply through the connector and consume incoming Lark messages as a stream. Two connectors mirror Telegram — lark-login (your user account; monitor + act as you) and lark-bot (the app bot; auto-reply). Use lark-cli directly from Bash for chat/user lookup and any API not exposed as a connector action.
Configure Telegram with /connect, then resolve Telegram user/group ids and search Telegram messages through the internal Telegram CLI.
Use when the user asks to create, generate, or render images through the internal media CLI.
| name | slack |
| description | Configure SlackApp or SlackLogin with /connect, then resolve Slack users/channels and search/read Slack messages through the internal CLI. |
| allowed-tools | ["Bash"] |
| argument-hint | [Slack task] |
| arguments | target |
| user-invocable | true |
| disable-model-invocation | false |
Use /connect slack-app <connection> or /connect slack-login <connection>
when the user needs Slack connector setup, account setup, or auth repair. That
flow uses AskUserQuestion for method choices and secrets.
Use Bash to run the Slack internal CLI only after auth exists, when the user
needs Slack id lookup or message search/read workflows. Run Slack lookup
commands as slack ... inside Bash.
Target: $target
Connection/account selection:
Slack has two first-party connector templates:
slack-app: a Slack app connection with bot token and app-level token. Use
it for app installs and bot-token channel actions.slack-login: a Slack workspace account connection from an OAuth token or
browser session. Use it for local account operations and local app imports.Slack workflow subscriptions and agent proxy mode are not implemented yet for these first-party templates. Do not create Slack workflows that rely on inbound Slack events until a typed Slack subscribe runtime exists.
The default connection slug is slack-app for configure-app, and
slack-login for all login/import/lookup commands. When the user has multiple
workspaces or accounts, use a distinct kebab-case connection slug and pass it
to every Slack CLI command with --connection or --account.
slack --connection work-login search-conversations "deploys"
slack --connection work-login search-users "Tony"
After /connect auth completes, the auth tool automatically registers the
connection with either connector_slug="slack-app" or connector_slug="slack-login". Use the same
connection slug in ConnectorActionDraft for sends and ConnectorAct for
non-send actions.
Lookup workflow:
When the user names a Slack channel, group DM, DM, or person, resolve the
stable Slack id before acting. Do not send to an ambiguous display name,
#channel name, or @handle directly.
slack --connection work-login search-conversations "deploys"
slack --connection work-login search-users "Tony"
Use returned conversation id values such as C..., G..., or D... as
send targets. Use returned user id values such as U... as send targets
when the task is a DM; Puffer opens the Slack DM before sending.
Message read and search workflow:
Use read-messages when you already have a channel id and optionally a thread
timestamp. Use search-messages when the user asks to find text across Slack
with Slack search syntax.
slack --connection work-login read-messages --channel C123 --limit 20
slack --connection work-login read-messages --channel C123 --thread-ts 1700000000.000100
slack --connection work-login search-messages "karen in:deploys" --limit 20
Connector action workflow:
Use ConnectorActionDraft for outbound Slack messages so the human can review
the exact recipient and content before sending. Pass to or channel, plus
message or caption. To reply in a thread, pass thread_ts or reply_to
with the Slack timestamp. To send files, include media, file, files, or
path with local file paths. Captions are sent as Slack upload comments. Use
ConnectorAct only for non-send side effects such as reactions.
{"connector_slug":"slack-login","connection_slug":"work-login","action":"send_message","input":{"to":"U123","message":"gm"}}
{"connector_slug":"slack-app","connection_slug":"work-app","action":"send_message","input":{"to":"C123","message":"done","thread_ts":"1700000000.000100"}}
{"connector_slug":"slack-login","connection_slug":"work-login","action":"send_message","input":{"to":"C123","media":{"path":"/tmp/report.pdf","caption":"report"}}}
Use Slack reaction actions on connector targets after reading/searching
messages for the exact channel and ts.
{"connector_slug":"slack-login","connection_slug":"work-login","action":"react","input":{"channel":"C123","ts":"1700000000.000100","emoji":"white_check_mark"}}
{"connector_slug":"slack-login","connection_slug":"work-login","action":"remove_reaction","input":{"channel":"C123","ts":"1700000000.000100","emoji":":eyes:"}}