send-message
Send a message to an external channel (Slack, email, etc.). External, side-effecting.
id tool/send-messagev1.0.0function send_message
Signature
| Parameter | Type | Required | Description |
|---|---|---|---|
channel | string | yes | Channel identifier (slack://...; mailto:...) |
subject | string | no | Subject / title |
body | string | yes | Message body |
| returns | object | {sent, message_id}. |
Tool definition for the model
{
"name": "send_message",
"description": "Send a message to a channel.",
"input_schema": {
"type": "object",
"properties": {
"channel": {
"type": "string",
"description": "Channel identifier (slack://...; mailto:...)"
},
"subject": {
"type": "string",
"description": "Subject / title"
},
"body": {
"type": "string",
"description": "Message body"
}
},
"required": [
"channel",
"body"
]
}
}Author convergent-systems-key. Source convergent-systems-co/agent-atoms (original ↗). License Apache-2.0. Re-typed from tool-definition by scripts/migrate-policy-tool.py.