You can now build native Slack agents with Chat SDK's Slack adapter.
The adapter supports the full Slack agent messaging experience, from agent conversations in the Messages tab to suggested prompts, rotating status messages, token-by-token streamed replies, and native feedback buttons.
Here's what the adapter gives you:
One thing to know: under
Read the documentation to get started, or begin with one of our templates.
Read more
Continue reading...
The adapter supports the full Slack agent messaging experience, from agent conversations in the Messages tab to suggested prompts, rotating status messages, token-by-token streamed replies, and native feedback buttons.
Here's what the adapter gives you:
Suggested prompts, per thread: Pass a static payload or an async resolver that receives the thread context, including what the user is currently viewing underagent_view. Prompts are pinned automatically whenever an agent thread opens.
Native streaming with a fallback: Streamed replies render token-by-token via Slack's streaming API, including task and plan cards. If a workspace doesn't support streaming (e.g., GovSlack), the adapter switches to post-and-edit mid-stream without losing content.
Built-in feedback: SetfeedbackButtons: trueand every streamed reply ends with Slack's native thumbs-up and thumbs-down buttons. Clicks dispatch through the regularbot.onActionflow with a positive or negative value.
One thing to know: under
agent_view, Slack threads each user message individually, so channel history only returns the user's side of a DM. Use Chat SDK transcripts to build AI conversation history instead.Read the documentation to get started, or begin with one of our templates.
Read more
Continue reading...