Reference
Remy Reference/agent/postToSlackChannel
?

postToSlackChannel

Send a message to a Slack channel via a connected bot.
mindstudio.postToSlackChannel({ channelId, messageType, message }) → Result

Posts a message to a Slack channel through a connected bot — the standard way to push a notification or update into a team's channel.

Parameters
channelId
string
RequiredSlack channel ID (leave empty to allow user to select a channel)
messageType
string
RequiredMessage format: "string" for plain text/markdown, "blocks" for Slack Block Kit JSON
stringblocks
message
string
RequiredMessage content (plain text/markdown for "string" type, or JSON for "blocks" type)
connectionId
string
Slack OAuth connection ID (leave empty to allow user to select)
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.postToSlackChannel({
  channelId: /* ... */,
  messageType: /* ... */,
  message: /* ... */
});