conductor-remote 1.53.4 → 1.54.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 +7 -6
- package/dist/assets/index-CSpn2y0z.js +44 -0
- package/dist/assets/index-TXYaWW0Q.css +1 -0
- package/dist/index.html +2 -2
- package/dist/sw.js +1 -1
- package/dist-node/src/firstprompt.js +26 -3
- package/dist-node/src/mcp-tools.js +29 -9
- package/dist-node/src/model-cache.js +91 -0
- package/dist-node/src/routes.js +2 -0
- package/dist-node/src/server.js +33 -4
- package/dist-node/src/shared.js +34 -0
- package/package.json +3 -2
- package/dist/assets/index-CNdG7lFR.css +0 -1
- package/dist/assets/index-Dw55ffnp.js +0 -44
package/README.md
CHANGED
|
@@ -242,10 +242,10 @@ Two transports, same sixteen tools.
|
|
|
242
242
|
|---|---|
|
|
243
243
|
| `search_chats` · `read_chat` | full-text search every chat on this Mac, archived included, then read one |
|
|
244
244
|
| `list_workspaces` · `list_chats` · `workspace_diff` · `list_repos` | what is running, and what it changed |
|
|
245
|
-
| `create_workspace` | start work in a repo, with an optional first prompt.
|
|
245
|
+
| `create_workspace` | start work in a repo, with an optional first prompt and cached model label. Creation uses a deep link; selected model setup runs later |
|
|
246
246
|
| `send_prompt` · `stop_turn` | talk to a running agent, or cancel its turn |
|
|
247
247
|
| `split_chat` | move a tangent into a fresh tab, carrying the conversation across as a Conductor attachment |
|
|
248
|
-
| `list_models` · `set_agent_options` | model, effort, plan, fast — Conductor keeps these in its UI and nowhere else |
|
|
248
|
+
| `list_models` · `set_agent_options` | cached model labels, model, effort, plan, fast — Conductor keeps these in its UI and nowhere else |
|
|
249
249
|
| `set_workspace_status` | move a workspace between the sidebar's status groups |
|
|
250
250
|
| `dismiss_prompt` | throw away a prompt the relay is still holding |
|
|
251
251
|
| `keep_awake` | hold this Mac awake with the lid shut, so a long run stays reachable |
|
|
@@ -300,14 +300,15 @@ of the time.
|
|
|
300
300
|
| `list_chats` | the chat tabs in a workspace |
|
|
301
301
|
| `workspace_diff` | a workspace's diff against its target branch |
|
|
302
302
|
| `list_repos` | repos a workspace can be created in |
|
|
303
|
-
| `create_workspace` | start a new workspace, optionally with a first prompt |
|
|
303
|
+
| `create_workspace` | start a new workspace, optionally with a first prompt and model |
|
|
304
304
|
| `send_prompt` | send into an existing chat (drives the real UI) |
|
|
305
305
|
| `stop_turn` | cancel a running answer (drives the real UI) |
|
|
306
306
|
| `set_workspace_status` | set the sidebar status (drives the real UI) |
|
|
307
307
|
|
|
308
|
-
The first six touch nothing. `create_workspace` opens a Conductor deep link, so
|
|
309
|
-
needs no Accessibility and steals no focus.
|
|
310
|
-
|
|
308
|
+
The first six touch nothing. `create_workspace` opens a Conductor deep link, so
|
|
309
|
+
creation needs no Accessibility and steals no focus. A requested model is applied
|
|
310
|
+
later through Conductor's UI, before the relay sends the first prompt. The last
|
|
311
|
+
three drive Conductor's real window for a few seconds.
|
|
311
312
|
|
|
312
313
|
The HTTP transport is deliberately minimal: the server never initiates a message, so
|
|
313
314
|
there is no SSE stream and `GET /mcp` answers 405, which the spec allows. It keeps no
|