SkillsHooksPromptsAgentsPersonasModelsPoliciesToolsTemplatesBundlesCategoriesStart here
← Tools
To toolcommanddevopsnetworkuser-promptstable

send-message

Send a message to an external channel (Slack, email, etc.). External, side-effecting.

id tool/send-messagev1.0.0function send_message

Signature

ParameterTypeRequiredDescription
channelstringyesChannel identifier (slack://...; mailto:...)
subjectstringnoSubject / title
bodystringyesMessage body
returnsobject{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.