Post a message to the chat thread
bridge_sendPost a message to the current chat thread without waiting for a reply, for progress notes or closing remarks that need no response.
Instructions
Posts one message to this conversation's chat thread and returns immediately without waiting for a reply. Use it for a progress note or a closing remark that needs no answer; when you need the user to respond, use bridge_send_and_await instead so the post and the wait are one call. Each call appends a new message and never edits or replaces an earlier one, so a retry after a failure leaves a duplicate in the thread.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | Message body to post, as plain text — typically the end-of-turn summary plus the question you need answered. Keep credentials and secrets out of it: whoever can read the chat thread can read this. | |
| message | No | Alias for `text`; ignored when `text` is present. Message body to post, as plain text — typically the end-of-turn summary plus the question you need answered. Keep credentials and secrets out of it: whoever can read the chat thread can read this. | |
| session | Yes | Session handle returned by bridge_start for THIS conversation. Routes the call to the right chat thread and keeps concurrent conversations — even two in the same workspace — from crossing over. |