Full Slack workspace integration so agents can read channels, send messages, reply in threads, DM teammates, search conversations, react with emoji, and share files. Acts as the connected user — private channels are limited to ones they belong to.
List public and private channels in the workspace. Defaults to channels the user can see; pass only_member=true to filter to channels they actually belong to.
List direct-message and group-direct-message conversations. Use this to find a conversation id to read or write to.
List members of the workspace. Filters out bots and deleted accounts by default; pass include_bots / include_deleted to override.
Find a workspace member by email address or user id. Use this to resolve someone to a user_id before calling send_message with user_id.
Read recent messages from a channel or DM. Pass thread_ts to read a specific thread instead of the channel timeline. Messages are newest-first.
Send a message to a channel, DM, or thread. Pass channel_id for a known channel, or user_id for a 1:1 DM (the skill opens the DM automatically). Pass thread_ts to reply inside an existing thread.
Edit the text of a previously-sent message. Only works for messages the connected user posted — Slack rejects edits on other people's messages.
Delete a previously-sent message. Only works for messages the connected user posted.
Add or remove an emoji reaction on a message. Pass the emoji name without colons (e.g. "thumbsup", not ":thumbsup:").
Full-text search across workspace messages. Supports Slack query modifiers: in:#channel-name, from:@username, before:YYYY-MM-DD, after:YYYY-MM-DD, has::emoji:. Results are newest-first by default.
Upload a file from a public URL and share it into a channel or DM. Supports any file type — Slack renders images, PDFs, and videos inline.
List files previously shared in the workspace, optionally filtered by channel or uploader. Useful for finding a specific attachment or auditing what has been shared.
Loading activity...
- Initial release: list/read channels and DMs, send/update/delete messages, reply in threads, react with emoji, search messages, find users, upload and list files