conductor-remote 1.57.3 → 1.58.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 +5 -5
- package/dist/assets/{index-8c-C66kC.js → index-CMxd5e5V.js} +30 -30
- package/dist/assets/{index-6wKob04z.css → index-DT9enoqA.css} +1 -1
- package/dist/index.html +2 -2
- package/dist/sw.js +1 -1
- package/dist-node/src/conductor.applescript +1 -1
- package/dist-node/src/firstprompt.js +14 -14
- package/dist-node/src/mcp-tools.js +16 -5
- package/dist-node/src/notify.js +1 -1
- package/dist-node/src/server.js +25 -9
- package/dist-node/src/transcript.js +5 -4
- package/dist-node/src/writes.js +1 -1
- package/package.json +9 -19
package/README.md
CHANGED
|
@@ -242,7 +242,7 @@ 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 and
|
|
245
|
+
| `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 |
|
|
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
248
|
| `list_models` · `set_agent_options` | cached model labels, model, effort, plan, fast — Conductor keeps these in its UI and nowhere else |
|
|
@@ -300,15 +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 and
|
|
303
|
+
| `create_workspace` | start a new workspace, optionally with a first prompt and agent settings |
|
|
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
308
|
The first six touch nothing. `create_workspace` opens a Conductor deep link, so
|
|
309
|
-
creation needs no Accessibility and steals no focus.
|
|
310
|
-
later through Conductor's UI, before the relay sends
|
|
311
|
-
three drive Conductor's real window for a few seconds.
|
|
309
|
+
creation needs no Accessibility and steals no focus. Requested model, effort, plan,
|
|
310
|
+
and fast settings are applied later through Conductor's UI, before the relay sends
|
|
311
|
+
the first prompt. The last three drive Conductor's real window for a few seconds.
|
|
312
312
|
|
|
313
313
|
The HTTP transport is deliberately minimal: the server never initiates a message, so
|
|
314
314
|
there is no SSE stream and `GET /mcp` answers 405, which the spec allows. It keeps no
|