Start remote chat mode
bridge_startStarts a remote chat session by opening a dedicated thread in the configured channel (GitHub issue, Telegram topic, or Discord) and returns the session handle required by all other bridge_* tools.
Instructions
Opens a dedicated thread for THIS conversation in the configured chat channel (GitHub issue, Telegram topic, or Discord channel) and returns the session handle that every other bridge_* tool requires. Call it when the user asks — in any language — to start remote chat, bridge, or Telegram mode. Call it once per conversation: every call without session opens a NEW thread, so re-arm an existing session by passing its handle back instead of starting again. When no channel is configured it returns onboarding instructions rather than failing, so follow them and call again. It identifies the conversation from Cursor's pending handshake and fails closed with guidance when that is ambiguous — it will not guess which conversation it belongs to.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | Names the thread — a concise (≤6-word) summary of THIS conversation's topic, mirroring how it reads in Cursor's chat list (e.g. "GitHub Actions autopublish"). Falls back to the folder name, which is a poor label when several conversations share a workspace. | |
| adapter | No | Chat channel to use for this session, overriding the configured default. | |
| session | No | Handle from a previous bridge_start, to re-arm that existing session instead of opening a second thread. Omit for a brand-new start. |