Slack Integration
Send messages and listen to channels.
Usage Example
bot SlackNotifier {
capabilities {
slack.postMessage
}
on user.message {
// Send a message to a channel
call slack.postMessage with {
channel: "#general",
text: "Hello from Bothive! 🐝"
}
// Direct message a user (requires user ID)
call slack.postMessage with {
channel: "@jeremy",
text: "Your task is complete."
}
respond with "Sent the Slack messages."
}
}