conductor-remote 1.88.1 → 1.90.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -274,7 +274,7 @@ RELAY_TOKEN=$(openssl rand -hex 16) yarn start
274
274
  `conductor-remote mcp` is an MCP server on stdio. It gives a coding agent the same
275
275
  control the phone has, over the same relay.
276
276
 
277
- Two transports, same nineteen tools.
277
+ Two transports, same twenty tools.
278
278
 
279
279
  | | |
280
280
  |---|---|
@@ -282,7 +282,7 @@ Two transports, same nineteen tools.
282
282
  | `list_workspaces` · `list_chats` · `workspace_diff` · `list_repos` | what is running, and what it changed |
283
283
  | `plan_usage` | prompt-free Claude/Codex subscription allowances and reset times |
284
284
  | `create_workspace` | start work in a repo, with an optional first prompt and model/effort/plan/fast choices. Creation uses a deep link; selected agent settings apply before the prompt |
285
- | `send_prompt` · `stop_turn` | talk to a running agent, or cancel its turn |
285
+ | `send_prompt` · `stop_turn` · `close_chat` | talk to a running agent, cancel its turn, or hide a chat tab |
286
286
  | `split_chat` | move a tangent into a fresh tab, carrying the conversation across as a Conductor attachment |
287
287
  | `list_models` · `set_agent_options` · `set_default_model` | cached model labels (including the starred default), model, effort, plan, fast; starring a default also selects it for the target chat, matching Conductor |
288
288
  | `set_workspace_status` | move a workspace between the sidebar's status groups |
@@ -294,7 +294,7 @@ Two transports, same nineteen tools.
294
294
  **Name it `conductor-remote`, not `conductor`.** Conductor injects an MCP server of its
295
295
  own into every agent it runs, and that one is already called `conductor`. Register this
296
296
  under the same name and inside a Conductor workspace the two collide: Conductor's tools
297
- win, these seventeen vanish, and the only trace left is this server's instructions text —
297
+ win, these tools vanish, and the only trace left is this server's instructions text —
298
298
  so it reads as if the tools should be there.
299
299
 
300
300
  **stdio** — for an agent running on this Mac. The client spawns it as a child process;
@@ -344,13 +344,14 @@ of the time.
344
344
  | `create_workspace` | start a new workspace, optionally with a first prompt and agent settings |
345
345
  | `send_prompt` | send into an existing chat (drives the real UI) |
346
346
  | `stop_turn` | cancel a running answer (drives the real UI) |
347
+ | `close_chat` | hide a chat tab without deleting its transcript (drives the real UI) |
347
348
  | `set_workspace_status` | set the sidebar status (drives the real UI) |
348
349
  | `archive_workspace` | archive a workspace (drives the real UI, deletes the worktree) |
349
350
 
350
- The first seven touch nothing. `create_workspace` opens a Conductor deep link, so
351
+ The read-only tools touch nothing. `create_workspace` opens a Conductor deep link, so
351
352
  creation needs no Accessibility and steals no focus. Requested model, effort, plan,
352
353
  and fast settings are applied later through Conductor's UI, before the relay sends
353
- the first prompt. The last four drive Conductor's real window for a few seconds.
354
+ the first prompt. The UI-writing tools drive Conductor's real window for a few seconds.
354
355
 
355
356
  The HTTP transport is deliberately minimal: the server never initiates a message, so
356
357
  there is no SSE stream and `GET /mcp` answers 405, which the spec allows. It keeps no
@@ -367,8 +368,9 @@ joining a line it would only time out waiting in.
367
368
 
368
369
  Worth knowing before you wire it up: `send_prompt` into a chat that is already
369
370
  working **steers that agent** rather than starting a new turn, and `stop_turn`
370
- destroys work in flight. The tool descriptions say so, and both ask the caller to
371
- confirm with you first.
371
+ destroys work in flight. `close_chat` keeps the transcript and is reversible with
372
+ Conductor's ⌘⇧T; a working chat is refused until `close_running` explicitly confirms
373
+ the desktop's own warning. The tool descriptions surface each of those choices.
372
374
 
373
375
  ## Notifications
374
376