initiate_conversation
Start new conversations on Slack or Discord, automatically creating threads on Discord. Specify platform, channel ID, message content, and optional agent ID for collaboration.
Instructions
Proactively starts a new conversation on Discord or Slack. For Discord, creates a thread automatically.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agentId | No | Optional agent ID for attribution | |
channelId | No | Channel ID to send message to (optional - uses default if not specified) | |
content | Yes | Initial message content to send | |
platform | Yes | Platform to send message to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"agentId": {
"description": "Optional agent ID for attribution",
"type": "string"
},
"channelId": {
"description": "Channel ID to send message to (optional - uses default if not specified)",
"type": "string"
},
"content": {
"description": "Initial message content to send",
"type": "string"
},
"platform": {
"description": "Platform to send message to",
"enum": [
"slack",
"discord"
],
"type": "string"
}
},
"required": [
"platform",
"content"
],
"type": "object"
}