بنقرة واحدة
slack
Compose, search, and post to Slack channels, DMs, and canvases.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Compose, search, and post to Slack channels, DMs, and canvases.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | slack |
| description | Compose, search, and post to Slack channels, DMs, and canvases. |
| plugin | slack |
The Slack MCP plugin exposes the same 13 tools shipped by the official Slack Claude Code plugin. The full schemas land in your tool list at session start; this skill summarises how to sequence them well.
If you only know the channel by name (e.g. #releases, not its C… ID):
slack_search_channels(query: "releases") → returns the channel's
id (looks like C09RELEASE01).slack_send_message(channel_id: "C09…", message: "...") → posts and
returns message_link. Quote the link in your final answer.channel_id may be a user_id for DMs. Resolve the user via
slack_search_users(query: "name or email"), then pass their id as
channel_id to slack_send_message.
If the user hasn't approved exact wording, prefer
slack_send_message_draft(channel_id, message) over slack_send_message.
A draft can be reviewed in Slack's UI before it's sent.
slack_search_public — public channels only; safe to call without user
confirmation.slack_search_public_and_private — includes DMs and private channels;
ask first if uncertain.query string: in:#channel, from:@user,
before:YYYY-MM-DD, after:YYYY-MM-DD, is:thread, quotes for exact
phrases.You need both the parent channel_id AND the parent message_ts. If you
only have a search hit, pull the ts from the result and pass it as
message_ts to slack_read_thread.
slack_send_message accepts standard
markdown (**bold**, _italic_, `code`). Don't use Slack's older
*bold*/_italic_ mrkdwn syntax.slack_create_canvas /
slack_update_canvas, the content uses Canvas-flavored Markdown (user
refs as , channel refs as , ATX headings only). The
full spec is embedded in the tool's description — read it before writing
canvas content.U09J02RP7MK. Use this when the task says "me" or
asks to DM the runner themselves.