conductor-remote 1.78.0 → 1.79.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 +2 -2
- package/dist/assets/index-CV2YpJf7.js +47 -0
- package/dist/assets/index-DaafT1eA.css +1 -0
- package/dist/index.html +2 -2
- package/dist/sw.js +1 -1
- package/dist-node/src/background-tasks.js +2 -1
- package/dist-node/src/conductor.applescript +153 -25
- package/dist-node/src/mcp-tools.js +36 -5
- package/dist-node/src/model-cache.js +20 -2
- package/dist-node/src/routes.js +2 -0
- package/dist-node/src/server.js +31 -3
- package/dist-node/src/shared.js +13 -0
- package/dist-node/src/writes.js +49 -7
- package/package.json +1 -1
- package/dist/assets/index-4cxcZbZe.js +0 -47
- package/dist/assets/index-BoeZwP2N.css +0 -1
package/README.md
CHANGED
|
@@ -260,7 +260,7 @@ RELAY_TOKEN=$(openssl rand -hex 16) yarn start
|
|
|
260
260
|
`conductor-remote mcp` is an MCP server on stdio. It gives a coding agent the same
|
|
261
261
|
control the phone has, over the same relay.
|
|
262
262
|
|
|
263
|
-
Two transports, same
|
|
263
|
+
Two transports, same eighteen tools.
|
|
264
264
|
|
|
265
265
|
| | |
|
|
266
266
|
|---|---|
|
|
@@ -269,7 +269,7 @@ Two transports, same seventeen tools.
|
|
|
269
269
|
| `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 |
|
|
270
270
|
| `send_prompt` · `stop_turn` | talk to a running agent, or cancel its turn |
|
|
271
271
|
| `split_chat` | move a tangent into a fresh tab, carrying the conversation across as a Conductor attachment |
|
|
272
|
-
| `list_models` · `set_agent_options` | cached model labels, model, effort, plan, fast
|
|
272
|
+
| `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 |
|
|
273
273
|
| `set_workspace_status` | move a workspace between the sidebar's status groups |
|
|
274
274
|
| `archive_workspace` | put a finished workspace away (Conductor's ⌘⇧A) — deletes the worktree, keeps the chat |
|
|
275
275
|
| `dismiss_prompt` | throw away a prompt the relay is still holding |
|