conductor-remote 1.98.0 → 1.99.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 +9 -3
- package/dist/assets/index-CatXxUrf.js +52 -0
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/dist-node/src/agent-config.js +7 -1
- package/dist-node/src/mcp-tools.js +102 -7
- package/dist-node/src/roles.js +15 -8
- package/dist-node/src/shared.js +13 -0
- package/dist-node/src/writes.js +3 -3
- package/package.json +1 -1
- package/dist/assets/index-CWS0Qyzc.js +0 -52
package/README.md
CHANGED
|
@@ -293,7 +293,7 @@ RELAY_TOKEN=$(openssl rand -hex 16) yarn start
|
|
|
293
293
|
`conductor-remote mcp` is an MCP server on stdio. It gives a coding agent the same
|
|
294
294
|
control the phone has, over the same relay.
|
|
295
295
|
|
|
296
|
-
Two transports, same
|
|
296
|
+
Two transports, same 26 tools.
|
|
297
297
|
|
|
298
298
|
| | |
|
|
299
299
|
|---|---|
|
|
@@ -301,6 +301,7 @@ Two transports, same 25 tools.
|
|
|
301
301
|
| `list_workspaces` · `list_chats` · `workspace_diff` · `list_repos` | what is running, and what it changed |
|
|
302
302
|
| `plan_usage` | prompt-free Claude/Codex subscription allowances and reset times |
|
|
303
303
|
| `create_workspace` | start work in a repo, with an optional first prompt and model/effort/plan/fast choices, or `workflow: true` to use the configured planning root and authorize delegation without Plan mode. Creation uses a deep link; selected settings apply before the prompt |
|
|
304
|
+
| `dev_server` | inspect, start, forward or stop a workspace's configured Conductor Run task; use this instead of launching a long-lived server from an agent shell |
|
|
304
305
|
| `send_prompt` · `stop_turn` · `close_chat` | talk to a running agent, cancel its turn, or hide a chat tab |
|
|
305
306
|
| `split_chat` | move a tangent into a fresh tab, or set `new_workspace` to carry the transcript and current code into a separate worktree |
|
|
306
307
|
| `list_roles` · `set_role` | inspect or edit exact-picker delegated roles (model, effort, fast, and preamble; no Plan setting) |
|
|
@@ -315,7 +316,7 @@ Two transports, same 25 tools.
|
|
|
315
316
|
**Name it `conductor-remote`, not `conductor`.** Conductor injects an MCP server of its
|
|
316
317
|
own into every agent it runs, and that one is already called `conductor`. Register this
|
|
317
318
|
under the same name and inside a Conductor workspace the two collide: Conductor's tools
|
|
318
|
-
win, these
|
|
319
|
+
win, these 26 vanish, and the only trace left is this server's instructions text —
|
|
319
320
|
so it reads as if the tools should be there.
|
|
320
321
|
|
|
321
322
|
**stdio** — for an agent running on this Mac. The client spawns it as a child process;
|
|
@@ -368,6 +369,7 @@ of the time.
|
|
|
368
369
|
| `list_repos` | repos a workspace can be created in |
|
|
369
370
|
| `plan_usage` | Claude/Codex rolling subscription limits, without sending a prompt |
|
|
370
371
|
| `create_workspace` | start a new workspace, optionally with a first prompt and agent settings, or as a configured delegated workflow |
|
|
372
|
+
| `dev_server` | inspect/start/stop the configured Run task and its tailnet preview (`status` is read-only; start/stop drive the real UI) |
|
|
371
373
|
| `send_prompt` | send into an existing chat (drives the real UI) |
|
|
372
374
|
| `stop_turn` | cancel a running answer (drives the real UI) |
|
|
373
375
|
| `close_chat` | hide a chat tab without deleting its transcript (drives the real UI) |
|
|
@@ -375,7 +377,7 @@ of the time.
|
|
|
375
377
|
| `archive_workspace` | archive a workspace (drives the real UI, deletes the worktree) |
|
|
376
378
|
|
|
377
379
|
Search, transcript, workspace/chat, diff, repo, role, delegation-status, dismiss,
|
|
378
|
-
keep-awake-status, and log reads touch no Conductor UI. `create_workspace` opens a
|
|
380
|
+
dev-server status, keep-awake-status, and log reads touch no Conductor UI. `create_workspace` opens a
|
|
379
381
|
Conductor deep link, so creation itself needs no Accessibility and steals no focus;
|
|
380
382
|
requested model, effort, plan, and fast settings are applied later before the first
|
|
381
383
|
prompt. Its `workflow` option instead freezes the configured `planning` role, tags the
|
|
@@ -383,6 +385,10 @@ first chat as that role, and explicitly authorizes that root to use `delegate_ta
|
|
|
383
385
|
it cannot be combined with explicit agent settings and never touches Plan mode. `delegate_task`
|
|
384
386
|
persists and returns immediately, then its background queue opens/configures/sends
|
|
385
387
|
through the same serialized UI path as phone writes. It never changes Plan mode.
|
|
388
|
+
Agents are explicitly told to use `dev_server` instead of starting a long-lived server
|
|
389
|
+
from their shell. Its start and stop actions go through Conductor's Run controls, which
|
|
390
|
+
preserves the workspace's allocated ports, run-mode policy and process-group cleanup;
|
|
391
|
+
the MCP tool cannot forbid shell commands, but removes the reason to use one here.
|
|
386
392
|
|
|
387
393
|
The HTTP transport is deliberately minimal: the server never initiates a message, so
|
|
388
394
|
there is no SSE stream and `GET /mcp` answers 405, which the spec allows. It keeps no
|