Slack Integration
Send messages and listen to channels.
Usage Example
bot "SlackNotifier"
on input
// Send a message to a channel
call slack.post_message(
channel: "#general",
text: "Hello from Bothive! 🐝"
)
// Direct message a user (requires user ID)
call slack.post_message(
channel: "@jeremy",
text: "Your task is complete."
)
end
end