conductor-remote 1.81.0 → 1.83.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
@@ -77,6 +77,7 @@ port is live; a mapping already in place is kept wherever it is.
77
77
  (React, installable) │
78
78
  ├─ reads: node:sqlite ⟶ conductor.db (workspaces, sessions, transcripts)
79
79
  ├─ reads: git ⟶ each worktree (diffs vs target branch)
80
+ ├─ usage: provider CLIs ⟶ rolling plan limits (no model prompt)
80
81
  ├─ writes: Actuator ⟶ Conductor
81
82
  │ ├─ applescript (default): osascript ⟶ focused session
82
83
  │ └─ sidecar (opt-in): unix socket ⟶ exact session
@@ -89,6 +90,9 @@ port is live; a mapping already in place is kept wherever it is.
89
90
  `dist/`, which the relay serves.
90
91
  - **Reads are durable.** No Conductor API, no injection — the SQLite schema and
91
92
  git worktrees outlive UI changes.
93
+ - **Plan usage is prompt-free.** The usage gauge asks Conductor's bundled Claude
94
+ and Codex CLIs for structured rolling limits only while the sheet is open, then
95
+ caches the result for a minute. Cursor/OpenCode say why no plan quota is available.
92
96
  - **Writes are the one fragile nerve** and are isolated behind a swappable
93
97
  `Actuator` (`src/writes.ts`).
94
98
  - **Notifications ride the durable side.** The relay watches the same SQLite for
@@ -228,6 +232,10 @@ RELAY_TOKEN=$(openssl rand -hex 16) yarn start
228
232
  repo, branch, model, context %, and an unread mark on any workspace whose chats
229
233
  finished something you haven't looked at — reading it *on the phone* clears it,
230
234
  which Conductor itself only does when you open the workspace on the Mac.
235
+ - ✅ **Models** panel — change Claude Code and Codex defaults for new chats, written
236
+ to `~/.conductor/settings.toml`, and see rolling plan usage from their structured
237
+ CLI protocols with no model request. Cursor Agent and OpenCode keep their own
238
+ provider cards without pretending local accounting is a subscription limit.
231
239
  - ✅ Live transcript per session (assistant text, tool calls, queued messages),
232
240
  incremental polling.
233
241
  - ✅ Diff vs the workspace's target branch (file list + colorized patch,
@@ -263,12 +271,13 @@ RELAY_TOKEN=$(openssl rand -hex 16) yarn start
263
271
  `conductor-remote mcp` is an MCP server on stdio. It gives a coding agent the same
264
272
  control the phone has, over the same relay.
265
273
 
266
- Two transports, same eighteen tools.
274
+ Two transports, same nineteen tools.
267
275
 
268
276
  | | |
269
277
  |---|---|
270
278
  | `search_chats` · `read_chat` | full-text search every chat on this Mac, archived included, then read one |
271
279
  | `list_workspaces` · `list_chats` · `workspace_diff` · `list_repos` | what is running, and what it changed |
280
+ | `plan_usage` | prompt-free Claude/Codex subscription allowances and reset times |
272
281
  | `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 |
273
282
  | `send_prompt` · `stop_turn` | talk to a running agent, or cancel its turn |
274
283
  | `split_chat` | move a tangent into a fresh tab, carrying the conversation across as a Conductor attachment |
@@ -328,13 +337,14 @@ of the time.
328
337
  | `list_chats` | the chat tabs in a workspace |
329
338
  | `workspace_diff` | a workspace's diff against its target branch |
330
339
  | `list_repos` | repos a workspace can be created in |
340
+ | `plan_usage` | Claude/Codex rolling subscription limits, without sending a prompt |
331
341
  | `create_workspace` | start a new workspace, optionally with a first prompt and agent settings |
332
342
  | `send_prompt` | send into an existing chat (drives the real UI) |
333
343
  | `stop_turn` | cancel a running answer (drives the real UI) |
334
344
  | `set_workspace_status` | set the sidebar status (drives the real UI) |
335
345
  | `archive_workspace` | archive a workspace (drives the real UI, deletes the worktree) |
336
346
 
337
- The first six touch nothing. `create_workspace` opens a Conductor deep link, so
347
+ The first seven touch nothing. `create_workspace` opens a Conductor deep link, so
338
348
  creation needs no Accessibility and steals no focus. Requested model, effort, plan,
339
349
  and fast settings are applied later through Conductor's UI, before the relay sends
340
350
  the first prompt. The last four drive Conductor's real window for a few seconds.
@@ -408,7 +418,9 @@ A per-file map, with what each one owns, is in
408
418
  - The write path can drive your real agents — keep the token private and the
409
419
  bind address off untrusted networks.
410
420
  - The relay reads Conductor's SQLite DB **read-only** and never writes to it.
411
- Your data stays on your machine nothing is sent anywhere.
421
+ Your Conductor data stays on your machine. Opening Models makes the already
422
+ authenticated Claude/Codex CLI request its account-limit snapshot; it sends no
423
+ prompt, transcript, or workspace data.
412
424
 
413
425
  ## Troubleshooting
414
426