Skip to content

feat(providers,schema,engine,workbench): retire the default model — user-selected model sets from provider model lists - #426

Merged
lucas77778 merged 32 commits into
masterfrom
zichen/code-574
Aug 10, 2026
Merged

feat(providers,schema,engine,workbench): retire the default model — user-selected model sets from provider model lists#426
lucas77778 merged 32 commits into
masterfrom
zichen/code-574

Conversation

@PeronGH

@PeronGH PeronGH commented Aug 6, 2026

Copy link
Copy Markdown
Member

Closes CODE-574.

Model selection was a free-text field plus a fixed per-agent list that ignored which account was bound. This replaces both with a set of model ids picked per account: fetch what the service serves, tick what you want, and the composer offers exactly that. Ids can also be typed by hand, which is how endpoints that serve no list work.

Not a bug fix — nothing was broken. It removes the guessing.

Breaking

WIRE_PROTOCOL_VERSION and MIN_COMPATIBLE_WIRE_VERSION both move to 74: Account.model is removed, ProviderConfig.defaultModel renamed to model, and StartOptions.model loses its null tier. Rebuild and restart the daemon and all clients together — a peer below the floor has its frames refused and dies in the handshake timeout.

loadConfig migrates on read (Account.modelmodels: [{id}], defaultModelmodel). Without it zod strips the unknown keys and existing users lose their configured model.

Commits

commit scope
3a068640 providers — per-service model-list URL
2d5dc3a1 schema + engine — Account.models, ProviderConfig.model, probe reshape, wire 74, migration
0bae7397 agent-adapter — opencode bare-id qualification
f7435f85 workbench + i18n — multi-select, Refresh, freeform add
c430eba8 workbench + ui — picker source, send gate, AGENT_DEFAULT_MODELS removal

Non-obvious bits

The list URL is hardcoded per service rather than derived from the resolved variant, because derivation is wrong wherever variants sit on different paths — DeepSeek's anthropic variant would give /anthropic/v1/models, Vercel's bare-origin one a root /models. All six URLs checked against vendor docs; both Cloudflare services carry none, since /compat has no models route.

In the account's model set, present-but-empty and absent differ. [] means an account is bound with nothing picked, so sending is blocked to match the daemon's refusal. Absent means no account is bound, where the agent resolves its own model and is not blocked — blocking there would break opencode/pi on their own auth.

Ids only, no metadata. Both provider-routed agents accept a bare id and fill the rest themselves, and for pi declaring a model it already knows is harmful: applyModelsJson replaces on id match, so redeclaring deepseek-v4-pro overwrites its real 1M context window with pi's 128k default. Checked against opencode's config schema (all Model fields optional, v1 and v2) and pi's modelFromJson.

Fetch sources are injected rather than called in the forms, which are presentation and sit outside the data-plane provider tree. Catalog services probe with the unsaved secret, saved accounts probe by id so the stored secret stays daemon-side, and subscriptions read codex's start catalog or — for claude-code, which has no enumeration API — the curated table.

Selection lives in the edit form rather than the account detail pane as CODE-574 task 5 described, since EditAccountForm already routes non-OAuth accounts through CustomAccountForm.

Checks

pnpm check:ci exits 0. pnpm test: 2742 passing. Two failures are outside this change's module graph — the known packages/host/assets registry loopback test, and packages/host/engine run-command's timeout assertion, which passes in isolation and whose imports (node:child_process, effect, foxts/noop, ../observability) this branch never touches.

Not driven in the real app. Needs a live DeepSeek key: add the account, Refresh, multi-select, confirm the composer offers that set for every bound agent, confirm send is blocked with none picked, start a session on a picked model, and confirm an upgraded config keeps its previous model.

Follow-ups

  • Our cloudflare-gateway entry points at /compat/chat/completions, which Cloudflare has deprecated in favour of api.cloudflare.com/client/v4/accounts/{ACCOUNT_ID}/ai/v1/chat/completions — a different URL shape, so it needs its own issue.
  • Anthropic's /v1/models returns per-model effort capabilities and display_name in a response we already parse; useful for the effort picker.

PeronGH added 5 commits August 6, 2026 17:20
Each endpoint service names the URL that lists the ids it serves, spelled out
rather than derived from a variant's baseUrl and protocol: DeepSeek's
`/anthropic` variant would derive `/anthropic/v1/models` and Vercel's
bare-origin one a root `/models`, and neither route exists. Both Cloudflare
entries serve no list at all, so they stay absent and those accounts remain
freeform-only.
…el source

An account now carries the models the user selected (`Account.models`) instead
of one free-text default, and the pick itself lives per agent as
`ProviderConfig.model`. Nothing falls back to the agent's own choice any more,
so a bound agent with no pick refuses to start rather than running on a model
the user never chose; an agent with no account bound keeps resolving its own.

`config.probe-models` now names a service and lets the daemon resolve the list
URL from the catalog, so a saved account is probed by id and its stored secret
never travels back out to the client.

Both wire versions move: removing `Account.model`, renaming `defaultModel`, and
dropping the `null` tier from `StartOptions.model` are breaking. `loadConfig`
carries both old fields over on read, since zod would otherwise strip them and
silently lose every existing user's configured model.

The model inputs are gone from the account forms; the multi-select that replaces
them lands with the picker work.
…known provider

A picked model id comes from the service's own model list and carries no
provider, while opencode routes only by `providerID/modelID`. `resolveModelRef`
qualifies it with `config.knownProvider`; with neither half available the ref is
still refused, since a stored unroutable id would report a successful switch
while every prompt silently omitted the field.

Both reflection paths compare resolved refs and emit the id the user picked
rather than opencode's prefixed readback, so the client's selected set still
matches what the session reports.
… list

Every account form now carries a model set instead of a free-text default: fetch
the ids the service serves, tick the ones to keep, and add any missing id by
hand. Endpoints that serve no list — the Cloudflare gateways, custom accounts —
are freeform only, which is the same control with the fetch button absent.

Sources differ by account and are injected rather than read in the form, since
the forms are presentation and only the settings page sits inside the data-plane
provider tree: a catalog service is probed with the unsaved secret, a saved
account by id, and a subscription reads codex's start catalog or, for
claude-code, the curated table it has no enumeration API to replace.

A picked id the list stops returning is kept and stays ticked. It is either a
hand-typed entry or one the vendor retired, and dropping it would change the
account's model set behind the user's back on the next fetch.
… to send without one

The composer and the new-session surface now read the set picked on the agent's
bound account, which outranks both the adapter-advertised catalog and the curated
table: a claude-code account pointing at DeepSeek stops offering Anthropic ids it
cannot reach.

Present-but-empty and absent mean different things in that set, and the send gate
turns on the difference. An account bound with nothing picked blocks sending,
matching the daemon's own refusal instead of discovering it a round trip later.
An agent with no account bound is absent, still resolves its own model, and is
not blocked.

AGENT_DEFAULT_MODELS is gone: guessing a provider's model is exactly what the
picked set replaces, and an unresolved model now blocks the send rather than
silently starting on a vendor default. Rebinding an agent drops a pick the new
account does not list, since keeping it would run the next session on a model
that account never offered.
Copilot AI lite review requested due to automatic review settings August 6, 2026 12:22
@linear-code

linear-code Bot commented Aug 6, 2026

Copy link
Copy Markdown

CODE-574

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@pullfrog pullfrog Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caution

The reshaped config.probe-models frame lets a caller pair any saved account's secret with any service's model-list URL. A crafted frame sends a stored Anthropic key to openrouter.ai. Details inline on request-handler.ts.

The direction here is right, and the schema work is careful — ProviderConfig.model's "Not a fallback default: unset means no session can start" is exactly the doc comment that makes the new contract legible, and AGENT_DEFAULT_MODELS is removed cleanly (I grepped: zero stragglers). The MIN_COMPATIBLE_WIRE_VERSION 68→74 bump is the correct call for a field rename plus a removed null tier, and the PR body already says partial upgrades are off the table.

Two anchored defects below, plus one scope question that has no line to point at.

The orphan-model drop exists in only one place, and it's client-side

withBinding (packages/client/workbench/src/settings/providers/view.ts) now takes accounts and drops providers[kind].model when the newly bound account doesn't offer it. Good — but that's the rebind path only.

Nothing re-runs it when the account's models set is edited. handleUpdate in providers-settings.tsx calls saveAccounts and never touches providers, so a user who unchecks the very model an agent is configured to run on leaves providers[kind].model pointing at an id the account no longer offers. On the engine side, applyProviderDefaults (packages/host/engine/src/agent/provider-config.ts:137) does next.model = config.model verbatim — the account's models set is used only to build the credential/endpoint bundle, never to validate the model string. The new accountBound && model === undefined guard in start-options-resolver.ts doesn't fire either, because the model is present, just wrong.

Net effect: the user gets a provider-level failure mid-start ("model X is not available…", or a 400 from the vendor) instead of the clean, local "no model selected" refusal this PR is built to produce. Since the engine is where the invariant is now enforced, that's probably where membership belongs too — the client-side drop is a nicety, not the guarantee. Worth deciding deliberately rather than leaving the two halves out of step.

Smaller notes

  • packages/host/agent-adapter/src/__tests__/pi-model.test.ts:177 still asserts start({ model: null }) preserves "an explicit null model reset for the Pi provider default". That tier is no longer expressible on the wire now that AgentStartInput.model dropped .nullable(), so the test is pinning adapter behavior no client can reach. Not wrong, just worth knowing it's decorative now.
  • The six vendor model-list URLs in catalog.ts are hardcoded and I could not verify them from here (no network). Worth one manual pass, particularly deepseek's https://api.deepseek.com/models and the ?limit=1000 on anthropic-api.

Pullfrog  | Fix all ➔Fix 👍s ➔View workflow run | Using Claude Opus𝕏

Comment thread packages/host/engine/src/agent/request-handler.ts
Comment thread packages/presentation/ui/src/shell/new-session-surface.tsx Outdated
PeronGH added 3 commits August 6, 2026 20:52
A live session's account is fixed at spawn — credentials and base URL are
injected once — so the client needs to know it to scope that session's model
menu. Nothing recorded it: the resolved account existed only inside
`applyProviderDefaults`.

`accountConfigBundle` now echoes `accountId` into the resolved config, which
`resolveAccount` already reads on the way in, so the same key serves both
directions and a client can pin a session to one account. Each run lifts just
that id into `SessionRun`, and `SessionInfo` reports the latest run's, mirroring
how `historyId` already works — a rebind between runs is legitimate, so only the
newest describes what a session is actually talking to.

Only the id is persisted; the rest of `config` carries secrets.
The new-session menu now spans every account `resolveBinding` accepts for the
agent, grouped per account, so choosing a model also chooses which account
serves it. One agent reaches several providers without a trip through Settings —
previously the menu showed only the single bound account's set, which made it
offer less than the curated table it replaced.

A live session's menu stays scoped to its own account: credentials and base URL
are injected at spawn, so offering another account's models would advertise a
switch the adapter cannot make.

Model identity becomes (account, model). Two accounts legitimately serve the
same id — a direct DeepSeek key and an OpenRouter one both list
`deepseek-v4-pro` — and the menu previously used the bare id as both its React
key and its radio value, which would collapse the two into one unselectable row.
`modelChoiceKey` keys them apart, the pick hands back the whole entry rather than
a string to re-parse, and `resolveModel` takes an account tiebreak so the trigger
label names the right one.

The chosen account rides `config.accountId`, which `resolveAccount` already
honours ahead of the bound one.
The model an agent runs on was remembered twice: `providers[kind].model` on the
daemon and `modelsByProvider` in renderer localStorage. Two owners meant Settings
and the composer could disagree, and a scheduled or script session ignored
whatever the composer last used.

The accepted pick now writes daemon config, carrying the account it came from —
choosing a model is also choosing who serves it, so leaving the old binding would
run the next session on an account that never listed that model. The client copy
is gone and the persisted store moves to v6 so a stale blob cannot resurrect a
memory with no owner.

Written once a selection is known to have been accepted rather than on the menu
click, keeping the existing confirm-then-remember discipline: an abandoned draft
never rewrites config, and a provider that rejects a model leaves the previous one
standing. The pick still takes effect on the session immediately — it rides the
start options either way.

Nothing re-sends a configured model at session start now; the daemon resolves it,
so the client specifying it again could only let the two disagree.
Copilot AI review requested due to automatic review settings August 6, 2026 13:34

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@PeronGH

PeronGH commented Aug 6, 2026

Copy link
Copy Markdown
Member Author

Three commits pushed that close a gap the first five left open. The Provider → Harness rename follows separately, so the textual sweep does not hide logic.

What was missing

The original five made the picker read the one account bound to an agent, which narrowed it — claude-code offered whatever was ticked on one account instead of the whole curated table it replaced. ProviderConfig.activeAccountId is a single string, so reaching another provider's model still meant Settings → rebind → return → re-pick, and withBinding dropped the pick on rebind. "Pick from your models" was capped at one provider per agent for no structural reason.

commit scope
c7f4e647 each session run records the account it resolved to; SessionInfo reports the latest
1608dc43 the new-session menu spans every bindable account; model identity becomes (account, model)
8634d2c8 the pick gets one owner in daemon config, rebinding the agent to the model's account

How it works now

The new-session menu aggregates every account resolveBinding(account, kind) accepts, grouped per account, so choosing a model also chooses who serves it. The chosen account rides config.accountId — a seam resolveAccount already honoured ahead of the bound account, and which nothing in the client had ever set.

A live session's menu stays scoped to its own account. Credentials and base URL are injected at spawn, so offering another account's models would advertise a switch the adapter cannot make — opencode rejects cross-provider outright, and claude-code would send the new id to the old endpoint. That required the session to start recording its account, which nothing did.

The accepted pick writes providers[kind].model and activeAccountId together, and the renderer-localStorage copy (modelsByProvider) is gone. Two owners previously meant Settings and the composer could disagree, and a scheduled session ignored whatever the composer last used.

Three findings worth attention in review

The menu-keying bug was real, not hypothetical. composer-controls.tsx used the bare model id as both the React key and the radio value. Two accounts serving deepseek-v4-pro — a direct key and an OpenRouter one, or a work and personal key — would collapse into one unselectable row, so cross-account picking could not have worked without modelChoiceKey. Covered by a test asserting two distinct entries survive.

The send gate from c430eba8 is corrected here. It was keyed on "an account is bound"; it is now "any account can back this agent", which is what the aggregation actually knows. Absent still means unbound-and-not-blocked, so opencode/pi running on their own auth are unaffected — there is a test for both halves.

Configured models are no longer re-sent at session start. Three tests asserted the remembered pick travels in the submission; that only held while the memory was client-side and invisible to the daemon. The daemon now resolves providers[kind].model itself, so the client restating it could only let the two disagree. Those tests were rewritten to assert the display plus the absence of a redundant override, not deleted.

Deliberate deviation

The pick takes effect on the session immediately, but the persisted default is written only once the selection is confirmed — keeping the existing newlyConfirmedStartupSelection discipline, which exists because a provider can reject a model. So an abandoned draft never rewrites config, and Settings reflects a rebind after the first successful turn rather than on the menu click.

Checks

pnpm check:ci exits 0. pnpm test: 2749 passing, with the known packages/host/assets registry loopback failure — outside this change's module graph.

Still not driven in the real app, which remains the gap for this PR overall. The manual pass now needs two accounts bindable to one agent: confirm the new-session menu groups both, that picking a DeepSeek model starts a session actually running on DeepSeek, that Settings shows the rebind after the first turn, that the live thread's menu shows only that account's models, and that two accounts sharing a model id give two separately selectable entries.

@pullfrog pullfrog Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caution

The new commits widen the send-gate from bound to bindable. One unrelated API-key account in the pool is now enough to replace opencode's own model menu with that account's models and block the composer — while the daemon, which gates on activeAccountId, would have started the session fine. Details inline on default-models.ts.

The account-pinned model pick is a good design, and the pieces that make it work are careful: modelChoiceKey identifies an entry by (accountId, id) rather than id alone, resolveModel's account scoping falls back instead of returning nothing, and handleModelChange writing model and account together is the right shape. Account.models' doc comment states the new contract plainly.

Three new defects below, all in the two newest commits. Independent of these, both threads from the previous review are still open at this HEAD — probeSecret still takes no service argument, and the catalog?.defaultModel arm in displayedModel is unchanged. Not re-raised here.

Two comments in this PR contradict each other, and the tests encode the wrong one

start-options-resolver.ts:52-54, on the daemon's new refusal:

With an account bound, its selected set is the only model source and nothing falls back to the agent's own choice. Unbound agents keep running on whatever they resolve themselves.

accountModelOptions' doc, on the client's:

[] says "bindable, nothing picked yet" and blocks sends the way the daemon does.

Those describe different gates. The daemon keys on providers[kind].activeAccountId !== undefined; the client keys on whether any account could theoretically back the agent — which for opencode and pi is nearly every API-key account in the pool (resolve.ts:149-151 returns native for every protocol, and resolve.ts:66-69 keeps a service-less bare key bindable everywhere). opencode and pi are exactly the agents the PR body says must keep running on their own CLI login.

The new tests preserve the conflation rather than catching it. new-session-surface.test.tsx:898 is titled "refuses to send when an account is bound but no model is picked" and comments "Bound with an empty set: the daemon would refuse this start, so the composer does too" — but the prop it passes, accountModels={{ 'claude-code': [] }}, is what accountModelOptions produces for a bindable account, per default-models.test.ts:104-111 ("keeps a bindable-but-unpicked one empty"). The test passes while asserting a parity the code does not have, so the gap is invisible from the suite.

Whichever way you settle it, the two gates should read the same field — otherwise the composer and the daemon will keep disagreeing about which agents are startable.

Pullfrog  | Fix all ➔Fix 👍s ➔View workflow run | Using Claude Opus𝕏

Comment thread packages/client/workbench/src/settings/providers/default-models.ts Outdated
Comment thread packages/client/workbench/src/surface/workbench.tsx Outdated
Comment thread packages/presentation/ui/src/shell/new-session-surface.tsx Outdated
"Provider" meant two different things in adjacent UI: the composer's provider
picker chose the *agent*, while the Providers settings page means accounts.
`onOpenProviderSettings: (kind: AgentKind) => void` had both in one signature.

Agent-meaning UI text and client identifiers now say harness —
`selectableHarnesses`, `onHarnessChange`, `lastHarness`, and the composer's menu
label. Account-meaning strings keep "provider", `AgentKind` and every wire and
daemon term are untouched, and `groupModelsByProvider` stays as the one genuine
model-provider use. Same UI/i18n-only discipline already recorded for
Thread/`session`.

Two things this turned up. Translation keys are not typechecked, so the rename
would have silently emptied strings — a test asserting the old menu label is what
caught it. And the store test had hand-copied its storage key, which drifted at
the previous version bump and had quietly turned the malformed-blob test into a
vacuous pass; the key is now exported and imported, and the test verified to fail
against a well-formed blob.
Copilot AI review requested due to automatic review settings August 6, 2026 13:54

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@PeronGH

PeronGH commented Aug 6, 2026

Copy link
Copy Markdown
Member Author

12fde617 — the Provider → Harness rename, kept as the last commit so a broad textual change does not hide logic.

Why

"Provider" meant two different things in adjacent UI. The composer's provider picker chose the agent; the Providers settings page means accounts. onOpenProviderSettings: (kind: AgentKind) => void had both meanings in a single signature.

What moved

Agent-meaning UI text and client identifiers now say harness:

  • i18n: composer.providerharness, and the {provider} interpolations in plugins.discoveryFailed / runtimeMissing and historyImport.panelTitle / emptyHint
  • identifiers: SELECTABLE_PROVIDERSSELECTABLE_HARNESSES, selectableProvidersselectableHarnesses, onProviderChange / onSelectProvideronHarnessChange / onSelectHarness, ModelSelectorMenu's provider prop → harness, new-session's provider state and initialProviderharness / initialHarness, lastProviderlastHarness

Unchanged on purpose: account-meaning strings (the settings nav providers, providers.title, boundNote, noProvider), AgentKind and every wire/daemon term, and groupModelsByProvider — the one genuine model provider use. Same UI/i18n-only discipline already recorded for Thread/session, and the convention is now written into AGENTS.md next to that rule.

Two things the sweep exposed

Translation keys are not typechecked. tsc --build passed clean after the i18n keys were renamed while several call sites still passed the old interpolation names — those strings would have rendered empty at runtime. A test asserting the old menu label is what caught it. Worth knowing for any future i18n rename here: grep the call sites, the compiler will not help.

A test had drifted from the store it tests. new-session-defaults-store.test.ts hand-copied its localStorage key, which went stale at the v6 bump in 8634d2c8 — so "discards malformed persisted selections at the schema boundary" had been asserting against a key nothing reads, passing for the wrong reason. The key is now exported from the store and imported by the test, verified to fail against a well-formed blob before the malformed one was restored.

Deliberately out of scope

historyImportProvider / setHistoryImportProvider in the desktop settings store also means the agent. It was not in the plan, it lives in apps/desktop, and it touches a persisted store key — while the user-visible string it feeds (panelTitle) is already renamed. Left for a follow-up rather than widening this sweep.

Checks

pnpm check:ci exits 0. pnpm test: 2749 passing, with the known packages/host/assets registry loopback failure — outside this change's module graph.

Pure rename: no behaviour moved, so the manual pass still outstanding for this PR is the one described in the previous comment.

@pullfrog pullfrog Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ℹ️ The rename is clean — nothing new is broken by it. The findings from both earlier reviews still reproduce at this HEAD, untouched by this commit, so this isn't an approval.

Reviewed changes — one commit since the prior review (8634d2c12fde61): a UI/i18n-only rename of the agent meaning of "provider" to "harness".

  • Renamed the agent-meaning client identifiersselectableProvidersselectableHarnesses, onProviderChangeonHarnessChange, NewSessionDraft.initialProviderinitialHarness, lastProviderlastHarness, across the composer, the new-session surface, the workbench, and the desktop history-import tab. AgentKind and every wire/daemon term are untouched, and groupModelsByProvider is left as the genuine model-provider use. I read the commit line by line: it is mechanical — no branch, guard, or ordering changed.
  • Renamed three interpolation placeholders and one label{provider}{harness} in plugins.discoveryFailed, plugins.runtimeMissing and historyImport.panelTitle, plus composer.providercomposer.harness, in both locales. Checked each against its call site (plugins-tab.tsx:81,92, history-import-tab.tsx:74, composer-controls.tsx:296); no {provider} placeholder is left in either locale, and no call site passes a name the string no longer has.
  • Bumped the defaults storage key to :v7 and exported it — correct per the frontend rule (bump on any shape change), and it costs released users nothing beyond the :v6 bump already in this PR. The test's hand-copied :v5 had been writing to a key nothing read; with the key imported, the malformed-blob fixture really is rejected — 'unsupported' is not in EffortLevelSchema (low|medium|high|xhigh|max|ultra|ultracode), so that case is no longer vacuous.
  • Recorded the terminology rule in AGENTS.md — provider = account/service, harness = agent, with groupModelsByProvider named as the exception.

I ran the suites this commit touches — new-session-defaults-store, new-session-surface, and the ui plugins tests: 55 tests, all passing.

Pullfrog  | Fix all ➔Fix 👍s ➔View workflow run | Using Claude Opus𝕏

Comment thread packages/client/workbench/src/surface/new-session-defaults-store.ts
Copilot AI review requested due to automatic review settings August 7, 2026 06:17

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@PeronGH

PeronGH commented Aug 7, 2026

Copy link
Copy Markdown
Member Author

Live account switching, via the existing restart machinery

Four commits (b36c706d..c8c91cab) that undo a constraint this PR introduced.

1608dc43 opened the new-session picker to every account an agent can bind, but scoped the live picker to the session's own account, on the stated reasoning that a running session cannot change account. That holds for in-place switching only — credentials and base URL are injected at spawn — but nothing checked whether respawning was available, and it is. claude-code already closes its process and respawns for an effort transition in/out of max, and codex does the same on an auth change. A cross-account switch is that same operation with a different trigger.

b36c706d — engine refactor, no behaviour change

resumeSession and rewritePrompt each carried their own copy of resolve → tear down → record run → startLive, and disagreed on the third step: resumeSession pushed to record.runs directly while rewritePrompt went through beginRun. Extracted resolveForRecord / launchRun / resumeStrategy and rewrote both on top; beginRun gained a historyId parameter and is now the only writer of a relaunch's run entry.

Kept separate and behaviour-free on purpose — the existing lifecycle tests pass untouched, which is the evidence that the extraction didn't move semantics. Treat any change needed there in review as a signal I got it wrong.

e4e149df — the switch

AgentInput's set-model gains an optional accountId. Additive, and wire 74 is already unshipped on this branch, so no further bump.

SessionLifecycleService.switchModel refuses in this order, all before any teardown:

  1. unknown session → not_found
  2. not running → conflict
  3. same account → delegates to the in-place sendInput path (no restart for an in-account model change)
  4. a turn is active → conflict
  5. no provider transcript → conflict — relaunching would silently start a fresh conversation in place of the one on screen
  6. the agent cannot resume → unsupported

Only then: resolve with { model, config: { accountId } }stopForReplacement → relaunch with the resume strategy. No adapter changes; the old adapter is destroyed and a new one constructed from fresh StartOptions, so opencode's cross-provider rejection in onSetModel is untouched and remains correct for the in-place path, which is now the only one that reaches it.

Two things worth flagging for review, both caught while implementing:

  • The reply had to stay an ack. agent.input registers an ack pending client-side, and session.started resolves only the start map. Routing the switch through startLive's reply channel would have left a successful switch hanging forever. It calls launchRun with replyTo: undefined and the handler sends request.succeeded, so the client contract is unchanged. The cost is that MCP warnings from the re-resolve are dropped — the ack shape has no field for them.
  • The resume check reads the running adapter. Via a new orchestrator.historyCapabilities(sessionId), not the adapter factory. My first attempt asked the factory and silently constructed a throwaway adapter; the test caught it as an off-by-one in the adapter count. Asking the live instance is also the more correct question.

Five tests, including the one that matters most: a refused switch on a resume-less agent leaves the session live and unstopped. Without check 6 the teardown happens first and history.resume fails afterwards — the thread would be gone.

d589b936 — client

Reverts the scoping half of 1608dc43. useSessionModelOptions / accountModelOptionsFor and the sessionModels prop chain are deleted; the live surface takes accountModels?.[active.kind], with the session's own accountId still supplied as currentAccountId so the current entry resolves.

The pick rebinds the account globally. handleModelChange passes the account to persistPickedModel, so withModel moves providers[kind].activeAccountId — the same thing the new-session picker already does. This is deliberate and is what makes the switch outlive the running adapter: a later resume resolves from daemon config, not from the run it is reviving. Since 8634d2c8 made that config the single owner of the model pick, a per-session pin would have created a second owner. Consequence worth knowing: other threads on the old account keep running (credentials are spawn-fixed) but resolve the new account on their next respawn — same semantics as a rebind through Settings, just a new entry point.

Cross-account entries carry a one-line hint, gated on a new accountSwitchRestarts flag so the new-session draft — which also passes a currentAccountId — stays unmarked. The predicate is switchesAccount in agent-models.ts, unit-tested.

c8c91cab — docs

pi's capability row in the matrix was wrong (native/pi/adapter.ts:184 sets list/read/resume/branch all true, the matrix said ). Also records that onSetModel only ever sees same-account switches, and rewrites the SessionInfo.accountId comment that asserted the old constraint.

Verification

pnpm check:ci green. pnpm test is 2755 passed / 1 failed — packages/host/assets registry-client.test.ts times out on loopback, a pre-existing environment failure on my machine unrelated to this change.

Still outstanding, and the gap for this PR overall: the driven check. With two accounts bound to claude-code, start a thread on one, send a turn, then pick the other account's model from the live menu — the thread should restart, resume its transcript, and run the next turn against the new account. Also worth confirming the mid-turn refusal surfaces a visible reason: the engine returns conflict with a message, but I haven't seen how the composer renders it.

@pullfrog pullfrog Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caution

The new cross-account switch works, but the client is never told it happened. beginRun is the only writer of the accountId the UI reads and the only record mutator that skips onChanged, so after a switch the composer still names the old account — which inverts the "restarts this thread" hint it just showed. Details inline on session-record-registry.ts.

Reviewed changes — four commits since the prior review (12fde61c8c91ca), adding live cross-account model switching:

  • SessionLifecycleService.switchModel (lifecycle-service.ts:336-403) — a same-account pick forwards in place via sendInput; a cross-account pick relaunches the session under the same id and resumes the provider transcript. agent.input routes to it only when set-model carries an accountId (request-handler.ts), so the old path is untouched for every other input. The guard order is right and deliberately so: busy / no-transcript / no-resume are all asked before stopForReplacement, and the comment at line 375 says why. I checked the TOCTOU — the whole body runs under the permit-1 session semaphore, so isBusy cannot go stale before the teardown.
  • Three extracted helpersresolveForRecord, launchRun, resumeStrategy, with branch and resume refactored onto them. launchRun becoming the single writer of a run entry is a real simplification.
  • Per-run account attributionbeginRun(sessionId, accountId?, historyId?), latestAccountId (reverse scan, correctly documented as "a rebind between runs is legitimate"), and accountId added to SessionRun / SessionInfo / the list() projection. The schema doc states the contract plainly: "Latest run's account — what the session is talking to now."
  • set-model gains an optional accountId through the whole client stack (control-channelclient-coresdkoperations), additively, so the existing wire floor still holds.
  • The restart hintswitchesAccount + ModelMenuItem + modelSwitchRestarts in both locales. I verified all three render branches of the model menu pass the hint, the string exists in zh-cn.ts (the type source) and en.ts, neither has an interpolation placeholder, and it renders as real text a screen reader reaches.
  • Docs — the new agent-adapter/AGENTS.md bullet ("A live session can change account, but never in place") is exactly the right place for this, and pi's resume column flip to matches the code.

I traced the two things most likely to be wrong here and they are fine: the resumed transcript is not duplicated (the seed's coveredBySeed dedupes by message/tool id), and a failed relaunch is cleaned up properly — startLive's tapError calls discardFailedStart regardless of replyTo, which releases the simulator MCP token, so there is no leak. The engine test suite's live account switching block is genuine coverage, not theatre: it asserts run 2 carries acc_second and that resumedWith.config.apiKey === 'sk-second', and the no-resume case asserts adapters[0].stopped === false to prove the refusal precedes teardown.

Three defects below. All five findings from the three earlier reviews still reproduce at this HEADprobeSecret still takes no service, displayedModel keeps the catalog?.defaultModel arm, accountModelOptions still keys on bindable, workbench.tsx:412 still early-returns before persistPickedModel, and the submit spread still guards on localModel !== null. Not re-raised here; that is why this isn't an approval.

🔴 The relaunch is invisible to the client, and the hint inverts because of it

Anchored inline on session-record-registry.ts. The chain, since it crosses three packages:

beginRun calls persist() but not onChanged() — the only record mutator that doesn't. Every sibling does: register, importRecord, delete, bindHistoryId, setTitleFromContent, setProviderTitle. session.changed is the only revalidation cue for listSessions (client.ts:1217, "the payload is a cue to revalidate through listSessions"), and handleModelChange (workbench.tsx:465-482) never calls mutate() either. launchRun is invoked with replyTo: undefined, and startLive sends session.started only when replyTo !== undefined, so that frame doesn't arrive as a substitute. I checked the whole setModel path down through sdk/operations.ts for a cache invalidation and there is none.

The one path that would have healed it is disarmed by design. bindHistoryId fires onChanged, but it early-returns on run.historyId === historyId (line 127) — and switchModel passes the resumed historyId straight into beginRun, so the new adapter's session-ref announces the id the record already holds and the notify is skipped. The registry's own doc comment at line 141 names this case ("historyId is known up front only when the relaunch resumes a transcript"). So the staleness is not a brief window; it persists until some unrelated session is created, removed, or retitled.

accountId reaches the menu as active?.accountId off that list (shell-frame.tsx:249, desktop-shell.tsx:457). After switching acc_A → acc_B the UI still believes acc_A, so switchesAccount is evaluated against the wrong side and the hint reverses: entries for acc_B — the account the session is now on, where a pick is a harmless in-place set-model — are labelled "Switching account restarts this thread and resumes it", while entries for acc_A, which now genuinely do relaunch, are labelled nothing at all. The second thread restart is the one the feature exists to warn about, and it happens silently. resolveModel(pickable, displayedModel, currentAccountId) is scoped by the same stale id, so a reflected model resolves against the wrong account's entries.

🟠 A session with no recorded account gets no hint, but the daemon still relaunches it

Anchored inline on agent-models.ts. switchesAccount returns false when currentAccountId is undefined, but switchModel compares records.accountId(sessionId) === accountId — and undefined === 'acc_x' is false, so it takes the relaunch branch. A session running on an agent's own CLI login or the legacy providers[kind].apiKey fallback records no account at all, and those are precisely the sessions whose menu is filled with other accounts' models, because accountModelOptions keys on bindable rather than bound (the still-open default-models.ts thread).

The new test pins the undefined case as intentional, but with a draft rationale — "A draft has no running account" — while the same function also serves the live thread through ConversationSurface. The draft is already covered by accountSwitchRestarts defaulting to false, so the undefined arm isn't what protects it.

🟠 Mid-session effort and approval-policy don't survive the relaunch

lifecycle-service.ts:391 — anchored inline. resolveForRecord's override is Pick<StartOptions, 'model' | 'config'>, so the relaunch re-derives everything else from the record (kind, cwd) plus daemon config. The state a user set on the live session via agent.inputset-effort, set-approval-policy — is cached on the LiveSession instance (live-session.ts:145-146, 169-171), which stopForReplacement destroys; the new instance starts empty. snapshot() replays that cache to an attaching client, not across a relaunch.

This is correct for branch and resume, which the user understands as restarts. switchModel is presented as picking a model from a menu, so an unannounced effort reset is a different contract. agent-adapter/AGENTS.md:112 notes StartOptions.effort enters through onSetEffort before onStart, so carrying it is a matter of threading the live values into the override.

ℹ️ Nitpicks

  • The hint promises a restart in cases the daemon refuses outright. accountSwitchRestarts is hardcoded true at the ConversationSurface call site, but switchModel rejects rather than relaunching when the session is busy, has no historyId, or the agent can't resume — grok-build is for resume in the capability matrix yet ✓ (next turn) for set-model, so every cross-account entry in its menu advertises a restart-and-resume that can only produce an error in the banner. All three conditions are knowable client-side (status, historyId and capabilities are already on the session).
  • The relaunch has no rollback. stopForReplacement precedes launchRun, so a relaunch that fails on the new account's credential leaves a thread that was mid-conversation stopped. Cleanup and the error reply are both correct — this is the design's cost, not a bug — but it is reachable from a single menu click, and combined with the missing session.changed the sidebar won't show the stopped status either.
  • Test gaps that match the findings above: nothing covers a launchRun failure after teardown, nothing asserts effort survives (or doesn't) a relaunch, and no test renders accountSwitchRestarts with a multi-account list to assert the hint text — switchesAccount has unit coverage, but the prop-to-rendered-hint path does not.

Pullfrog  | Fix all ➔Fix 👍s ➔View workflow run | Using Claude Opus𝕏

Comment thread packages/host/engine/src/session/session-record-registry.ts
Comment thread packages/presentation/ui/src/shell/agent-models.ts
Comment thread packages/host/engine/src/session/lifecycle-service.ts Outdated
Copilot AI review requested due to automatic review settings August 8, 2026 09:58

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@pullfrog pullfrog Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

The mid-run pick now survives a relaunch, but model-update isn't the "a switch was accepted" signal the new comment assumes — adapters also emit it at launch to reflect what they resolved, and that reflection is now latched as a durable model override.

Re-reviewed acca89dc..f91b7235 (11 files, +194/−36). All six threads from the previous review are addressed; five are resolved, and session-record-registry.ts:213 stays open because the fix it asked for has a residual gap (inline on provider-config.ts).

Landed well

  • setRunModel's "notifies nobody" rationale checks out — SessionInfoSchema in schema/src/model/session/record.ts projects historyId and accountId but not model, so there's no identity change to broadcast.
  • pickableModels promoted to shell/agent-models.ts and made null-tolerant is the right shape, and conversation-surface.tsx now derives throughAccount from accountId instead of ??-replacing the live catalog. The union entries keep distinct modelChoiceKeys (account entries carry accountId, adapter-catalog entries don't), so no key collision.
  • Both new engine tests fail without their fix — I checked the deleted-account one refuses to pass against the pre-f91b723 resolver.

Two things to look at, both inline.

Pullfrog  | Fix all ➔Fix 👍s ➔View workflow run | Using Claude Opus𝕏

Comment thread packages/host/engine/src/session/session-event-processor.ts Outdated
Comment thread packages/host/engine/src/agent/provider-config.ts Outdated
… by what resolved for it

Two fields each carried a request and an observation: `StartOptions.config.accountId`
was both the client's pin and the resolver's echo of what resolved, and
`SessionRun.model` was documented as what a run resolved to while `pinnedOptions`
replayed it as a choice. Splitting both removes the patches that reconciled them.
Copilot AI review requested due to automatic review settings August 10, 2026 02:41

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@PeronGH
PeronGH requested a review from lucas77778 August 10, 2026 02:51

@pullfrog pullfrog Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

edda106's split is right and both review-7 findings are structurally fixed. But the per-run pin the whole design now rests on is never written to disk: session_runs has no columns for accountId, model, effort or approvalPolicyId, so setRunIntent's persist(record) drops the four fields it just recorded. After a daemon restart a thread silently returns to activeAccountId.

Re-reviewed f91b7235..5bd3c4df (13 files, +297/−148) — edda1063 plus a docs-only commit. All 11 prior pullfrog threads across reviews 4, 6 and 7 are already resolved with substantive author replies; nothing to retire.

Both review-7 findings are fixed structurally rather than patched. Splitting the request (StartOptions.accountId) from the resolution (AppliedProviderDefaults.accountId) removes the early-return ordering trap outright — no widened guard needed. And moving pick-recording out of session-event-processor.ts into applyInputrecordAccepted means an adapter's launch-time model-update reflection can never be mistaken for user intent, which is what made the declined endedAt guard genuinely unnecessary. Review 4's deferred PRRT_kwDOS8Iqx86XMT0_ (mid-session effort/approval lost on relaunch) is also closed by pinning those two fields.

Checked and clear

Four hypotheses I chased and falsified — recording them so they aren't re-raised:

  • Pinning effort/approvalPolicyId off a non-throwing call is not bogus. packages/host/agent-adapter/src/base.ts:206-215onSetApprovalPolicy and onSetEffort both default to Promise.reject(...), so "didn't throw" really does mean the adapter accepted it. onSetMode at :202 returns Promise.resolve(), which is exactly why modeId is correctly excluded from the pin.
  • Client-side accountId wiring is complete. workbench.tsx:383,468control-channel.ts:103,272; the per-session pin reaches the daemon on both the start and the switch path.
  • The wire floor is right. 75/75 — every schema change in this PR is additive-optional, so the MIN_COMPATIBLE_WIRE_VERSION bump to 75 alongside WIRE_PROTOCOL_VERSION is consistent with what actually changed.
  • Routing every agent.input through applyInput does not regress plain set-model. LiveSession.run forks into the session scope (live-session.ts:68-78) rather than serializing, so the widened path does not hold the permit-1 semaphore across a turn; and sendInput already threw not_found via requireSession before this PR, so switchModel's new conflict: Session is not running is not a new failure mode.

One observation, no change requested

If the pinned account later stops being bindable (revoked OAuth, a service whose templated endpoint is no longer filled), the thread refuses to resume rather than falling back to the configured default. That asymmetry is deliberate and documented — packages/foundation/providers/AGENTS.md says an unavailable binding "must fail a session start loudly" — so I'm not asking for a fallback. Worth noting the interaction, though: today a daemon restart is what clears such a strand, and only because the pin isn't persisted. Fixing the finding above removes that accidental escape hatch, so it's worth deciding then whether a stranded thread needs a user-visible way out.

Pullfrog  | Fix all ➔Fix 👍s ➔View workflow run | Using Claude Opus𝕏

Comment thread packages/foundation/schema/src/model/session/record.ts
`session_runs` had no columns for the account, model, effort or approval tier, so
every pin was dropped on write and parsed back as `undefined` after any daemon
restart — a thread moved to another account silently returned to the agent's
default. The engine's in-memory store round-trips whole objects and cannot see
this, hence the store-level test.
Copilot AI review requested due to automatic review settings August 10, 2026 03:18

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@pullfrog pullfrog Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ No new issues found. The persistence fix is complete and I verified it end-to-end, including the parts a migration generator can quietly get wrong.

Reviewed changes — one commit since the prior review (5bd3c4df6293aad2, 7 files, +999/−0, purely additive), closing review 8's finding that the per-run pin never reached disk.

  • Four nullable columns on session_runsaccount_id, model, effort, approval_policy_id in apps/daemon/src/db/schema.ts, with a doc comment stating why each must round-trip. All five optional fields on SessionRunSchema now have a column; nothing is left behind.
  • Both mapping sitessave's values(...) and toRecord's runs.map(...) in session-store.ts, ?? null on write and ?? undefined on read, matching the existing historyId treatment.
  • Generated migration 0009_add_session_run_pin — I checked the three things a hand-edit or a bad regen breaks: 0009_snapshot.prevId (df784a45…) equals 0008_snapshot.id, the journal when (1786331414776) is monotonic after 0008's, and the four ALTER TABLE … ADD statements are valid SQLite. Given reconcileMigrationLedger keys "already applied" on hash and when, this is exactly the shape that upgrades cleanly and re-runs on nobody.
  • A store-level round-trip testapps/daemon/src/__tests__/session-store.test.ts. The first case deep-equals a fully-populated two-run record across two createSessionStore instances, which is the assertion that actually fails against the old mapping; a looser check on one field would not have. Both tests pass locally.
  • The trap recorded in apps/daemon/AGENTS.md — "a record field with no column is dropped in silence", naming the three edits plus a migration and stating that InMemorySessionStore structurally cannot catch a miss. That is the durable half of this fix, and it is in the right file.

I also traced the fix past the repo: the migration reaches packaged desktop users, not just dev. vite.main.config.mts:66-68 cpSyncs apps/daemon/drizzle into out/drizzle, and scripts/verify-artifacts.mts:109 gates the asar on out/drizzle/meta/_journal.json — so a dropped migrations folder fails the release rather than shipping a daemon that boots without the columns.

ℹ️ The stranded-pin question review 8 deferred — it answers itself

Review 8 flagged that a daemon restart was, accidentally, the only thing clearing a thread pinned to an account that had stopped being bindable, and deferred "does a stranded thread need a user-visible way out?" until the pin was durable. It is durable now, so: there is already a way out, and no change is needed.

resolveAccount (packages/host/engine/src/agent/provider-config.ts:90-96) iterates [opts.accountId, config?.activeAccountId] and accounts.finds each id, so an account deleted from the pool simply misses on the pin and falls through to the agent's default. Only a present-but-unavailable account strands the thread, and both repairing it (re-auth, filling the templated endpoint) and deleting it clear the strand from Settings. Blunt, but reachable without a terminal — and refusing loudly in the meantime is the documented policy in packages/foundation/providers/AGENTS.md. Recording this so it isn't re-opened.

Pullfrog  | View workflow run | Using Claude Opus𝕏

A delegated subscription is an account like any other, so the host creates it from the
runtime probe instead of waiting for the user to import it from a suggestion card.
…ot connected'

The badge read as a connection state while it only meant no agent falls back to this
account, so a signed-in subscription and a working key both reported not connected.
… the list header

Neither answered a question the list itself does not: the rows are the account count, and
the binding tally described a fallback the user never reads at that altitude.
Copilot AI review requested due to automatic review settings August 10, 2026 06:32

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@pullfrog pullfrog Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ℹ️ Adoption itself is sound and the tests are real. One comment in engine.ts asserts a client-revalidation property that doesn't exist — inline. Plus one product decision worth confirming deliberately, since the deleted card was the only opt-out.

Reviewed changes — three commits since review 9 (6293aad23a32223, 13 files, +185/−133): detected agent-CLI logins are now adopted into the account pool by the daemon, and the client-side suggestion card that used to do it is removed.

  • adoptDetectedLogins (packages/host/engine/src/agent/detected-logins.ts) — mints one acc_ OAuth account per logged-in CLI that no account represents yet, and binds nothing. I checked the read-then-write the comment warns about: both ProviderConfigStore.update implementations (provider-config.ts, apps/daemon/src/provider-store.ts) are synchronous, so getAccounts()await update(...) has no interleaving point and the claim holds today. It rests entirely on that — a store that ever awaits a disk write inside update reopens the window the comment closes.
  • Wired into AgentRuntimeService's onChanged, so adoption runs on every probe result. detectedLogins filters on already-represented, so repeats are no-ops.
  • Three engine tests asserting the right thingsexpect(providerStore.get()).toEqual({}) pins "adopted but not bound", which is the property everything below depends on, and the concurrent-write case asserts the other side's account survives rather than just checking a count.
  • The suggestion card, the account/bound count header, and the unbound "Not connected" badge are gone from account-master-list.tsx, with onAdoptDetected / handleAdoptDetected removed behind them. I checked for orphans: settings.providers.detected, accountCount, boundCount and unbound are dropped from both locales; the surviving detected at en.ts:997 is runtimeSource.detected, still used; loggedIn still has three call sites; PlusIcon and ServiceIcon are still referenced in the file.
  • The send gate is untouched — I traced this specifically because review 2's finding lived exactly here. An adopted OAuth account is bindable only for its own agent (resolve.ts:48-52), and the only two OAuth services are claude-code and codex, both of which have static AGENT_MODEL_OPTIONS entries. So accountModelOptions[kind] going from absent to [] unions back to the identical list, and throughAccount keys on activeAccountId, which adoption never sets. No agent's menu shrinks and sendBlocked cannot arm from an adopted account.

Adoption has no opt-out, and deleting an adopted account undoes itself

No line to anchor this to, and it may well be the intent — but it's a behavior change that the diff makes silently, so it's worth confirming rather than inheriting. The card this delta deletes was the opt-in; nothing replaces it. detected-logins.ts's doc owns the headline consequence — "a user who deletes the account gets it back on the next probe" — and the reasoning (the pool describes what exists) is coherent. Two second-order effects it doesn't cover:

  • It isn't only "the next probe". startSeed commits with pushUnchanged: true, so onChanged — and therefore adoption — fires on every daemon restart even when the runtime snapshot is identical. There is no state in which a deleted CLI-login account stays deleted while the CLI stays logged in.
  • Re-adoption mints a new acc_ uuid. Anything keyed on the old id doesn't follow it: providers[kind].enabledAccountIds, activeAccountId, and the SessionRun.accountId pins this PR just made durable on existing threads. So a delete/re-adopt cycle doesn't restore the prior state — it silently unpins threads that were running on that account.

Neither is a defect if the answer is "the user manages this by logging out of the CLI." If it isn't, an opt-out flag is a lot cheaper than bringing the card back.

Pullfrog  | Fix all ➔Fix 👍s ➔View workflow run | Using Claude Opus𝕏

Comment thread packages/host/engine/src/engine.ts
…one place

Both sides need the same ordered list — the composer to show its head, the daemon to start
on it — so it cannot be derived independently per side.
The composer read two daemon-configured defaults to decide what an unpicked draft runs on and
whether the agent's own catalog was a candidate at all. It now reads the list: the accounts'
models lead it, the agent's own follow, and with no account the agent's advertised default is
the only honest thing to show.
… per-agent state

The account dialog carried a second axis — a star naming the agent's fallback, and a model
select on that one pairing — whose whole job was to fill defaults nothing reads any more. What
is left is one switch, and the rows that read it now answer 'which agents offer this account'.
…ring one

BREAKING: `ProviderConfig` loses `activeAccountId` and `model`, and `config.account.create-and-bind`
is gone, so both wire versions move to 76. A request that names no account or model resolves to
the head of the agent's enabled-account model list — the entry the composer already shows — so
neither side stores an answer the other can contradict. `loadConfig` folds an old default account
into the enabled list rather than dropping the access it granted.
…carries

The menu drew from three sources and the account switches governed one of them, so turning a
subscription off left its models in place. The agent's own catalog is no longer a source at all:
the curated table moves to the provider layer, where an adopted CLI login is seeded with it, and
every row in the picker now belongs to an account a switch can take away.
Copilot AI review requested due to automatic review settings August 10, 2026 13:53

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@lucas77778
lucas77778 merged commit 084933c into master Aug 10, 2026
10 of 11 checks passed
@lucas77778
lucas77778 deleted the zichen/code-574 branch August 10, 2026 14:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants