Skip to content

fix(server): discover project skills for Claude - #9210

Merged
maria-rcks merged 1 commit into
pingdotgg:mainfrom
anirudhsama:fix/claude-project-skills
Sep 2, 2026
Merged

maria-rcks merged 1 commit into
pingdotgg:mainfrom
anirudhsama:fix/claude-project-skills

Conversation

@anirudhsama

@anirudhsama anirudhsama commented Sep 2, 2026 •

Copy link
Copy Markdown
Contributor

Closes #6449

What changed

The Claude driver now exposes snapshotForCwd, so the workspace snapshot plumbing that #8778 added for Codex and OpenCode applies to Claude as well. The hook reuses the existing filesystem scanner (discoverClaudeSkills) with the thread's working directory and overlays the result on the machine snapshot. Thirteen lines in ClaudeDriver.ts, nothing else.

Why

Claude project skills were scanned from the server's own startup directory (ServerConfig.cwd), so a project's .claude/skills never reached the $ picker or the / menu. #8778 by @UtkarshUsername built the per-cwd snapshot mechanism (registry, reactor trigger, client resolvers) but only wired Codex and OpenCode into it. This is the minimal follow-up for Claude; no subprocess is needed because the scanner already knows Claude Code's discovery rules, so there is no timeout or error mapping either.

Slash commands stay machine-level, matching the Codex and OpenCode implementations. Related but not fixed here: #8757 (scope label collision when the packaged server cwd is $HOME).

Overlaps with #9090 and #9180, which take on more (chip styling, docs, Cursor, Grok, mobile, registry cache changes). This one is offered as the smallest change that closes the Claude gap on its own.

Surfaces

  • Web and desktop: fixed, they already read workspace snapshots.
  • Mobile: not covered. It reads the machine-level skills list directly for every provider, so it needs its own change regardless of this PR.

Verification

  • ClaudeSkills.test.ts and ProviderRegistry.test.ts pass (61 tests).
  • Server typecheck and targeted lint clean.
  • Manual pass on web over the tailnet: a .claude/skills/hello-project skill in a project outside the server cwd appears in the $ picker after the session starts.

Checklist

  • This PR is small and focused
  • I explained what changed and why
  • Screenshots: server-only change, verified manually in the web client

Built with GPT-5.6 Sol in the Codex harness, orchestrated by Claude Fable 5.1 in Claude Code.

🤖 Generated with Claude Code


Note

Low Risk
Small driver-only change reusing existing skill discovery and snapshot overlay pattern; no auth or data-handling changes.

Overview
Claude now participates in the per-workspace snapshot path so project-local .claude/skills show up in the client instead of only skills scanned from the server’s startup directory.

The driver exposes snapshotForCwd, matching Codex and OpenCode: when the provider is enabled it runs getSnapshot and discoverClaudeSkills for the thread’s cwd, then merges the discovered skills onto the machine snapshot (with filesystem/path services provided). When disabled it keeps using the plain machine snapshot.

Reviewed by Cursor Bugbot for commit 8a868fc. Bugbot is set up for automated code reviews on this repo. Configure here.

Note

Fix ClaudeDriver.create to discover project skills per working directory

The provider factory now returns an instance with a snapshotForCwd function. Enabled instances load the base machine snapshot, run Claude skill discovery scoped to the supplied working directory, and merge discovered skills into the snapshot before returning it. Disabled instances expose the same function but return the existing snapshot without running discovery.

  • Behavioral Change: enabled Claude provider instances now produce cwd-specific snapshots that include newly discovered skills, whereas they previously returned a static snapshot.

Macroscope summarized 8a868fc.

The Claude driver scanned project skills from the server's own startup
directory, so a project's .claude/skills never reached the composer.
Expose snapshotForCwd on the Claude instance, reusing the existing
filesystem scanner with the thread's working directory, so the
workspace snapshot plumbing from pingdotgg#8778 applies to Claude too.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
@chatgpt-codex-connector

Copy link
Copy Markdown

You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard.

@github-actions github-actions Bot added vouch:unvouched PR author is not yet trusted in the VOUCHED list. size:S 10-29 changed lines (additions + deletions). labels Sep 2, 2026
@macroscopeapp

macroscopeapp Bot commented Sep 2, 2026

Copy link
Copy Markdown
Contributor

Approvability

Verdict: Approved at 8a868fc

Macroscope's review found this PR approvable — The change is a narrow integration fix that reuses the existing Claude skill scanner to populate workspace-specific snapshots, with no changes to defaults, schemas, deployment, or execution workflows. Its runtime effect is limited to best-effort filesystem discovery for the requested project directory.

You can add or adjust custom eligibility rules. Learn more.

@maria-rcks
maria-rcks merged commit bc918e7 into pingdotgg:main Sep 2, 2026
22 checks passed
juliusmarminge added a commit that referenced this pull request Sep 2, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
github-actions Bot added a commit to omarcresp/t3code-flake that referenced this pull request Sep 2, 2026
## What's Changed
* fix(server): discover project skills for Claude by @anirudhsama in pingdotgg/t3code#9210
* feat(web): redesign provider editor and models list by @StiensWout in pingdotgg/t3code#8508
* fix(web): prevent connection rows from wrapping during removal by @MatthewFeroz in pingdotgg/t3code#8706
* fix(pull-requests): align checkout control with author by @maria-rcks in pingdotgg/t3code#9196
* fix(release): pin patched expo-sharing version by @willsheldon in pingdotgg/t3code#9250
* chore(mobile): update Expo Sharing to 57.0.17 by @StiensWout in pingdotgg/t3code#9248


**Full Changelog**: pingdotgg/t3code@v0.0.39-nightly.20260902.1257...v0.0.39-nightly.20260902.1260

Upstream release: https://github.com/pingdotgg/t3code/releases/tag/v0.0.39-nightly.20260902.1260
sheehanmunim added a commit to munimtechnologies/mtcode that referenced this pull request Sep 2, 2026
…continuation, provider editor redesign, context meter opt-in, linked-PR summaries)

Brings the fork up to origin/main e0da6c6..b57726c. Highlights: continue
active threads across server self-updates (pingdotgg#9167), provider editor and models
list redesign (pingdotgg#8508), opt-in context window meter (pingdotgg#9190), linked-PR summary
RPC with last-good caching (pingdotgg#9176), relay credential refresh before expiry
(pingdotgg#9178), composer draft preserved through worktree setup (pingdotgg#9197), project
skill discovery for Claude (pingdotgg#9210), copy-path on diff headers (pingdotgg#2403), mobile
long-press file references (pingdotgg#9258).

Conflict resolutions (14 files), keep-both unless noted:
- RpcAuthorization / contracts rpc / ws.ts: fork's PR rank, cherry-pick and
  upstream-release RPCs sit beside upstream's new pullRequestsSummary.
- ws.ts route layer: fork's computer task/view brokers plus upstream's
  serverSelfUpdate wrapped in withRunningThreadContinuation.
- PullRequestService: fork's upstream-project reads and scoped diff epochs
  kept; upstream's summary read, refCacheKey and viewer-flight invalidation
  added. invalidate() now scopes diff-only invalidation AND clears viewer
  flights on a whole-workspace refresh. Test file keeps both new suites.
- client-runtime pullRequests: fork's PR stack atoms kept, TTL constant
  takes upstream's new name.
- ChatMarkdown: upstream's one-character gutter rule replaces the fork's
  equivalent digitWidth fix.
- ChatComposer: fork's voice-session button kept; context meter now honours
  settings.contextWindowMeterEnabled.
- ConnectionsSettings: fork's EnvironmentLabelControl kept with upstream's
  min-w-0 truncate.
- mobile ThreadFeed: upstream's markdownLinkHandlers plus the fork's
  onCancelQueuedMessage.
- ClaudeDriver imports: fork's superset. build-desktop-artifact: distro and
  arch both threaded through.

Integration: upstream's restart continuation and the fork's resume-on-restart
both ran at boot on the same orphans. The continuation-marker helpers move to
provider/serverUpdateContinuation.ts and SessionStartupReconciler now defers
any binding carrying the marker to upstream's pass (logged as deferred), so a
thread is never continued twice. Test added.

Dependencies reinstalled for the expo-sharing pin; the stale pnpm copy of
@t3tools/mobile-markdown-text was what broke the mobile typecheck.

Typecheck clean: contracts, shared, client-runtime, server, web, mobile
(desktop exits 1 on a pre-existing warning-level diagnostic). Startup and
self-update suites 36 passing; web sidebar/composer/settings suites 419
passing; fork guard script OK.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
donjor added a commit to RSI-Software/t3code-hyprws that referenced this pull request Sep 2, 2026
… commit

## What Changed

Record `fix(provider): resolve repo skills per workspace (#188)` as a partial retirement in `docs/internals/fork-delta.md`. The superseded scope goes in Retired. The remainder stays in Kept.

## Why

The unblock walk onto `v0.0.39-nightly.20260902.1261` reduced that commit from 546 insertions across 17 files to 35 insertions across 2 server files.

```diff
- providers.workspaceSkills RPC, contract schemas, client atom family, chat-view preference, Codex pair
+ cwd-keyed Claude capabilities probe cache at capacity 16
+ slashCommands merged alongside skills in upstream's snapshotForCwd
```

Upstream `bc918e7` (`pingdotgg#9210`) supplies per-workspace provider snapshots: `snapshotForCwd` on every driver, `refreshWorkspaceSnapshot` in the registry, `workspaceSnapshots` on `ServerProvider`, and the client resolvers. That is what supersedes the dropped scope.

Upstream's `snapshotForCwd` merges `skills` alone. Its capabilities probe cache stays capacity 1, keyed on binary plus resolved HOME. The remainder covers exactly that gap.

A subject in both Retired and Kept is how the ledger spells a partial, so the commit stays in the stack.

**Checks**

- `vp run fork:delta --check`: ok, 220 fork commits tagged.
- `vp run fork:upstream-refs docs/internals/fork-delta.md`: unchanged at 8 pre-existing live references. The new Retired row code-spans its subject and adds none. The 8 predate this branch.

`#492` stays open. Its first `Done when` is a user-visible claim, that a project's `.claude/commands` appear in the Claude menu for a worktree thread. No client pass has been run, so this cannot close it.

Refs #492
Refs #481

Fork-Domain: fork-meta
Fork-Tier: qol
Fork-Upstreamable: no
Co-authored-by: donjor <38745786+donjor@users.noreply.github.com>
donjor added a commit to RSI-Software/t3code-hyprws that referenced this pull request Sep 4, 2026
… commit

## What Changed

Record `fix(provider): resolve repo skills per workspace (#188)` as a partial retirement in `docs/internals/fork-delta.md`. The superseded scope goes in Retired. The remainder stays in Kept.

## Why

The unblock walk onto `v0.0.39-nightly.20260902.1261` reduced that commit from 546 insertions across 17 files to 35 insertions across 2 server files.

```diff
- providers.workspaceSkills RPC, contract schemas, client atom family, chat-view preference, Codex pair
+ cwd-keyed Claude capabilities probe cache at capacity 16
+ slashCommands merged alongside skills in upstream's snapshotForCwd
```

Upstream `bc918e7` (`pingdotgg#9210`) supplies per-workspace provider snapshots: `snapshotForCwd` on every driver, `refreshWorkspaceSnapshot` in the registry, `workspaceSnapshots` on `ServerProvider`, and the client resolvers. That is what supersedes the dropped scope.

Upstream's `snapshotForCwd` merges `skills` alone. Its capabilities probe cache stays capacity 1, keyed on binary plus resolved HOME. The remainder covers exactly that gap.

A subject in both Retired and Kept is how the ledger spells a partial, so the commit stays in the stack.

**Checks**

- `vp run fork:delta --check`: ok, 220 fork commits tagged.
- `vp run fork:upstream-refs docs/internals/fork-delta.md`: unchanged at 8 pre-existing live references. The new Retired row code-spans its subject and adds none. The 8 predate this branch.

`#492` stays open. Its first `Done when` is a user-visible claim, that a project's `.claude/commands` appear in the Claude menu for a worktree thread. No client pass has been run, so this cannot close it.

Refs #492
Refs #481

Fork-Domain: fork-meta
Fork-Tier: qol
Fork-Upstreamable: no
Co-authored-by: donjor <38745786+donjor@users.noreply.github.com>
dascapytal1559 added a commit to dascapytal1559/t3code that referenced this pull request Sep 4, 2026
Conflict resolutions:
- apps/server/src/http.ts: adopt upstream's static route (Cache-Control
  immutable/no-cache split plus ETag revalidation); delete the fork's
  staticResponseCacheControl and http.fork.test.ts.
- packages/client-runtime/src/markdownLinks.ts: keep the fork's `~/`
  inline-code skip on top of upstream's isWindowsAbsolutePath refactor.
- Skill discovery (ProviderDriver.ts, CodexDriver.ts, CodexProvider.ts,
  server.ts, server.test.ts, ws.ts, contracts rpc.ts/server.ts,
  client-runtime state/server.ts, ChatComposer.tsx, mobile
  use-composer-command-menu.ts): adopt upstream's snapshotForCwd workspace
  snapshots; delete ProviderSkillDiscovery, ProviderSkillProbeError, the
  server.listProviderSkills RPC, useProviderContextSkills and the mobile
  passthrough hook.
- ProviderAdapter.ts, ServerEnvironment.ts, CodexAdapter.ts, test
  capability mocks: keep fork `conversationFork` beside upstream's new
  promptlessTurnContinuation / supportsConversationRollback; add
  `conversationFork: "unsupported"` to upstream's new AntigravityAdapter
  and the reconcile test mock.
- MessagesTimeline.tsx: move ForkFromTurnButton into upstream's new
  AssistantMessageMeta (also renders on the assistant-meta row).
- ChatComposer.tsx / ComposerPrimaryActions.tsx / ChatView.tsx: re-add
  the queue handlers beside upstream's submitCitationAndSend; combine
  `!queuedFollowUp` with upstream's sendInteractionModeEnabled guards.
  queuedFollowUpStore adapts to upstream's createDeferredStorage.
- apps/mobile use-thread-composer-state.ts: take upstream's onSendMessage
  body (model availability guard, interaction-mode normalisation) and
  re-add the holdUntilIdle option and onRemoveQueuedMessage.
- FileBrowserPanel.tsx: adopt upstream's pierre-tree-theme extraction and
  append the fork's symlink decoration rule at the unsafeCSS site.
- Mobile HomeScreen / ThreadNavigationSidebar / thread-list-items /
  ThreadComposer / ThreadFilesRouteScreen: keep both sides (fork thread
  menu + upstream machine icons, queue list + model-unavailable notice).
- apps/server/package.json: keep @parcel/watcher; upstream dropped
  @pierre/diffs. pnpm-lock regenerated.
- docs/user/keybindings.md, composer.md, internals/glossary.md: keep the
  queue docs, drop the skills-discovery text.

Post-merge audit:
- FileBreadcrumbs.tsx (new upstream): gate useWorkspaceMutationRefresh
  off in watcher mode so agent turns do not force a full index rescan;
  its test now mocks the fork's entriesEvents/refreshEntries and useState.
- ClaudeAdapter.ts auto-merge checked: fork auth-error restart sits after
  upstream's new terminal_reason failure classification, no overlap.

Reassessed:
- dropped Workspace-aware skills (upstream pingdotgg#9180/pingdotgg#8778/pingdotgg#9210/pingdotgg#9585 scope
  skills and slash commands per project for six providers, with
  coalescing and keep-last-good).
- dropped Deterministic web-client cache headers (upstream pingdotgg#9669 sends
  the same headers plus ETags).
- kept Tilde paths (upstream still expands `~/` against the local home).
- kept the explorer cluster: symlinks, hidden root, lazy listing, watcher
  (upstream changed nothing in apps/server/src/workspace; 25k cap and no
  watcher remain).
- kept Claude auth recovery (handleResultMessage unchanged upstream).
- kept Checkpoint revert prompt return (threadReducer bug still live
  upstream, revert handler takes no prompt).
- kept Queue follow-ups (upstream stash pingdotgg#9644 is restore-only; send while
  running still steers).
- kept Fork a thread (no forkedFrom/threadFork anywhere upstream).
- kept Desktop payload and SSH package spec (untouched).

Known upstream failure carried over: AntigravityAdapter.test.ts "serves
client file reads and writes only inside the session roots" fails on
macOS with upstream's own file (temp dir realpath).

Pre-sync fork: backup/upstream-test-drive-pre-sync-20260905 (63b7242).

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 4, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
donjor added a commit to RSI-Software/t3code-hyprws that referenced this pull request Sep 4, 2026
… commit

## What Changed

Record `fix(provider): resolve repo skills per workspace (#188)` as a partial retirement in `docs/internals/fork-delta.md`. The superseded scope goes in Retired. The remainder stays in Kept.

## Why

The unblock walk onto `v0.0.39-nightly.20260902.1261` reduced that commit from 546 insertions across 17 files to 35 insertions across 2 server files.

```diff
- providers.workspaceSkills RPC, contract schemas, client atom family, chat-view preference, Codex pair
+ cwd-keyed Claude capabilities probe cache at capacity 16
+ slashCommands merged alongside skills in upstream's snapshotForCwd
```

Upstream `bc918e7` (`pingdotgg#9210`) supplies per-workspace provider snapshots: `snapshotForCwd` on every driver, `refreshWorkspaceSnapshot` in the registry, `workspaceSnapshots` on `ServerProvider`, and the client resolvers. That is what supersedes the dropped scope.

Upstream's `snapshotForCwd` merges `skills` alone. Its capabilities probe cache stays capacity 1, keyed on binary plus resolved HOME. The remainder covers exactly that gap.

A subject in both Retired and Kept is how the ledger spells a partial, so the commit stays in the stack.

**Checks**

- `vp run fork:delta --check`: ok, 220 fork commits tagged.
- `vp run fork:upstream-refs docs/internals/fork-delta.md`: unchanged at 8 pre-existing live references. The new Retired row code-spans its subject and adds none. The 8 predate this branch.

`#492` stays open. Its first `Done when` is a user-visible claim, that a project's `.claude/commands` appear in the Claude menu for a worktree thread. No client pass has been run, so this cannot close it.

Refs #492
Refs #481

Fork-Domain: fork-meta
Fork-Tier: qol
Fork-Upstreamable: no
Co-authored-by: donjor <38745786+donjor@users.noreply.github.com>
juliusmarminge added a commit that referenced this pull request Sep 5, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 5, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
donjor added a commit to RSI-Software/t3code-hyprws that referenced this pull request Sep 6, 2026
… commit

## What Changed

Record `fix(provider): resolve repo skills per workspace (#188)` as a partial retirement in `docs/internals/fork-delta.md`. The superseded scope goes in Retired. The remainder stays in Kept.

## Why

The unblock walk onto `v0.0.39-nightly.20260902.1261` reduced that commit from 546 insertions across 17 files to 35 insertions across 2 server files.

```diff
- providers.workspaceSkills RPC, contract schemas, client atom family, chat-view preference, Codex pair
+ cwd-keyed Claude capabilities probe cache at capacity 16
+ slashCommands merged alongside skills in upstream's snapshotForCwd
```

Upstream `bc918e7` (`pingdotgg#9210`) supplies per-workspace provider snapshots: `snapshotForCwd` on every driver, `refreshWorkspaceSnapshot` in the registry, `workspaceSnapshots` on `ServerProvider`, and the client resolvers. That is what supersedes the dropped scope.

Upstream's `snapshotForCwd` merges `skills` alone. Its capabilities probe cache stays capacity 1, keyed on binary plus resolved HOME. The remainder covers exactly that gap.

A subject in both Retired and Kept is how the ledger spells a partial, so the commit stays in the stack.

**Checks**

- `vp run fork:delta --check`: ok, 220 fork commits tagged.
- `vp run fork:upstream-refs docs/internals/fork-delta.md`: unchanged at 8 pre-existing live references. The new Retired row code-spans its subject and adds none. The 8 predate this branch.

`#492` stays open. Its first `Done when` is a user-visible claim, that a project's `.claude/commands` appear in the Claude menu for a worktree thread. No client pass has been run, so this cannot close it.

Refs #492
Refs #481

Fork-Domain: fork-meta
Fork-Tier: qol
Fork-Upstreamable: no
Co-authored-by: donjor <38745786+donjor@users.noreply.github.com>
donjor added a commit to RSI-Software/t3code-hyprws that referenced this pull request Sep 6, 2026
… commit

## What Changed

Record `fix(provider): resolve repo skills per workspace (#188)` as a partial retirement in `docs/internals/fork-delta.md`. The superseded scope goes in Retired. The remainder stays in Kept.

## Why

The unblock walk onto `v0.0.39-nightly.20260902.1261` reduced that commit from 546 insertions across 17 files to 35 insertions across 2 server files.

```diff
- providers.workspaceSkills RPC, contract schemas, client atom family, chat-view preference, Codex pair
+ cwd-keyed Claude capabilities probe cache at capacity 16
+ slashCommands merged alongside skills in upstream's snapshotForCwd
```

Upstream `bc918e7` (`pingdotgg#9210`) supplies per-workspace provider snapshots: `snapshotForCwd` on every driver, `refreshWorkspaceSnapshot` in the registry, `workspaceSnapshots` on `ServerProvider`, and the client resolvers. That is what supersedes the dropped scope.

Upstream's `snapshotForCwd` merges `skills` alone. Its capabilities probe cache stays capacity 1, keyed on binary plus resolved HOME. The remainder covers exactly that gap.

A subject in both Retired and Kept is how the ledger spells a partial, so the commit stays in the stack.

**Checks**

- `vp run fork:delta --check`: ok, 220 fork commits tagged.
- `vp run fork:upstream-refs docs/internals/fork-delta.md`: unchanged at 8 pre-existing live references. The new Retired row code-spans its subject and adds none. The 8 predate this branch.

`#492` stays open. Its first `Done when` is a user-visible claim, that a project's `.claude/commands` appear in the Claude menu for a worktree thread. No client pass has been run, so this cannot close it.

Refs #492
Refs #481

Fork-Domain: fork-meta
Fork-Tier: qol
Fork-Upstreamable: no
Co-authored-by: donjor <38745786+donjor@users.noreply.github.com>
github-actions Bot added a commit to omarcresp/t3code-flake that referenced this pull request Sep 7, 2026
## What's Changed
* fix(web): preserve theme when toggling advanced colors by @StiensWout in https://github.com/pingdotgg/t3code/pull/8500
* fix(chat): keep latest command live between messages by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9098
* fix(media): preview host files and stream videos across clients by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9023
* feat(cli): open projects in the running desktop app by @t3dotgg in https://github.com/pingdotgg/t3code/pull/8824
* chore: vouch six repeat contributors by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9131
* chore: delete dead code, unused deps, and duplicate helpers by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9129
* fix(web): mute routine notices and update actions by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9063
* perf(provider): bound persisted session lookups by @nateEc in https://github.com/pingdotgg/t3code/pull/8909
* fix(claude): skills picked from the composer now run by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9128
* fix(web): stop highlighter freezes and worker spin by using the Oniguruma WASM engine by @LetZico in https://github.com/pingdotgg/t3code/pull/8360
* perf: make streaming projection and activity appends incremental by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9152
* fix(server): bound orchestration replay payloads by @rcawston in https://github.com/pingdotgg/t3code/pull/8992
* perf(client-runtime): keep turn and checkpoint refs stable while streaming by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9145
* perf(clients): lease sidebar status by visibility by @StiensWout in https://github.com/pingdotgg/t3code/pull/9052
* fix(desktop): show newest changes in nightly previews by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9138
* fix(settings): sync auto-settle and other shared preferences across environments by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9147
* fix(server): prevent accidental service downgrades by @t3dotgg in https://github.com/pingdotgg/t3code/pull/5302
* fix(server): keep attachments until the command commits by @t3dotgg in https://github.com/pingdotgg/t3code/pull/7941
* fix(claude): preview images read from the workspace by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9119
* fix(web): keep generated muted foreground dimmer than entered text by @flamboh in https://github.com/pingdotgg/t3code/pull/9113
* fix(clients): stop repeating expanded commands by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9120
* fix(grok): health check, model selection, and stop all work against the real CLI by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9154
* perf(web): halve the cold-start bundle by splitting Clerk and cold routes by @StiensWout in https://github.com/pingdotgg/t3code/pull/9058
* feat(desktop): update the desktop app on remote Macs from the Update button by @t3dotgg in https://github.com/pingdotgg/t3code/pull/6554
* test(server): measure shell, second client, and reconnect transfer by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9157
* fix(web): project default model works on the hosted app by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9142
* fix(web): darken neutral control surfaces by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9064
* fix(web): preserve panel state across workspace refreshes by @maria-rcks in https://github.com/pingdotgg/t3code/pull/8968
* feat(files): open markdown, HTML, and PDF files outside the workspace by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9140
* feat(web): render HTML and PDF files in the file viewer by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9143
* fix(web): compact project settings actions by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9160
* fix(web): browse folders from file breadcrumbs by @404khai in https://github.com/pingdotgg/t3code/pull/8910
* feat(pull-requests): copy provider checkout commands by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9086
* fix(web): hide build pill in narrow sidebars by @flamboh in https://github.com/pingdotgg/t3code/pull/9159
* feat(web): cite assistant responses with inline citations by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9146
* fix(provider): drop removed custom models from the model picker by @StiensWout in https://github.com/pingdotgg/t3code/pull/9075
* fix(web): align composer notices and stash by @Bil0000 in https://github.com/pingdotgg/t3code/pull/8890
* fix(web): label keybinding condition removal actions by @RakshithBhat03 in https://github.com/pingdotgg/t3code/pull/8664
* fix(contracts): accept legacy pull request checkout results by @jakeleventhal in https://github.com/pingdotgg/t3code/pull/8238
* fix(desktop): hold-to-quit no longer gets stuck by @saphid in https://github.com/pingdotgg/t3code/pull/9141
* chore: remove unused code and brittle tests by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9150
* fix(chat): improve tool group summaries and scrolling by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9106
* feat(web): copy the full error report from the error page by @StiensWout in https://github.com/pingdotgg/t3code/pull/9166
* fix(chat): replace failed tools with thinking by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9165
* fix(chat): align failed task progress test by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9172
* fix(web): open PR toast actions in app by @eimexdev in https://github.com/pingdotgg/t3code/pull/9006
* fix(desktop): check artifact build prerequisites by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/8975
* fix(server): discover project skills for Codex and OpenCode by @UtkarshUsername in https://github.com/pingdotgg/t3code/pull/8778
* fix(pull-requests): expand code tab diffs by default by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9174
* chore: bump vendored GhosttyKit and update terminal integration by @Yash-Singh1 in https://github.com/pingdotgg/t3code/pull/9155
* fix(web): copying a code block no longer copies triple backticks by @ipanasenko in https://github.com/pingdotgg/t3code/pull/8448
* fix(models): restore sticky new-thread selections by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9164
* fix(web): model info button opens its details on click by @StiensWout in https://github.com/pingdotgg/t3code/pull/9177
* fix(desktop): skip cached monitor compiler check by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9184
* fix(web): avoid stale file writes on close by @yashranaway in https://github.com/pingdotgg/t3code/pull/8630
* fix(server): bound OpenCode version probes by @yashranaway in https://github.com/pingdotgg/t3code/pull/8750
* fix(server): allow large Azure DevOps PR lists by @Lucenx9 in https://github.com/pingdotgg/t3code/pull/8572
* fix(server): allow local-only worktree bases by @yashranaway in https://github.com/pingdotgg/t3code/pull/8751
* fix(web): remove projects with archived threads by @none23 in https://github.com/pingdotgg/t3code/pull/8798
* feat(web): make context window indicator opt-in by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9190
* fix(connect): refresh relay credentials before expiry by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9178
* fix(pull-requests): reuse github api reads by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9176
* fix(server): stop titling linked PR threads from local git history by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9191
* feat(updates): continue active threads across server restarts by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9167
* fix(mobile): prevent message and composer overlap by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9195
* fix(web): preserve composer draft during worktree setup by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9197
* fix(web): prevent two-digit list markers from being clipped by @G-R3 in https://github.com/pingdotgg/t3code/pull/9101
* fix(server): discover project skills for Claude by @anirudhsama in https://github.com/pingdotgg/t3code/pull/9210
* feat(web): redesign provider editor and models list by @StiensWout in https://github.com/pingdotgg/t3code/pull/8508
* fix(web): prevent connection rows from wrapping during removal by @MatthewFeroz in https://github.com/pingdotgg/t3code/pull/8706
* fix(pull-requests): align checkout control with author by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9196
* fix(release): pin patched expo-sharing version by @willsheldon in https://github.com/pingdotgg/t3code/pull/9250
* chore(mobile): update Expo Sharing to 57.0.17 by @StiensWout in https://github.com/pingdotgg/t3code/pull/9248
* fix(web): hide deleted providers with prototype keys by @Lucenx9 in https://github.com/pingdotgg/t3code/pull/8337
* feat(mobile): long-press file references for path and open actions by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9258
* fix(desktop): exclude opposite macOS pty prebuilds by @extoci in https://github.com/pingdotgg/t3code/pull/9240
* feat(web): add copy path button to diff headers by @ipanasenko in https://github.com/pingdotgg/t3code/pull/2403
* fix(server): subscribe before provider settings watcher by @t3-code[bot] in https://github.com/pingdotgg/t3code/pull/9271
* fix(mobile): show filled filter icon on Android when filters are active by @none23 in https://github.com/pingdotgg/t3code/pull/9217
* fix(chat): show single tool calls without summaries by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9267
* fix(web): warn when shared settings have no target environment by @imabdulazeez in https://github.com/pingdotgg/t3code/pull/9207
* fix(web): confirm closing agent-controlled browsers by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9272
* feat(desktop): browser profiles for the preview browser by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/7254
* refactor(shared): move the node:sqlite Effect SQL client into shared by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/7272
* feat(web): add opt-in panel animations by @maria-rcks in https://github.com/pingdotgg/t3code/pull/8830
* feat(projects): automatically pull clean default branches by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9277
* fix(web): show pull request state icons in tabs by @flamboh in https://github.com/pingdotgg/t3code/pull/9112
* feat(providers): add context compaction across harnesses by @maria-rcks in https://github.com/pingdotgg/t3code/pull/8808
* feat(web): add proactive panels by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9276
* fix(web): unify control sizing across settings pages by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9281
* fix(web): offer browser profiles from the empty-panel launcher by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9279
* Revert "feat(providers): add context compaction across harnesses" by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9284
* fix(web): show scroll-to-end as soon as the last message slips under the composer by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9280
* fix(cursor): honor auto and full access modes by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9283
* fix(desktop): detect installed Spectre libs for Windows builds by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9285
* fix(pull-requests): missing features & better behaviour by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9188
* fix(providers): discover workspace skills everywhere by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9180
* fix(server): preserve automatic settlement timestamps by @eimexdev in https://github.com/pingdotgg/t3code/pull/9254
* fix(opencode): show Reasoning selector for OpenCode models by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9287
* feat(web): preview document attachments in the file viewer by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9292
* chore(ci): narrow the UI consistency check-run agent by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9297
* chore(ci): only run check-run agents on vouched contributors by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9298
* fix(web): stop remounting markdown on every activity delta by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9306
* fix(pull-requests): keep cached PR chrome on reopen by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9294
* feat(environments): draw each environment as the machine it runs on by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9299
* feat(web): apply and remove labels from the pull request tab by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9313
* fix(sidebar): collapse settled and snoozed shelves by default by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9314
* refactor(media): unify file and media previews across clients by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9253
* fix(chat): keep live tool labels in present tense by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9316
* chore: audit lint directives and move plugin allowlists into config by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9300
* chore(ci): narrow the Effect conventions check-run agent by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9321
* refactor(mobile): style plain views with Uniwind classes instead of the theme bridge by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9322
* fix(dev): share dev servers on the loopback Vite actually binds by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9324
* fix(web): line up the titlebar wordmark label and version pill by @tristanmanchester in https://github.com/pingdotgg/t3code/pull/9255
* fix(web): make the diff layout toggle a persisted setting by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9326
* chore: dedupe lightningcss and tailwind node bindings by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9331
* chore: upgrade vite-plus to 0.3.0 by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9327
* feat(web): add a file tree to the diff panel and pull request code tab by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9330
* feat(web): add PageUp/PageDown chat navigation by @Yash-Singh1 in https://github.com/pingdotgg/t3code/pull/9315
* fix(web): collapse PR header actions to icons when narrow by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9334
* fix(web): resolve Vite sourcemap and supports warnings by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9343
* feat(web): choose whether links open in the default browser or in T3 Code by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9339
* fix(web): add press feedback to buttons by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9349
* feat(web): add customizable project icons by @saphid in https://github.com/pingdotgg/t3code/pull/9137
* fix(mobile): stop indented code overflowing Android chat bubbles by @Adamulek123 in https://github.com/pingdotgg/t3code/pull/9347
* fix(web): let the pull request list use wide screens by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9351
* feat: display native app and browser icons in work logs by @Yash-Singh1 in https://github.com/pingdotgg/t3code/pull/9093
* fix(web): collapse oldest pull request comments by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9323
* fix(pull-requests): shared state + not settling? by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9332
* fix(web): stop usage summary requests reporting slow RPCs by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9358
* feat(web): suggest ssh hosts in a dropdown under the host field by @flamboh in https://github.com/pingdotgg/t3code/pull/9171
* feat(web): mod+w closes the active right panel tab before the window by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9363
* test(web): remove static markup-only component tests by @t3-code[bot] in https://github.com/pingdotgg/t3code/pull/9364
* fix(environments): draw the machine icon everywhere an environment is named by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9365
* fix(web): settled sidebar rows use the project fallback icon by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9366
* fix(web): match project icon chooser button sizes by @Yash-Singh1 in https://github.com/pingdotgg/t3code/pull/9368
* fix(mobile): pressed and disabled styles no longer apply unconditionally by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9355
* fix(mobile): size expanded tool groups correctly by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9359
* fix(web): collapse the resting composer by @chrisdeeming in https://github.com/pingdotgg/t3code/pull/7855
* fix(web): keep trailing tool groups out of "Worked for" accordion by @Yash-Singh1 in https://github.com/pingdotgg/t3code/pull/9384
* feat(marketing): put named-developer quotes on the landing page by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9385
* fix(claude): expand slash commands when a message has attachments by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9122
* fix(web): stop the resting composer layout loop by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9393
* fix(web): render assistant images inline in chat by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9126
* feat(providers): add Google Antigravity via the official ACP agent by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9348
* fix(mobile): show an error instead of an endless preview spinner by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9123
* fix(usage): price new models without waiting a day for the rate table by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9202
* fix(web): unlock the composer when preview capture fails by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9127
* fix(antigravity): refresh the model manifest so older Gemini models fold as legacy by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9397
* perf(ci): reuse dependency checks in release builds by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9399
* fix(web): send cited messages with Cmd+Enter by @extoci in https://github.com/pingdotgg/t3code/pull/9307
* fix(web): preserve explicit preview navigation URLs by @nateEc in https://github.com/pingdotgg/t3code/pull/8902
* fix(web): prevent loading ssh environments from overriding navigation by @flamboh in https://github.com/pingdotgg/t3code/pull/9168
* fix(mobile): skip unsupported shared settings targets by @Lucenx9 in https://github.com/pingdotgg/t3code/pull/9381
* fix(web): avoid duplicate Antigravity install status by @RakshithBhat03 in https://github.com/pingdotgg/t3code/pull/9419
* fix(composer): mute fast icon when collapsed by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9451
* fix(web): unify skeleton loading animations on one pulse by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9448
* fix(web): prioritize authored pull requests by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9453
* fix(web): make project icons the default by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9457
* fix(server): reuse pr state when settling threads by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9459
* fix(web): keep agent images collapsed by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9460
* fix(web): banner buttons no longer expand the resting composer by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9452
* fix(web): stop clipping the traits chevron on long Codex effort labels by @zortos293 in https://github.com/pingdotgg/t3code/pull/9433
* fix(web): make right panel tabs easier to scroll by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9461
* fix(web): render transparent previews on white by @UtkarshUsername in https://github.com/pingdotgg/t3code/pull/9463
* fix(mobile): show loading and syncing in the working pill by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9466
* fix(server): keep a/ and b/ prefixes in rendered git patches by @Mnigos in https://github.com/pingdotgg/t3code/pull/9438
* fix(server): full-access OpenCode threads no longer ask for approvals by @shivamhwp in https://github.com/pingdotgg/t3code/pull/9282
* fix(web): reuse pull request list data while loading by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9467
* feat(web): let users turn off composer collapse on blur and scroll by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9469
* fix(web): move workflow approval beside checks by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9465
* fix(desktop): refresh generated annotation styles by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9488
* fix(web): let the PR reviewer and label search boxes take keystrokes by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9479
* fix(web): dont collapse composer when interacting with bottom row by @extoci in https://github.com/pingdotgg/t3code/pull/9490
* fix(desktop): restore second-press quit fallback by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9485
* fix(web): keep opencode icon hollow in collapsed composer by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9492
* fix(web): keep agent browser preview visible by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9484
* fix(mobile): keep the machine glyph next to the environment label by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9486
* fix(mobile): let back swipe pop from horizontal scroll edges by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9493
* fix(antigravity): discover legacy workspace skills by @Lucenx9 in https://github.com/pingdotgg/t3code/pull/9410
* fix(mobile): resolve Antigravity provider icon and normalize driver matching by @Invictine in https://github.com/pingdotgg/t3code/pull/9495
* fix(antigravity): forward Google sign-in URLs from browser helper by @WellyngtonF in https://github.com/pingdotgg/t3code/pull/9425
* feat(desktop): import browser cookies into a profile by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/7255
* feat(desktop): import from Chrome, Edge, Brave, Vivaldi, Opera, Arc and Firefox by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/7260
* feat(desktop): resolve Chromium cookie keys on Linux by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/7261
* fix(antigravity): allow slow runtime startup during setup by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9510
* fix(antigravity): keep model choices up to date by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9511
* fix(antigravity): handle native sign-in URLs on stderr by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9514
* fix(antigravity): update managed runtime to 1.1.1 by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9509
* fix(desktop): address the browser import review left over from the stack by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9516
* feat(antigravity): show subagent calls and results by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9515
* fix(web): let paste expand a resting composer by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9498
* fix(web): keep the composer open while selecting timeline text by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9499
* fix(web): return focus to the composer after closing a media preview by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9513
* fix(server): keep events during thread subscription startup by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9521
* chore: forward issue/PR/discussion events to Cursor hygiene by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9518
* fix(auth): keep pairing credentials out of access read models by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9523
* chore: drop comment events from Cursor hygiene forwarder by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9527
* feat(codex): support async questions by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9512
* fix(web): keep right panel controls clickable by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9517
* feat(usage): show Codex and Claude subscription limits on a Limits tab by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9507
* feat(web): reorganize settings pages by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9354
* fix(server): settle branch threads immediately on pull request merge by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9528
* fix(server): back off relay client restarts after rapid exits by @derektrimm in https://github.com/pingdotgg/t3code/pull/8788
* fix(codex): accept rate limit errors on thread resume by @nateEc in https://github.com/pingdotgg/t3code/pull/8897
* fix(desktop): preview CDP sessions no longer hard-crash the app by @sethwebster in https://github.com/pingdotgg/t3code/pull/9068
* Fix worktree removal timing out on large install trees by @jakeleventhal in https://github.com/pingdotgg/t3code/pull/3902
* fix(web): settle the resting composer layout with a pixel of slack by @matheustimbo in https://github.com/pingdotgg/t3code/pull/9482
* fix(web): keep automatic project icons consistent by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9535
* fix(server): include SQLite conditions in persistence errors by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9536
* fix(dev): keep shared dev reloads and hot updates working by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9543
* feat(providers): add context compaction command by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9293
* fix(mobile): keep store screenshots free of system banners and show dictation by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9548
* fix(web): restore composer controls as space becomes available by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9539
* fix(web): measure collapsed model labels at their visible width by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9540
* fix(web): close composer menus when their controls hide by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9541
* fix(web): thread error banner no longer shifts the chat by @flamboh in https://github.com/pingdotgg/t3code/pull/9473
* fix(server): reveal normalized paths in File Explorer by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9551
* feat(marketing): fresh screenshot and floating marks on the homepage by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9547
* feat(usage): redeem Codex reset credits from the Limits tab by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9534
* fix(server): find newly opened pull requests after agent turns by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9125
* ci: add on-demand Windows test workflow by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9538
* fix(web): simplify expanded tool details by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9549
* fix(web): keep the last message visible when the resting composer expands by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9553
* test(web): fix flaky startup and Tailwind tests by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9558
* fix(web): keep codex restart responses continuous by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9560
* fix(web): make settings sidebar sub-section buttons full width by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9562
* fix(web): render settings sidebar immediately by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9563
* chore: vouch august contributors by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9557
* fix(web): stabilize right panel transitions by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9554
* fix: better shell syntax handling for labels by @Yash-Singh1 in https://github.com/pingdotgg/t3code/pull/9371
* fix(web): align the sidebar wordmark by baseline by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9578
* fix(antigravity): keep subagent batches active after launch by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9579
* fix(mobile): render workspace images in markdown file previews by @SunkenInTime in https://github.com/pingdotgg/t3code/pull/8769
* fix(usage): deduplicate CLI proxy subscription accounts by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9584
* fix(web): bound disconnected send toasts by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9592
* fix(desktop): restore panel titlebar interactions by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9591
* fix(connect): refresh authorization without disconnecting by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9582
* fix(web): show context meter in compact composer by @GuilhermeVieiraDev in https://github.com/pingdotgg/t3code/pull/9430
* fix(pull-requests): refresh data after thread turns by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9496
* fix(web): render draft PRs in gray by @extoci in https://github.com/pingdotgg/t3code/pull/9537
* refactor(web): move usage provider controls to settings by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9599
* fix: show idle subagent batches without completion marks by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9616
* fix(web): group image views like other tool calls by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9597
* fix: preserve tool icons on failed calls by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9606
* fix(connect): diagnose incomplete headless server setup by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9602
* fix(web): keep command palette above composer menus by @Gigioxx in https://github.com/pingdotgg/t3code/pull/9613
* fix(web): snooze menu no longer overlaps thread details by @RakshithBhat03 in https://github.com/pingdotgg/t3code/pull/9601
* fix(web): match composer pull request state icons by @flamboh in https://github.com/pingdotgg/t3code/pull/9375
* fix(server): load OpenCode workspace skills via SDK to avoid 64KB CLI pipe truncation by @BarryHenryJr in https://github.com/pingdotgg/t3code/pull/9585
* fix(web): mute sidebar branch name to match worktree icon by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9622
* fix(web,mobile): fold context compaction under settled turn folds by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9623
* feat(mobile): make chat text selectable on Android by @SunkenInTime in https://github.com/pingdotgg/t3code/pull/8779
* fix(web): toggle a single stashed prompt with Cmd+S by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9644
* fix(server): prevent duplicate desktop clients after restart by @seeb1337 in https://github.com/pingdotgg/t3code/pull/6305
* fix(web): resume Antigravity threads without repeated sign-in by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9647
* feat(mobile): paste the phone clipboard into the terminal by @lnieuwenhuis in https://github.com/pingdotgg/t3code/pull/9199
* feat(web): show which sidebar threads hold an unsent draft by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9658
* fix(server): unblock OpenCode approvals and stop by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9653
* fix(desktop): quit immediately on a second shortcut press by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9657
* fix(server): update Claude Agent SDK to 0.3.260 by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9135
* perf(server): stop loading message bodies for thread summaries by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9662
* perf(web): speed up terminal snapshots by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9663
* fix(web): show machine icons in the environment picker by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9668
* perf(mobile): bound diff syntax highlighting work by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9673
* perf(web): keep Markdown mounted during streaming by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9677
* perf(mobile): skip unused legacy list work by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9679
* perf(marketing): serve images at their display size by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9682
* perf(server): cache and stream static web assets by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9669
* perf(server): batch projector cursor writes by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9671
* perf(server): stop retaining unused OpenCode tool history by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9684
* perf(mobile): reuse chat feed rows during streaming by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9688
* perf(server): omit repeated OpenCode progress logs by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9689
* perf(clients): avoid waiting to read cached relay tokens by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9691
* perf(mobile): reuse diff rows during comment edits by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9693
* perf(web): defer composer draft serialization by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9695
* feat(server): measure provider turn token usage by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9132
* perf(marketing): stop continuous homepage motion by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9697
* perf(server): avoid full patches for checkpoint summaries by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9694
* perf(web): defer diff workers until a code view opens by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9692
* perf(marketing): serve website fonts locally by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9701
* perf(server): stop rebuilding terminal history per chunk by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9703
* perf(server): use one query for buffered provider events by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9706
* perf(relay): avoid repeated activity decoding by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9708
* perf(web): stop continuous chat status animations by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9709
* fix(mobile): preserve saved work after storage read failures by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9710
* perf(web): stop replaying terminal buffers on rollover by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9707
* feat(web): preview pull request links by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9631
* perf(client): reduce thread-list update work by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9716
* fix(server): settle inactive threads with open PRs by @Gigioxx in https://github.com/pingdotgg/t3code/pull/9610
* fix(server): bound slow-client event buffers by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9715
* test(server): allow either valid file-search match by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9720
* fix(web): match provider settings layout for disconnected devices by @flamboh in https://github.com/pingdotgg/t3code/pull/9619
* fix(web): keep the slash menu above the composer when vertical space is short by @Mnigos in https://github.com/pingdotgg/t3code/pull/9625
* fix(mobile): remove provider setup by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9721
* perf(web): stop rendering hidden terminals by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9718
* fix(mobile): read file-backed image drafts before enabling them by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9713
* perf(server): replay only the selected thread by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9726
* fix(web): mute composer helper text by @jakeleventhal in https://github.com/pingdotgg/t3code/pull/9654
* feat(web): unpin threads from the sidebar multi-select menu by @gsimone in https://github.com/pingdotgg/t3code/pull/9651
* perf(web): reuse timeline rows while text streams by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9725
* fix(relay): bound stalled push requests by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9734
* perf(server): stop caching unused OpenCode tool parts by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9738
* fix(web): fold single trailing activity by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9739
* fix(web): show project settings for new threads by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9743
* perf(mobile): bound the parsed review cache by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9749
* perf(web): avoid repeated terminal metadata scans by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9747
* perf(server): bound terminal history by bytes by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9748
* feat(web): link pull request authors to profiles by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9627
* fix(web): refine server update notice by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9744
* perf(client): stop thread streams when unused by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9740
* perf(mobile): defer file preview highlighter startup by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9752
* perf(server): skip history reads for metadata commands by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9758
* perf(web): defer image URL requests for thread history by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9760
* fix(models): make GPT-6-Astra current by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9762
* fix(web): stop empty diffs replacing pull requests by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9753
* fix(sidebar): mute background working threads by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9759
* fix(web): reset automatic pull to default by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9763
* fix(web): restore file comment focus in editable preview by @ShpetimA in https://github.com/pingdotgg/t3code/pull/9061
* docs: keep internal guides focused on architecture by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9755
* docs: focus user guides on features and workflows by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9756
* fix(web): stop panel motion during navigation by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9766
* fix(web): open composer selectors below controls by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9767
* perf(server): skip unused Linux process detail reads by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9768
* fix(server): remove retired Codex models after refresh by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9773
* test: stop path and platform tests depending on the host OS by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9564
* test(server): skip posix executable fixtures on a Windows host by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9565
* test: skip symlink fixtures where the host cannot create symlinks by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9566
* test(server): run fake provider CLIs through a Node stub on every host by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9567
* test(desktop): make path fixtures and timeouts host-portable by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9568
* fix(server): tolerate the missing directory fsync on Windows by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9569
* test(server): pin git config for fixtures and compare native realpaths by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9570
* test: skip POSIX mode-bit assertions on a Windows host by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9571
* test(server): keep provider fixture directories host-portable by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9572
* test: resolve the Windows temp directory to its long name by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9573
* test(server): run the Antigravity install harness for the host platform by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9574
* fix(server): canonicalise media paths the same way their callers do by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9575
* test(server): make Windows path and async fixtures deterministic by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9576
* fix(server): refuse symlinked theme files on Windows too by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9580
* test(scripts): keep Windows packaging checks host-portable by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9589
* fix(contracts): include tool.denied in runtime event types by @Lucenx9 in https://github.com/pingdotgg/t3code/pull/9770
* feat(mobile): split the usage page into Usage and Limits tabs by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9775
* fix(web): restore the running tool label shine by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9777
* fix(web): align provider controls with machine tabs by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9769
* docs(web): document panel motion during navigation by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9778
* feat(usage): support custom model prices by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9774
* fix(web): center pull request link previews by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9794
* fix: address usage limits and merge settlement regressions by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9784
* fix(web): give toggle thumbs consistent inset spacing by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9805
* fix(web): use segmented controls for mode switches by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9781
* fix(server): recover opted-in threads after machine restarts by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9803
* fix(web): simplify changed files into a persistent folder tree by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9821
* feat: add custom model names and option descriptors by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9807
* fix(cursor): discover symlinked skills as package boundaries by @EzraBuild in https://github.com/pingdotgg/t3code/pull/9420
* fix(ssh): exec managed servers without npm wrappers by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9843
* fix(server): detect nested Git workspaces for checkpoints by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9842
* fix(web): keep worktree origin preference visible by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9846
* fix(web): smooth settings sidebar transitions by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9811
* feat(web): highlight visible settings sections by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9812
* fix(web): keep the sidebar project filter across navigation by @Mnigos in https://github.com/pingdotgg/t3code/pull/9416
* fix(server): surface Claude safety model fallback notices instead of dropping them by @darahaas15 in https://github.com/pingdotgg/t3code/pull/8853
* fix(web): reload saved colors when reopening the theme editor by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9847
* feat(desktop): import cookies from Safari by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/7262
* fix(web): respect case in POSIX file links by @Michel-Liao in https://github.com/pingdotgg/t3code/pull/9309
* fix(server): surface a missing workspace folder instead of a spawn error by @kakismash in https://github.com/pingdotgg/t3code/pull/5040
* fix: stop favicon requests for private link hosts on web and mobile by @fe-franco in https://github.com/pingdotgg/t3code/pull/5838
* fix(server): preserve native provider executable paths during updates by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9850
* fix(web): restore composer expansion after tool calls by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9782
* fix(client): explain possible network blocking for T3 Connect by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9783
* fix(desktop): isolate preview keyboard shortcuts from the host by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9840
* fix(prs): reuse GitHub data and defer optional reads by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9835
* perf(shared): skip duplicate PATH entries and per-probe tracing by @jadeva in https://github.com/pingdotgg/t3code/pull/9618
* fix(web): preserve focus and prioritize picker shortcuts by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9795
* fix(skills): support names beginning with digits by @amiralibg in https://github.com/pingdotgg/t3code/pull/9244
* fix(server): advertise truecolor in the integrated terminal by @shubhxho in https://github.com/pingdotgg/t3code/pull/7680
* fix(claude): surface usage-limit pauses in the thread by @vitalyiegorov in https://github.com/pingdotgg/t3code/pull/7165
* fix: restore UX after performance improvements by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9799
* fix(codex): show what a file-change approval will change by @walid-baharwal in https://github.com/pingdotgg/t3code/pull/8669
* fix(ci): add fallback Ubuntu package mirrors by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9864
* fix(web): copy text over plain HTTP by @Michel-Liao in https://github.com/pingdotgg/t3code/pull/8023
* fix(server): dismiss native questions when their turn ends by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9851
* fix(server): quote copied native provider update commands by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9856
* fix(release): install the correct Windows Spectre component by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9859
* fix(web): show retained runtime diagnostics in the work log by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9870
* fix(web): make sidebar project actions reachable by keyboard and screen reader by @akj in https://github.com/pingdotgg/t3code/pull/5521
* fix(preview): bound automation waits and screenshot captures by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/4685
* fix(web): render and filter usage as environments respond by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9860
* feat(web): edit usage prices across selected environments by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9861
* fix(mobile): keep usage tabs below the header when switching by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9876
* fix(connect): refresh HTTP credentials without reconnecting by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9594
* fix(web): keep file autosaves active after effect replay by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9878
* fix(web): prioritize open panel pull request when copying by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9877
* fix(cli): resolve projects with missing workspace directories by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9885
* fix(web): sort equally merge-ready pull requests by diff size by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9887
* fix(chat): show hours for long runs by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9894
* fix(server): only run provider updates through the installer that owns the binary by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9325
* fix(web): discard stale highlights after file edits by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9902
* feat(web): recall sent prompts with the up arrow by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9173
* fix(server): keep mise-owned npm packages manual-only by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9927
* fix(settings): share restart continuation across environments by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9933
* fix(server): capture turn checkpoints after all edits finish by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9841
* fix(web): load file grammar before enabling edits by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9947
* fix(web): deduplicate PR project filter choices by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9948
* test(web): keep provider field readers private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9952
* test(mobile): keep composer selection helper private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9953
* test(client-runtime): keep scoped key implementation private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9955
* fix(web): reveal reselected diff files by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9951
* refactor(web): remove obsolete changed-files preview helpers by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9956
* fix(web): give the browser keybinding notice breathing room by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9964
* chore: configure Knip workspace audits by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9958
* refactor(web): prune unused UI and provider code by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9959
* chore(mobile): remove obsolete widget wiring script by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9960
* chore: remove redundant root tooling dependencies by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9961
* ci: reject unused files and dependencies with Knip by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9962
* test(contracts): keep driver default lookup private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9968
* test(server): remove Azure permissions constant snapshot by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9973
* refactor(shared): remove unused viewport formatters by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9970
* refactor(mobile): remove unused provider option summary by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9971
* refactor(client-runtime): remove unused connection phase message by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9972
* refactor(mobile): remove unused layout calculations by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9974
* refactor(client-runtime): remove unused file position predicate by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9976
* refactor(mobile): remove unused font size steppers by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9975
* test(server): cover thread lookup through command invariants by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9978
* test(server): remove provider equality wrapper fixture by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9979
* test(server): assert the dispatched welcome thread model by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9980
* refactor(desktop): remove unused keyring remediation text by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9981
* refactor(desktop): remove test-only Electron error predicates by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9982
* refactor(web): remove unused pull request state label by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9984
* perf(web): keep timeline row reuse engaged while text streams by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9909
* fix(web): reset markdown widgets when the previewed file changes by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9910
* fix(mobile): keep highlighting review diffs after a long line by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9911
* fix(marketing): align the endorsement carousel with its heading by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9912
* fix(client): keep warm thread resumes live instead of flashing sync by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9913
* test(server): remove authorization prompt snapshots by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9985
* test(server): remove static OAuth page snapshots by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9986
* test(server): remove provider label identity assertion by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9987
* test(server): consolidate agent activity opt-in coverage by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9988
* refactor(shared): remove unused preview URL predicate by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9989
* refactor(shared): remove unused mention path serializer by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9990
* refactor(shared): remove retired PATH capture parser by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9991
* refactor(client-runtime): remove unused subagent selectors by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9992
* refactor(web): test the live usage column builder by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9993
* refactor(web): remove unused aspect ratio reconciler by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9994
* refactor(web): remove obsolete cloud listing helpers by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9995
* test(web): remove composer control style snapshots by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9996
* test(web): keep the preview profile label helper private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9997
* test(server): cover raw OpenCode deltas through the adapter by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9977
* refactor(web): remove obsolete pull request link opener by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9983
* test(relay): keep the stage slug helper private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9998
* refactor(mobile): keep project selection helper private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9999
* refactor(mobile): keep review default ID helper private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10000
* refactor(mobile): remove unused native style constants by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10001
* refactor(mobile): test terminal palettes through public theme API by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10002
* refactor(mobile): remove unused file tree walkers by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10003
* refactor(shared): keep persisted settings helpers private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10004
* test(mobile): remove mocked UUID shape assertions by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10006
* refactor(mobile): test final connection status presentation by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10007
* test(web): keep pull request menu items private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10016
* refactor(shared): test favicon selection through public API by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10005
* refactor(server): remove test-only pricing normalizer by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10017
* refactor(web): remove unused desktop update visibility helper by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10014
* refactor(web): remove obsolete provider update helpers by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10015
* refactor(web): remove unused terminal context preview formatter by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10009
* refactor(web): test environment-scoped draft promotion by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10010
* fix(web): retain wrapped row heights during edits by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10018
* refactor(shared): remove unused Clerk hostname predicate by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10008
* refactor(tailscale): keep package internals private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10011
* ci: reject unused tailscale exports with Knip by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10012
* fix(web): keep chat media at a stable size while it loads by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/9938
* refactor(server): keep manifest age parsing private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10028
* refactor(mobile): remove unused awareness relay URL normalizer by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10029
* refactor(server): remove unused startup heartbeat launcher by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10030
* refactor(shared): keep search ranking comparator private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10031
* refactor(server): keep telemetry identity errors private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10032
* refactor(mobile): test composer persistence through the live decoder by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10033
* refactor(web): remove unused sidebar selectors by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10034
* refactor(server): keep Cursor fallback models private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10038
* refactor(web): remove unused xterm link range helpers by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10040
* refactor(mobile): remove obsolete review list builder by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10039
* test(server): remove duplicate VCS error constructor checks by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10042
* refactor(mobile): keep appearance calculations private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10043
* refactor(web): remove unused sidebar menu action by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10044
* refactor(web): test live Ghostty link resolution directly by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10041
* test(server): exercise Codex prompts through public assembly by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10045
* refactor(shared): remove unused elapsed-time adapter by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10046
* refactor(web): remove unused preview thread reset helper by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10049
* refactor(desktop): remove test-only error predicates by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10047
* refactor(mobile): keep review reset hashing private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10048
* test(web): remove AppRoot element order snapshot by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10052
* refactor(codex): keep app-server client internals private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10035
* ci: reject unused Codex client exports with Knip by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10036
* refactor(server): simplify native telemetry error internals by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10057
* refactor(mobile): remove write-only terminal font cache by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10058
* refactor(web): remove obsolete HSL theme generator by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10061
* refactor(mobile): remove obsolete native diff token stream by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10062
* test(server): remove title prompt editorial snapshots by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10063
* test(server): remove repeated runtime prompt interpolation cases by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10059
* refactor(web): observe preview tests through the live registry by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10064
* test(server): remove keybinding default assignment snapshot by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10065
* refactor(mobile): remove obsolete whole-file review highlighters by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10067
* test(server): cover CLI runner detection through command suggestions by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10066
* refactor(mobile): remove unused cloud relay URL normalizer by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10068
* refactor(web): test live keybinding resolvers directly by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10069
* test(server): cover Grok skill parsing through discovery by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10070
* test(web): remove mocked diff view prop snapshot by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10073
* test(web): remove mocked annotation options snapshot by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10074
* refactor(web): keep pending action labels private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10075
* refactor(mobile): remove unused cloud pending-status mapper by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10071
* refactor(web): remove unused model picker hint helpers by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10072
* fix(server): resume checkpointing after git init by @Yash-Singh1 in https://github.com/pingdotgg/t3code/pull/10078
* feat(web): first-run welcome wizard with agent setup and project import by @t3dotgg in https://github.com/pingdotgg/t3code/pull/5362
* fix(server): keep Homebrew mise shims manual-only by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10085
* fix(ssh): report remote package installation failures accurately by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10088
* fix(web): keep bulk thread deletion going after failures by @m-de-graaff in https://github.com/pingdotgg/t3code/pull/4615
* fix(web): scale agent spawn rows with interface font by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10092
* fix(web): prevent sidebar tooltip title clipping by @UtkarshUsername in https://github.com/pingdotgg/t3code/pull/10086
* fix(web): keep the composer expanded until the thread can scroll by @t3dotgg in https://github.com/pingdotgg/t3code/pull/9965
* fix(web): preserve original mention text in the composer by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10100
* refactor(mobile): remove unused pairing redaction wrapper by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10147
* test(web): drop provider banner styling assertions by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10148
* refactor(client-runtime): remove unused relay token waiter by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10151
* test(web): drop sidebar artwork styling snapshots by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10152
* refactor(ssh): keep package internals private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10144
* ci: reject unused SSH exports with Knip by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10145
* refactor(acp): keep protocol implementation exports private by @juliusmarminge in https://github.com/pingdotgg/t3code/pull/10165
* fix(shared): validate cloudflared with the version subcommand by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9880
* fix(desktop): separate LAN and Tailscale pairing endpoints by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9882
* fix(server): install pinned runtime when pnpm node lacks npm by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9923
* fix(web): hide sidebar search shortcut on mobile by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9932
* fix(web): align tool disclosure chevrons with expanded state by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9935
* fix(antigravity): distinguish session initialization auth failures by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9919
* fix(cursor): cache successful model discovery between refreshes by @maria-rcks in https://github.com/pingdotgg/t3code/pull/9918
* fix(opencode): revert from the first removed assistant message by @maria-rcks in https://github.com/pingdotgg/t3code/pull/…
juliusmarminge added a commit that referenced this pull request Sep 16, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 16, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 16, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 16, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 16, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 17, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 17, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 17, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 17, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 17, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 17, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 18, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 18, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 18, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 18, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 18, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Absterrg0 added a commit to Absterrg0/jarvis that referenced this pull request Sep 18, 2026
* fix(web): keep queued message editing inside the queue panel

* fix(web): keep queued messages in place while editing

* fix(web): match composer actions to draft and modifier state

* fix(web): keep composer shortcut tooltip stable on Mod

* feat(web): summarize T3 orchestration actions

* feat(mobile): port chat summaries and transitions to orchestration v2

Adapt grouped tool summaries and the floating working timer to V2 run, attempt, and queue state. Bring over the composer, keyboard, and disclosure transitions while retaining the V2 activity inspector and queue controls.

Keep OV2 web composer and grouping behavior intact; share only the existing command label parser with mobile.

* fix(chat): remove added tool summary status counts

* fix(mobile): keep scroll bounds current after animations

* fix: reconcile main's round-17 features after the rebase

Restores main features dropped by the policy replay: #8569 theme wiring,
settings search rework, #8803 workspace-mutation refresh (v2-adapted),
video + image previews (web and mobile, v2-adapted), #8862 Expo glass,
and the round's docs. Timeline thinking rows (#8984) stay on the v2
work-live system.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* feat(web): port working and thinking timeline rows to orchestration v2

The v2 equivalents of main's #8984 and #8922: a "Working for ..." header
anchors the active run, the trailing live tool row survives between
actions in past tense instead of vanishing, and a shimmering Thinking
row marks reasoning gaps. During workspace preparation the header shows
"Setting up worktree..." (driven by the local dispatch flag or the v2
run's preparing status, so remote viewers see it too), the composer
footer span is gone, and draft promotion waits until the run starts or
startup fails instead of navigating mid-preparation.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix: reconcile main's round-18 features after the rebase

Adopts the round's main features into the v2 architecture: the #9023
media rework (streamed videos, media-file assets, protocol-relative
links), #9098 shared live-activity row folded into the v2 working and
thinking rows, the #9084/#9078 Claude model catalog for v2 consumers,
a native #9005 OpenCode child-session abort in the v2 adapter, #9013's
landed LegendList patch, and per-environment sidebar provider entries.
For #8600 the server-side pieces land, but auto-settle evaluation stays
client-side (reading the new server-owned settings) until the v2
orchestrator grows its own settlement reactor; main's v1-only reactor
and coalescer additions are dropped with the rest of the v1 path.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* feat(server): evaluate automatic thread settlement in the v2 orchestrator

Ports #8600's server-owned settlement to orchestration v2 instead of
keeping client-side evaluation. A ThreadSettlementService sweep runs at
startup, on auto-settle settings changes, and once per minute: it
evaluates inactivity and merged or closed pull requests over v2 thread
shells and dispatches the new guarded thread.auto-settle command, which
rejects threads that changed after the sweep's snapshot or carry any
explicit override, then reuses the orchestrator's settle lifecycle.
With the server deciding, the clients drop their effectiveSettled
evaluation and partition on the persisted settledOverride like main.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix: reconcile main's round-19 features after the rebase

Adopts main's round-19 features into the v2 stack: payload-budgeted
orchestration replay (#8992), sidebar row subscription leases (#9052),
tool group virtualization and scroll anchoring (#9106), repeated-command
and browser-group presentation, inline assistant citations (#9146),
per-cwd provider skills discovery (#8778), Claude composer skill
dispatch (#9128), grok health probe and model negotiation (#9154), and
the failed-tool thinking fallback (#9165).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(web): right-align the stash shoulder tab again

Round 17 adopted main's #8850 ComposerBanner.Attachment (mx-auto plus the
standalone drawer-inset width) without main's matching mounts, so the
stash tab's ml-auto lost to the attachment's auto right margin and the
tab centered over the composer. Column now spans its attachments like
main does, the stash tab zeroes the right margin, and the stash menu
keeps the full dock width.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(web): realign the composer and timeline with main

The branch had drifted from main's composer and work-log design in ways
unrelated to orchestration v2: a pre-revert "Working for" shoulder tab
on the composer (main reverted #8693 and re-landed #8734 without it),
an inline stash variant plus in-flow stash menu, expanded tool rows that
hid their icons, an unmounted woke-thread banner, a composer scroll
observer main never had, and a right-panel toggle that lost its
showRightPanelControl gate so it rendered twice with the panel open.

ChatComposer and its satellites now start from main's files with only
the v2 delta re-applied (dispatch modes, queued-message editing, runtime
request ids, response capability). Background tasks surface as a
ChatView banner in main's backgroundLiveness shape instead of a
composer tab. SimpleWorkEntryRow takes main's PlainWorkEntryRow body
with the V2ItemInspector kept behind the expander.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix: reconcile main's round-20 features after the rebase

Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(server): reduce v2 recovery and runtime resource usage

Index event sequence lookups, recover only threads with pending work, and page projection verification and rebuilds. Bound provider event logging and omit turn histories when resuming Codex threads.

Allow delegated thread identifiers through relay routes. Add focused regression coverage and document the performance constraints.

* fix: reconcile main updates with orchestration v2

Retain main's composer, work-log, settings, mobile and performance changes through c8f77e0d441 while preserving v2 runs, queued messages, provider handoffs and durable history.

Port native compaction and logout, asynchronous Codex questions, provider usage accounting, automatic settlement and PR refresh into the v2 services. Bound live event retention during replay and delivery, measure thread replay before decoding, and read checkpoint metadata without loading transcripts or patches.

Keep main migrations through 047 and move the v2 migrations to 048–058. Preserve the existing branch history and the pre-rebase backup.

Model: GPT-6. Harness: Codex.

* fix(orchestration): stabilize Codex turn mapping and settlement

- Preserve Codex turn identity while suppressing duplicate diff notifications
- Optimize settlement projections and isolate thread visit handling
- Add concurrency and regression coverage across server and mobile

* fix(chat): match main timer and task placement

Restore the completed work timer divider and text size from main. Keep todo-list progress in the composer and omit it from web and mobile timeline entries, including completed task lists.

Verified pending, running, and completed task projection; 187 focused web tests and 35 mobile tests pass. Web and mobile typechecks pass.

* fix(mobile): restore composer and timeline behavior from main

Show Send when a running thread has draft content. Separate submission follow
from first-message anchoring so later sends do not reserve extra blank space.
Restore Android initial composer insets and iOS focus-aware dictation insets.

Keep opening and final assistant replies visible around completed folds,
anchoring Worked for at the first hidden item while preserving v2 relationship
cards and execution-attempt behavior.

Validation: 107 focused tests and the mobile typecheck pass. Formatting passes;
scoped lint and React Doctor report warnings but no errors. No simulator run.

* fix(orchestrator): Stop treating a wait timeout as a dead child (#7427)

* fix(orchestrator): Show when a completed delegated child still has work (#4793)

Co-authored-by: Julius Marminge <julius0216@outlook.com>

* fix(orchestrator): Stop finished Codex turns from sitting on Waiting (#7105)

Co-authored-by: Julius Marminge <julius0216@outlook.com>

* chore: format v2 files flagged by CI

* test(server): include the shell indexes migration

* fix(mobile): pin the patched notifications dependency

* fix(client-runtime): resolve work log source imports

* test(server): refresh replay runtime instruction expectations

* test(server): correlate OpenCode replay message identities

* ci: run checks on v2 branch pushes

* test(server): use Effect Vitest for Cursor provider checks

* fix: reconcile main updates with orchestration v2

Retain main's changes while preserving v2 orchestration, queue/steer controls,
composer-only tasks, timeline timers, and mobile scrolling fixes.

Port opt-in restart continuation through durable v2 effects, with shutdown
race guards, activation gating, retry deduplication, and native Codex resume.
Use narrow projection reads for control effects and runtime-request replies.
Surface Claude fallback notices without failing the turn or hiding the notice.
Report missing workspace folders before provider startup.

Carry over custom models and prices, bounded client caches and stream cleanup,
lazy image loading, persistent changed-file trees and sidebar filters, Safari
cookie import, theme fixes, POSIX file-link case, private-host favicon filtering,
native provider update paths, and platform portability updates.
Migration ids remain unchanged.

Validated scoped typechecks and focused server, web, mobile, client-runtime,
contracts, desktop, shared, SSH, script, and resource-monitor tests. Preserved
all 347 original commits and checked the final tree against both saved tips.

Model: GPT-6. Harness: Codex.

* fix(server): explain fetch failures during worktree preparation

Worktree preparation previously exposed only a generic fetch failure. Classify
known authentication, network, repository access, and reference-lock errors
using stable Git diagnostics, without retaining raw output or credentials.
Unknown failures keep the existing generic message.

Cover failure classification and redaction, a real missing local remote, and
propagation into a failed prepared run without creating a worktree or running
setup. The launch test waits for the persisted failure event.

Validation: 38 focused tests, server typecheck, and scoped lint passed.

* fix: reconcile upstream fixes with orchestration v2

Carry main's session refresh, provider maintenance, runtime diagnostics,
composer focus, preview, usage, and mobile outbox fixes into the v2 branch.
Keep queue/steer submission, composer-only task progress, v2 subagent cards,
and LegendList scroll ownership.

Project thread and shell events before transport buffering while retaining
full durable history. Dismiss native questions when provider turns finish,
with a transaction guard that preserves answers submitted concurrently.
Port Claude limit notices and Codex file approval details to v2 adapters.

Validated with focused server, web, mobile, client-runtime, shared, desktop,
and marketing tests; affected package typechecks and scoped lint pass.
All 349 branch commits retain their authors and messages. Migration files
and the previous worktree-fetch, stash, panel, and mobile inset fixes remain
unchanged.

* fix(server): make project removal honor v2 threads

Offline CLI and HTTP project removal dropped force and left native v2 threads
behind. Move the nonempty-project guard and durable child cleanup into the
shared project service, and forward force from CLI, HTTP, and WebSocket calls.

Reuse the thread deletion planner and command lock, hydrate migrated history
before attachment cleanup, and validate child receipts. Commit the project
deletion after its children so failed cleanup can be retried safely.

Validation covers CLI deletion with active and archived threads, missing
workspaces, durable cleanup, partial retries, migrated attachments, receipt
collisions, and concurrent thread updates. Scoped server tests, typecheck, and
lint pass.

Implemented with Codex (GPT-6).

* fix(mobile): render generic message attachments (#9929)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: shivam <91240327+shivamhwp@users.noreply.github.com>

* fix(mobile): use the archive eligibility guard when dispatching (#9930)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: shivam <91240327+shivamhwp@users.noreply.github.com>

* fix(orchestration): persist linked pull requests (#8689)

* feat(mcp): update thread metadata (#8690)

* fix(server): keep old failures from waking snoozed V2 threads (#9903)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* refactor(shared): share model-selection command choice (#10577)

* refactor(project): share create and update inputs (#10578)

* refactor(server): share attachment message intake (#10580)

* feat(mcp): expose thread organization commands (#10554)

* feat(mcp): expose existing queued message commands (#10555)

* feat(mcp): expose pending user questions (#10556)

* feat(mcp): expose thread model selection (#10557)

* feat(mcp): expose fork and merge-back commands (#10558)

* feat(mcp): expose preview list and close (#10559)

* feat(mcp): expose selected environment preferences (#10560)

* feat(mcp): expose the existing thread search query (#10561)

* feat(mcp): expose scheduled task run-now (#10562)

* feat(mcp): expose project service operations (#10563)

* feat(mcp): expose attachment upload and send (#10564)

* feat(mcp): expose project thread launch service (#10565)

* feat(mcp): expose branch-backed workspace discovery (#10566)

* fix(orchestration): map late steering to follow-up turns

- Re-route steering that races completion into idempotent follow-up dispatches
- Preserve scheduled-task attribution and provider ownership history across clients

* fix: reconcile main's round-24 features after the rebase

Port main's pull-request discovery, active thread ordering, async question dismissal, settlement fixes, provider-session import, attachment context, and provider correctness changes into orchestration v2.

Keep the branch's intentional composer and subagent behavior while adopting main's web and mobile fixes. Prevent headless setup terminals from hanging on the color probe, and move the v2 migration block to 050-061 after main claimed 048-049.

* chore: remove accidentally committed audit artifacts

* fix(ci): repair rebased checks and stop duplicate runs

Restore the failed-before-start timer guard, align two server fixtures with the reconciled behavior, and remove dead files, exports, and dependencies surfaced by Knip.

Drop the temporary branch push trigger now that the PR is mergeable, so each update runs the pull-request workflow once.

* fix(web): port auto-balance updates to v2 chat

Keep main's batch machine-update banner and update action while preserving the v2 runtime-based environment lock used by draft load balancing.

* chore: format files exposed by CI

* fix: reconcile main's round-26 updates after rebase

Adopt TypeScript 7 and Effect rc.112 across orchestration v2, including the TaggedError API migration and updated Effect-aware tests. Restore main's composer-aware scroll-to-end clearance while retaining selected-model settings sync, preview recording transfer, image galleries, desktop context menus, and layout hit targets. Regenerate the lockfile on the upgraded dependency baseline.

* fix(web): restore compact load-earlier control

* perf(orchestration): bound v2 transport payloads

Advertise bounded socket snapshots and authoritative dispatch validation, omit raw command output and inline file bodies at the wire boundary, and preserve compact status metadata across web and mobile. Add transport-budget coverage for snapshots, resume, commands, legacy import, and projection maintenance.

* fix(web): preserve tool failures after output redaction

* fix: restore sidebar behavior after v2 rebases

Restore pinned-thread shelf classification, server-owned unread state, hidden-subagent-safe project ordering, guarded jump hints, draft upload cleanup, and active-provider archive guards across the current and legacy sidebars.

Bring the surrounding current-main sidebar work forward as well: canonical project favicons, stable row layout, thread file drops, account-aware mobile provider badges, and deferred desktop keyring loading.

* fix(server): consolidate V2 migrations and refine runtime recovery

* fix(web): simplify timeline rows and preserve collapsed composer controls

* fix(web): smooth composer transitions and group approval worklogs

Keep collapsed model controls in a strip, contain transition overflow, and preserve timeline spacing. Render approval requests as regular grouped worklog entries.

Implemented with GPT-6-Astra via Codex.

* fix: reconcile main updates with orchestration v2

Adapt question attachments and Android push verification to V2 requests and shell events. Preserve composer transitions and compact worklogs while integrating upstream loading, navigation, and mobile changes. Release consumed application replay pages without retaining earlier batches.

* fix(server): report OpenCode descendant stop failures

* fix(server): abort external OpenCode sessions on release

* fix(server): retain thread baseline diffs across root runs

* fix(server): fail OpenCode turns on unexpected stream EOF

* fix(server): bound OpenCode runtime request replies

* fix(client): bound socket resets after cold HTTP failures

* fix(server): query only due scheduled tasks during polling

* fix(server): retain normalized OpenCode turn usage

Accumulate owned step usage once and preserve partial or unavailable telemetry for failed, interrupted, or reconnected turns.

* perf(server): scope ordinary control reads to their targets

* fix(server): retry initial title generation after transient failures

* fix(server): isolate Cursor metadata generation from workspaces

* fix(server): preserve Claude Read image previews across clients

* fix(web): preserve generic files when editing queued messages

* test(server): assert tool output redaction before storage fidelity

* test(web): cancel queued animation frames during worker cleanup (#10880)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix: reconcile main devices and pull requests with orchestration v2

* feat(providers): add Pi coding agent (#7211)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Co-authored-by: Mike Olson <mwolson@member.fsf.org>
Co-authored-by: Julius Marminge <julius0216@outlook.com>

* feat(providers): standardize ACP providers (#6461)

Co-authored-by: Julius Marminge <julius0216@outlook.com>

* feat: render background completions as typed notifications

* fix(mcp): omit recursive screenshot metadata from tool inputs

* fix(pi): use native forks and preserve rollback session identity

* fix(pi): cap OpenRouter output budgets pending upstream fix

* fix(web): show ACP sidebar icons and hold onboarding height while loading

* feat(server): deliver delegated completions through a durable mailbox

* fix(acp): support Devin terminals, questions, and native subagents

* fix(server): find active turns when answering async questions

* fix(web): populate sidebar ACP branding from environment settings

* fix(acp): preserve native child messages and final summaries

* fix(server): distinguish delegated task results from completed turns

* test(server): align Codex delegation instruction assertion

* test(server): align delegation fixtures with task result semantics

* fix(server): classify Claude V2 structured terminal failures (#9897)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(orchestration): exclude rolled-back work from bounded recovery (#8464)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>

* test(orchestration): cover bounded V2 socket fallback paging (#9907)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(server): wait for native Codex start before Stop (#10024)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>

* fix(server): keep the native Grok default model (#10025)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>

* fix(server): fail V2 turns when the OpenCode event stream ends (#9905)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(web): preserve file attachments when editing queued runs (#9928)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(server): preserve project mutation fields across transports (#9920)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(mobile): throttle streaming thread visit updates (#9931)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(orchestrator): preserve task-step elapsed time across restart (#10051)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>

* fix(server): preserve Claude interruption status during steering

* fix(server): wait for nested completion delivery before publishing results

* test(server): verify background delivery with real providers

* fix: keep working timers anchored to the active run

* perf: page complete turns and bound timeline reconciliation

* perf(client): narrow thread subscriptions and navigation updates

* feat(mobile): manage queued messages in a dedicated sheet

* fix(web): fold completed trailing background activity

* fix: reconcile main settings and previews with orchestration v2

* perf(client): reconcile replay batching with orchestration v2

* fix: reconcile main Codex model selection and UI updates

* fix: reconcile main context previews and rewind updates

* fix(build): include protobuf and Connect license notices

* fix(mobile): pin expo-audio so the release smoke patch stays in use (#11518)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix: reconcile main release and thread updates with V2

* fix: repair v2 CI after environment disable and dead exports

ConnectionCatalogEntry gained a required enabled flag in #11478, but the
threadShell harness never set it, so enabled-gated atoms filtered every
environment out and two tests failed. Two dead exports also tripped knip.

Generated with [Devin](https://devin.ai)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(web): update notification tests for v2 thread shells and drop dead composer state

ThreadNotificationCoordinator presents raw OrchestrationV2ThreadShell
records, but its tests still fed the pre-v2 thread shape (session /
latestTurn), which crashed presentThreadShell on missing DateTime fields.
Rebuild the fixtures as v2 shells with pendingRuntimeRequest and run
statuses, and remove the composerHasUnsentContent binding left unused by
the compaction gating change.

* fix(client-runtime): avoid Array#toSorted in thread lineage ordering

* fix(server): reject partial output from failed Cursor runs (#11534)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): wake paused Cursor replay runs on mismatch (#11535)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): load V2 replay fixtures through the platform path service (#11566)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): report missing interrupt-and-restart capability for forced restarts (#11565)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): preserve Cursor directory and lint search results (#11533)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): roll back question attachment copies when respond preparation fails (#11557)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): restart the live session on model changes after dead records (#11505)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): replay launches with server-allocated thread IDs (#11508)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix(web): keep the active-run header with the prompt that started it on steer (#11828)

* refactor(web): centralize provider instance icons (#11829)

* feat(web): add the thread action menu and inline rename to the chat header (#11830)

* fix(web): keep the preview mini-player clear of the inline thread details card (#11831)

* fix: reconcile main snooze controls with orchestration v2

* fix(web): adapt registry icons to light and dark themes

* fix: reconcile main worktree setup and title changes with v2

* fix(server): isolate V2 migrations from the V1 database

* fix(ci): verify V2 branch pushes and remove unused helper

* revert: restore existing CI push triggers

* fix(web): retain server-side queuing on v2 after rebase

* fix(test): account for optional encoded provider settings

* fix(build): parse executable imports without matching generated source

* fix(build): isolate executable parser from Vite config

* fix(server): project legacy thread shells during import

* fix(server): replay command events across persistence pages (#11499)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(orchestrator): report terminal runs after wait timeout (#11574)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): skip corrupt scheduled-task rows instead of stopping the scheduler (#11585)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): preserve due schedules across equivalent time formatting (#11590)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* test(server): replay denied Claude writes through V2 (#11597)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): fork Codex threads at the native turn boundary (#11490)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): align MCP delegation support with live provider adapter registry (#11578)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* test(server): prove v1 to v2 cutover on a copied database and flag divergent migration ids (#11639)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): bound legacy thread projection requests (#10512)

* fix: reconcile main thread updates and Git improvements with v2

* fix(mobile): restore permission registry concurrency protection

* fix(web): confine composer glass transition to input surface

- Move transition glass styling off the host wrapper
- Add backdrop saturation to the main composer surface

* fix(server): restore hub limits updates in V2 (#11963)

Co-authored-by: Julius Marminge <jmarminge@gmail.com>

* fix(mobile): reject preview builds from v1 source

* fix(mobile): skip preview validation without release credentials

* fix: stop retained background work after a turn settles

* refactor: remove legacy token streaming

* fix: format subagent task names across clients

* fix: distinguish unsupported server connections

* fix: reconcile main updates with V2 orchestration

* fix(server): preserve PR links across V2 discovery and import

* fix: reconcile main monograms and PR refresh with V2

* fix(web): reset thread scroll and ignore hydration as a new turn

* fix(ci): pin patched Expo core during release resolution

* fix(web): invert follow-up behavior with Mod+Enter

* fix(web): show linked pull requests in thread details

* fix(web): restore main thread-switch scrolling without layout resets

* fix: reconcile main setup transitions with V2 threads

* fix(mobile): keep cached thread list across relaunch

The shared shell cache codec never overrode activityRunStartedAt and
unsettledAt with DateTimeUtcFromString, so any snapshot holding a working or
unsettled thread encoded fine but failed to decode on the next cold launch.
The store discarded the whole row and the Home list stayed empty until the
environment reconnected.

Add the two overrides and extend the mobile cache round-trip test with a
running, unsettled thread so the codec and the JSON overrides stay in sync.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>

* perf(client): coalesce persistent cache writes during streaming (#12109)

* perf(server): suppress unchanged shell enrichment refreshes (#12110)

* perf(mobile): skip unchanged thread row renders (#12116)

* perf(mobile): yield to UI during shell cache encoding (#12117)

* perf(client): narrow mobile and web environment subscriptions (#12126)

* perf(mobile): ignore irrelevant config updates in thread lists (#12127)

* perf(mobile): limit thread model options to its provider (#12128)

* perf(client): stop scanning threads for unused shell timestamps (#12129)

* feat(mobile): make the composer pill the hub for the running turn

The pill above the composer only tracked queued messages, and a follow-up
sent during a turn always queued because mobile hardcoded its dispatch
mode. Steering meant sending the message and then promoting it from the
queue sheet, and the turn's subagents were only reachable as transcript
rows.

The pill now carries an agents segment alongside the queue count, scoped
to the running turn and hidden once it settles. Tapping either segment
opens a sheet: agents lists the turn's subagents and opens a child
thread, and the queue sheet is rebuilt on the native header with compact
rows, swipe to remove, a context menu, and full editing that saves
through queued-run.edit while keeping the message's place in line.

Follow-ups become a choice. A Follow-ups settings screen picks queue or
steer, the send button says which one it will do, and long-pressing it
uses the other for a single message. On a hardware keyboard the Command
chord does the same, so the composer text view now reports whether the
submit was the alternate and names both chords for the iPad shortcut HUD.
Steering travels as "auto" so a turn that ends mid-flight degrades to a
queued run instead of bouncing the message back into the draft, and the
button only offers Steer when the provider can actually steer.

Web's dispatch resolver moves into client-runtime so both clients share
it. The lineage banner is gone from the transcript, taking mobile's
disconnect action with it; merge back to source now lives in the thread
header's git menu.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* fix: reconcile main composer and provider updates with V2

* test(server): restore Cursor usage coverage after V2 rebase

* feat(web): add compact PR checks to the workspace card (#11981)

* feat(web): show subagent details and history in workspace card (#12079)

* fix(server): start V2 provider turn when checkpoint baseline capture fails (#12153)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix(server): retain durable checkpoint index fixes on v2

* fix(server): finalize v2 runs when checkpoint ref lookup fails

* fix(server): reject v2 file restore in shared workspaces

* fix(mobile): allow changing provider in a started thread (#12184)

Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>

* fix: reconcile main updates with V2 runtimes and timelines

* fix: align V2 question and checkpoint timelines across clients

* fix(mobile): guard question controls during answer submission

* fix: adapt multi-model thread creation to V2 launches

* fix: restore V2 worktree setup transitions across clients

* fix(mobile): match web provider handoff dividers

* feat(mobile): rebuild the Circe orb and add Circe Mesh sign-in

The mobile app opened straight into Circe on a fresh install, so a user never
saw the step that connects them through Circe Mesh. The voice orb was also the
wrong object: a dark blob with fat translucent bands behind it, plus a soft
square around its glow on some Android GPUs.

Orb
- One Skia canvas with six ordered layers: atmospheric glow, rear fibers, the
  sphere surface, the hull ring, fibers refracted inside the sphere, front
  fibers, then grain. Three fiber planes are what produce depth; nothing here
  is a real 3D render.
- The body is an SkSL runtime effect that reconstructs a surface normal per
  pixel, so the sphere lights like an object instead of a flat radial
  gradient. The ring is modulated by angle, because a uniformly bright ring
  reads as neon rather than as light.
- Fibers are silk filaments, not an audio waveform: 18 rear, 20 refracted
  interior, 5 front, each with deterministic per-strand variation and a
  gaussian envelope centred on the sphere.
- Motion is split so the sphere feels heavy: it barely moves and the field
  carries the animation. One frame callback drives the scene, and audio level
  reaches the renderer as a shared value without re-rendering React.

Sign-in
- The signed-out gate waited forever on Clerk's isLoaded, so a device that
  could not reach Clerk skipped Welcome entirely and landed in the app. It now
  resolves to signed-out after three seconds, and a real stored session still
  resolves from the token cache without the network.
- Adds the Welcome screen and its Clerk auth step, including the Circe Mesh
  onboarding request that already existed behind it.

Theme
- The orb follows the app theme. Light and dark share geometry and differ only
  in luminosity: dark leans on the rim and pulls the bloom back.

Dev tooling
- The orb gallery was gated on process.env.APP_VARIANT, which Expo never
  inlines into the bundle, so the route never registered. Now gated on __DEV__.
  It exposes every state, both appearances, three sizes, and three levels.

Both soft-edge traps found here are silent: `opacity` on a large
radial-filled shape and BlurMask each make Skia allocate a layer, which
renders as a soft-edged square on some Android GPUs. Every soft edge in the
orb is a gradient with its alpha baked in, so no layer is allocated.

* fix(mobile): render the orb as a dark lens, not a lit copper sphere

The previous orb was technically competent and visually wrong. It modelled a
conventional lit solid sphere: the shader reconstructed a surface normal,
applied directional light from the upper-left, and started the body gradient at
a bright cream `hotColor`. That is a polished orange ball, which is what it
rendered. The palette file in the same commit already said the middle of the
sphere must read as near-black, so the code contradicted its own design.

Replaced the rendering model rather than re-tuning colors.

Dark base and a separate transparent shell
- `OrbSurface` is split into `OrbBase` (opaque, `core`/`coreWarm`/`ember` only,
  no directional term) and `OrbShell` (transparent hull light). `hot` is now
  only ever a thin lip or a subsurface accent, never a fill.

Interior fibers moved inside the glass
- The refracted fiber plane now renders between the base and the shell. It
  previously rendered after an opaque sphere, so the strands could only look
  printed onto a surface.

The ring is the shell, not a stroke
- Removed the uniform 360-degree `Path` circle that painted over the shader's
  angular variation and cancelled it out. The shell pass carries an uneven
  profile built from three angular harmonics plus a travelling phase, and the
  only hard edge is a roughly one-pixel lip at the hull.

Refraction instead of compression
- Interior strands were squeezed by constant `x *= 0.91 / y *= 0.82`, which
  reads as a narrowed bundle. They now derive a lens depth from the horizontal
  position and use it both to pull the strand toward the optical axis and to
  shift its phase, so the fiber visibly bends as it enters the sphere.

Fewer, quieter strands
- 43 strands down to 20 (11 rear, 7 interior, 2 front), average alpha roughly
  halved, and one hero strand per plane instead of every fifth strand being
  equally prominent. The field should be perceived, not counted.

Motion is time-based and far slower
- The field advanced a fixed increment per rendered frame, so a 120 Hz device
  drifted twice as fast as a 60 Hz one and a full cycle took about half a
  second. It now advances by elapsed time; `fieldCycleSeconds` is 11 s at rest
  and 5 s while listening. The sphere itself only breathes.

One state model instead of a dozen unused knobs
- `waveAmp`, `massIntensity`, `glowResponse` and `strandAmplitudeScale` were
  varied by state and never read by the renderer. Replaced with six parameters
  that are all consumed, and a single microphone `energy` value that scales
  field amplitude, shell brightness, bloom, and core warmth together.

Scene bounds
- The welcome canvas was `size + 2 * size * 0.95`, about 487 dp tall for a
  168 dp sphere, which opened a large gap between the copy, the orb, and the
  auth controls. The vertical padding is now independent of the fiber field at
  roughly 26% of the sphere.

Grain is off at rest so the idle frame stays clean.

Also syncs the stable web icon filenames from `assets/circe`, which
`scripts/lib/circe-boot-assets.test.ts` asserts byte-for-byte and which the
regenerated assets had left stale.

Verified on a physical Android device in both appearances and in the orb
gallery across states and sizes.

* feat(mobile): adopt Circe design system v1 tokens and shell lighting

Mobile was still carrying the pre-v1 palette: a cool blue-gray dark surface
(`#16181b`), a cool `#0f1620` Circe canvas, an off-brand amber primary
(`#96600a` / `#c99a2e`), and a serif stack that led with Times New Roman. The
design system asks for warm layered near-black, warm ivory paper, restrained
copper as the single brand accent, and an editorial serif.

Tokens (global.css, mobileTheme.ts, regenerated uniwind themes)
- Dark surfaces are now the layered warm near-black set: canvas `#0c0d0e`,
  surface `#121415`, raised `#191b1d`, hover `#1e2022`. Pure black is out.
- Light surfaces are warm ivory: canvas `#fcf9f4`, surface `#fffdfa`, raised
  `#f6f0e9`, hover `#f2ebe4`.
- Borders move to low-opacity warm rules: `rgba(56,43,35,.07/.13/.20)` on light,
  `rgba(255,255,255,.065/.10/.16)` on dark, replacing opaque beige borders.
- Copper becomes the primary action token: `#a5482c` on light for legibility,
  `#e08a63` on dark. The brand accent is identical in both appearances.
- Circe tokens gain the full v1 set: copper ramp, peach, semantic success,
  warning, danger and neutral, plus surface, surface-raised, and copy. Status
  colors are now semantic only rather than decorative.
- The display serif drops Times New Roman, which the design system rules out,
  for a stack led by Iowan Old Style. Bundling Instrument Serif needs a native
  rebuild and is deliberately left as a separate change.

Orb shell (§13)
- The palette moves onto the v1 ramp: `#100e0d` core through `#6d3526` deep
  copper, `#e18a62` copper, `#ffd8bd` peach, `#fff4e9` hot lip.
- The shell's angular profile is now three art-directed light lobes instead of a
  sum of harmonics: the strong warm regions sit upper-left and lower-left, and a
  narrow brilliant flare sits on the right edge. Each lobe drifts slowly.
- The copper band starts around 81% of the radius, matching the design system's
  gradient stops, so the falloff is broad rather than a hairline.
- Bloom becomes two passes matching the specified glow: a broad atmosphere that
  spills past the hull and a narrow warm glow hugging the shell.

Welcome screen
- Adopts the light onboarding treatment: warm ivory paper, near-black editorial
  ink, one burnt-copper phrase, a near-black primary CTA whose only brand cue is
  a restrained copper hairline, and low-opacity warm borders.

Tests
- `uses the Circe graphite palette as the default` asserted the old hexes and is
  replaced with the v1 invariants: light paper is warm (red leads blue), dark is
  a layered near-black that is neither pure black nor a colored slate, and copper
  is the same accent in both appearances.
- The hard-coded variable count in the palette-role test is replaced with the
  presence of every Circe token, which is what the code actually depends on.

* fix(mobile): give the orb volume and rebuild the field as one ribbon

The previous pass over-corrected. Adding a dark base and a separate shell did
fix the order, but nothing was left between them, so the sphere rendered as a
near-uniform black disc under a hairline of light. Two causes, both structural.

There was no volume layer
- `OrbBase` stays in `#100e0d`-`#1a100c` and `OrbShell` only lights the hull, so
  the region in between had no light at all.
- Adds `OrbVolume`, a transparent pass between the interior ribbon and the
  shell. It carries broad low-frequency copper across the outer 40-50% of the
  sphere plus two asymmetric lobes, a lower-body glow and a left-side light.
  Its alpha is capped at 0.42 and it never reaches white, so it reads as smoked
  glass rather than a second opaque sphere.
- The shell's `pow(1 - z, 2.4)` falloff was the other half of the problem: it is
  near zero until the final pixels. Replaced with two explicit art-directed
  fields starting around 46% of the radius. This is brand artwork, not a
  physically correct rim term.

The field was twenty independent sine waves
- Every strand had its own frequency, amplitude, phase, offset and speed, which
  mathematically wants to become spaghetti however few strands remain.
- `WaveField` is replaced by `RibbonField`: one shared centerline carrying a
  broad S-curve, with eight filaments as small offsets from it, so the group
  reads as a single piece of silk. Five faint atmosphere fibers keep their own
  trajectories at alpha 0.04-0.10.
- Both centerline harmonics carry integer phase coefficients, so the curve
  returns to its exact starting shape after a phase revolution and the keyframe
  interpolation stays seamless.

Refraction is now visible
- The interior plane delays the shared centerline's phase by lens depth, grows
  its amplitude inside the glass, and pinches the bundle by up to 42% toward the
  optical axis at the centre. Interior filaments are roughly 1.5x more visible
  than before, so you can see the strands enter the object.
- The front plane carries only the two highlighted filaments rather than a
  second full field.

State wiring
- `fieldAmplitude` was defined and tested but never read by the renderer, so
  tuning it did nothing. It now scales the path amplitude, and changing state
  rebuilds the interpolated frames.
- Bloom is documented as microphone-responsive but `OrbGlow` was never passed
  the level. It now receives `energySV` and its three gradient fields genuinely
  respond. `alphaColor` is a worklet so the stops are built on the UI thread.
- Adds a regression that fails if any `OrbStateParams` key has no consumer in a
  production renderer file. That is the class of bug this commit is fixing.

Glow is now three separate fields rather than one: a broad peach atmosphere at
about 1.55R that visibly lights the page around Circe, a medium warm bloom, and
a localized shell aura.

* feat(mobile): build a dedicated welcome hero illustration

The welcome screen was a standard auth page with the product orb dropped into
it. The orb was shared with the home and voice screens, so every attempt to make
it a brand hero traded off against its job as a state indicator: it came out
either too dark to be a focal point, or too luminous to read as "idle".

The real problem was the abstraction, not the shader.

Separates the two visual systems
- `CirceOrb` stays the product orb: home, voice, listening, thinking, speaking,
  compact, interactive, stateful.
- `CirceWelcomeHero` is a new, decorative brand illustration used only on the
  welcome and auth screens. It has no states, no audio input, and no
  interactivity, so it is free to be bright.
- Both remain in the same canvas so the illustration is one composition rather
  than several widgets stacked in a column.

Rebuilds the page composition
- The hero now sits above the headline. It is full-bleed, cancelling the screen
  padding, so it reads as artwork rather than an inset widget.
- Order is logo, hero, headline, subcopy, CTAs, divider, benefits, legal.

The hero is one wide canvas, 300dp tall, with this layer order
- atmosphere, so the page picks up warmth around the object
- halo arcs, four flattened ellipses at very low alpha
- rear ribbon fan
- orb core, then the interior ribbon clipped and refracted through it
- front filaments crossing over
- dust motes

The orb is luminous now, not a dark ball
- A dedicated shader climbs warm brown, copper, then peach, holding the deep
  core to about 30% of the visible area rather than most of it. The previous
  product-orb treatment was near-black across the whole body, which is correct
  for a state indicator and wrong for a focal point.
- The rim is modulated by three angular harmonics plus a travel phase, so it is
  never uniformly bright. A value hash adds faint grain so the volume is not a
  mathematically smooth disc.

The ribbon is one flow field, not independent sine waves
- A single master spline crosses the hero. Every filament is an offset from that
  curve, so the strands stay related and read as one piece of silk.
- The bundle is tight where it passes the orb and opens toward the edges, which
  produces the left and right fans from a single construction.
- Inside the glass the shared curve is phase-delayed, amplified and pinched
  toward the optical axis, so the fan visibly narrows as it passes through the
  object instead of merely being clipped by it.
- Both harmonics carry integer phase coefficients, so the curve returns to its
  exact starting shape after a phase revolution and the loop stays seamless.

Motion is slow drift only, driven by wall-clock time so it is identical at any
refresh rate, and fully suppressed under reduced motion.

Two things worth recording for the next pass. The first ribbon attempt opened
the bundle from 8% to 123% of the orb radius within half a screen, which read as
a bowtie starburst rather than a ribbon; the spread is now deliberately gentle.
Second, the fallback for a driver where the runtime effect will not compile has
to be its own component: `RadialGradient` and `Shader` both use hooks, so
swapping them inside one component changes that component's hook order between
renders.

The hero is also surfaced in the development orb gallery, since the welcome
route redirects as soon as a session exists and is otherwise hard to inspect.

* refactor(mobile): rebuild the welcome hero as a woven ribbon over a lit sphere

The hero looked wrong for structural reasons, not tuning reasons. The ribbon
morphed its whole spline once per cycle, and the orb was a dark procedural
sphere with the interior ribbon painted on top of it.

Correctness
- Removes geometry morphing entirely, which removes the class of bug rather
  than patching it. `ribbonPhase` was emitted in [0, 2*pi] while
  `usePathInterpolation` expects a [0, 1, 2, 3] input range, and `masterCurve`
  and the per-strand jitter carried half-phase coefficients, so the geometry at
  2*pi did not equal the geometry at 0 and the loop had a real seam.
- The illustration is a brand mark, not an audio waveform. The centreline is now
  frozen. Life comes from a highlight travelling along the ribbon and from a
  rigid 4dp drift over 12s, both implemented as slow out-and-back ramps, so
  there is no loop boundary to seam in the first place.
- Fixes the compositing order. The glass shell is now painted after the clipped
  interior ribbon, so the strands genuinely sit inside the sphere instead of on
  top of it.

The ribbon is now a woven surface
- One art-directed Catmull-Rom centreline, and every strand is offset along that
  curve's own perpendicular rather than in raw Y. Parallelism is the point: the
  perpendicular separation between adjacent strands is exactly
  `|offsetA - offsetB| * halfWidth` at every sample, and the test asserts it.
  A Y-offset construction only holds where the curve is horizontal and drifts
  apart through every bend.
- 24 filaments, ordinary 0.55-0.8dp, hero 0.9-1.15dp, glow at 2.8x core width
  and low alpha rather than a 6x fuzzy halo.
- The bundle contracts around the sphere and fans toward both edges, which is
  what makes the mesh read as converging on the object.
- Interior geometry is only built across the sphere plus a margin, since it is
  clipped to the sphere; building it across the full hero width tripled the
  stroked segment count for nothing.

The orb is now two baked layers
- `hero-orb-body.webp` and `hero-orb-glass.webp`, generated by
  `scripts/generate-circe-hero-assets.ts`. Radius-driven shader ramps read as
  concentric bands: they cannot express asymmetric directional lighting, a
  Fresnel rim or a specular lobe. The asset is shaded from the reconstructed
  sphere normal with a key and fill light, a directional terminator, a
  subsurface glow for internal illumination and limb darkening.
- The glass face is nearly clear, carrying only the Fresnel rim and two
  specular lobes. A broad sheen across the face fogged the body into polished
  metal, which is the opposite of glass over warm copper.
- Full-surface hash grain is gone. It read as dithering and broke up the volume;
  it is replaced by 20 discrete internal light motes.
- `CirceOrb` remains fully procedural for product states.

The interior strands are shifted hot and lifted slightly. At the same copper as
the body they vanished into it entirely, which is how the first pass shipped
with an invisible interior ribbon.

Hero orb radius drops to 0.215 of the width, clamped to 76-88dp, so the mesh
dominates the composition rather than the sphere.

The gallery gains a Frozen/Live motion switch and defaults to frozen, so a
still frame can be judged before motion is allowed to excuse anything.

* perf(mobile): cut per-frame work in the welcome hero ribbon

Reduces the cost of the woven surface. These are defensible reductions in work
per frame; see the caveat below on what I could and could not verify.

- Ordinary strands no longer carry a highlight gradient. Every one of the 72
  filament instances used to create two animated derived values, so all of them
  re-evaluated a worklet and allocated a point on every frame. The gradient now
  lives in its own component used only by the four hero strands.
- Stroke joins are miter rather than round. Skia emits join geometry at every
  vertex, and this ribbon is a densely sampled polyline, so round joins were
  generating thousands of join primitives. At this sampling density the two are
  visually identical.
- Sampling drops from 26 to 14 steps per segment. Stroke geometry is generated
  per segment, so this is a direct cost driver.
- The halo pass is limited to the strands meant to catch the light. Wide
  translucent strokes are pure fill rate and overdraw, and a halo on all 24
  strands across three planes was the largest single contributor.

Measurement caveat, recorded because it is easy to misread: the screen renders
at the same frame time with the hero removed entirely, so this change is not
demonstrably responsible for any measured improvement, and `dumpsys gfxinfo` on
this device reports internally inconsistent numbers (455 frames over 12s is a
26ms average, while the same sample reports a 61ms median). Do not treat the
hero as the performance owner for this screen without a cleaner instrument.

* refactor(mobile): art-direct the hero orb assets and align the hero vocabulary

The previous pass produced a planet. The body had a directional falloff down to
0.24 and a round specular, which reads as a sphere under a hard key light rather
than as the reference's luminous object. The shading is now art-directed rather
than physical.

Body (`hero-orb-body.png`)
- Ramp is deep brown through warm brown and copper to peach-copper, matching the
  reference palette rather than the previous darker set.
- The directional falloff floor rises from 0.24 to 0.45, so the shadow side
  stays warm brown. That single number was responsible for the planet look.
- Limb darkening drops to a mild term. The fresnel rim belongs to the shell
  layer and should not be doubled up here.
- The suspended specks are baked in. Rendering them live was a second source of
  truth for something that never moves.

Shell (`hero-orb-shell.png`)
- One anisotropic highlight streak replaces the round specular. Studio lighting
  reads as an elongated streak; a round dot reads as a shiny ball.
- The rim is biased so it is stronger top-left, top and right rather than
  uniform all the way round.
- The outward bloom is much tighter. The first attempt kept near full strength
  across the entire image margin, which rendered as a solid opaque donut around
  the sphere.
- The face stays at 0.012 alpha, verified from the exported alpha profile, so
  the shell adds a rim and a streak without flattening the body's depth.

Both layers now place the sphere at 0.93 of the half-image, reserving margin for
the bloom to extend past the silhouette. The generator and the components share
`HERO_ASSET_SPHERE_SCALE`, because a mismatch here silently misaligns the rim
against the body edge.

Interior mesh brightness is reduced. Pushed harder it read as a glowing stripe
cutting the sphere rather than as light travelling through glass.

Files are renamed to the hero vocabulary: `HeroRibbonMesh`, `HeroHaloArcs`,
`HeroAmbientParticles`, `HeroOrbShell`. The geometry module keeps its specific
name rather than becoming `heroMath`, since it holds ribbon geometry and not
general math.

* refactor(mobile): replace the welcome hero renderer with the approved illustration

The hero is now the approved reference artwork, supplied as a single
transparent plate. Everything the previous passes built to approximate it is
deleted.

Why the replacement rather than another pass
- `scripts/generate-circe-hero-assets.ts` computed a sphere normal, applied
  key/fill dot products, a directional shade term and limb darkening, then
  rasterized the result. That is cached shader maths carrying a PNG extension,
  so it inherited every limitation of the procedural sphere it replaced and read
  as a glossy planet.
- The mesh was one Catmull-Rom centreline with filaments offset along its
  normal. That construction keeps strand ordering fixed for the whole length of
  the ribbon, so it can only ever draw a bent sheet of parallel strands. The
  reference has strands that cross and change depth, fans that differ left from
  right, and ribbon width that varies deliberately. Those relationships are the
  design, and deriving them independently then compositing them at runtime
  produced a belt around a ball.
- The layer order was correct and the alpha profile was mathematically correct
  the whole time. Neither of those was the problem, which is exactly why
  implementation-level checks kept passing while the screenshot stayed wrong.

Deleted: `scripts/generate-circe-hero-assets.ts`, `HeroRibbonMesh`,
`HeroHaloArcs`, `HeroAmbientParticles`, `HeroOrbBody`, `HeroOrbShell`,
`heroRibbonGeometry` and its test, `heroTokens`, and both generated orb layers.

What replaces them
- `apps/mobile/assets/circe/welcome-hero-base.png`, 1536x1024 with real
  transparency, rendered as one image.
- `CirceWelcomeHero` is a plain React Native image at the plate's own aspect
  ratio, so the composition is never cropped or distorted. There is no Skia
  canvas left in the hero, because there is no longer any Skia content to
  compose with.
- Static by design. The previous revision drifted the mesh 4dp every 13s and
  swept a highlight along it; for a brand illustration, movement should come
  from light and only after the still frame matches. There is no animation to
  approve yet.

Layout moves the hero below the subcopy, which is where the reference puts it.

Asset note: the plate is 2.2MB as PNG. It is committed exactly as supplied;
converting to WebP would cut it to roughly 200KB with no visual change if that
matters for bundle size.

* feat(mobile): finish the welcome screen against the reference

Composition and typography now match the approved reference, and the screen fits
without scrolling.

Authored type rather than a system stack
- Bundles Instrument Serif from @expo-google-fonts. It matches the reference's
  high-contrast editorial serif with ball terminals, and it is what the design
  system already named for identity moments while noting it needed a rebuild.
- Registered natively in app.config.ts so release builds pay no runtime cost,
  and also loaded at runtime in App.tsx so a dev client built before this change
  can still render it without a full native rebuild.
- The headline sets `fontFamily` explicitly on both spans. It previously layered
  a serif class over AppText's font-sans, and the two were fighting.

Real brand assets
- The wordmark uses the approved `circe-mark.png` instead of a redrawn SVG ring.
- The Google mark was a single blue shape: the canonical four-colour paths had
  the blue quadrant duplicated as a full outline, which painted over the other
  three. Replaced with the correct brand paths.

The hero no longer wastes height
- The supplied plate carried about 250px of fully transparent margin above and
  below the mesh, which at hero scale became ~60dp of dead space and pushed the
  whole sign-up screen into a scroll. The plate is cropped to its content bounds
  (margins only, no artwork removed) and re-encoded as WebP: 2.2MB to 540KB.
- The viewport is now derived from the scaled plate rather than a fixed
  `245-260dp`, so the composition holds across widths instead of leaving a gap
  on tall screens and cropping on short ones.

Layout
- Hero sits directly under the wordmark and above the headline, as instructed.
- Headline copy is now "Talk to every machine, / from anywhere.", which covers
  the voice and remote aspects in two balanced lines. The previous first line was
  long enough to spill onto a third.
- Removed the benefit row. It read as filler rather than information, and it was
  the last thing keeping the page scrollable.
- The account link is copper throughout, the primary CTA carries a copper
  hairline and a copper shadow cast, and the legal links are underlined and open
  the real Terms and Privacy URLs in the in-app browser.

* feat(mobile): rebuild the Circe orb, live voice, and no-device state

Orb: port the Web Threads field to SkSL (rear field, rim caustic, refraction), keep the idle lens clean, and tune appearance.

Live voice: caption shows Circe only, one failure notice instead of two, mint only on an online node, and delegate corrections/quick actions without depending on the speech model's judgement.

Weather/time: propose the deterministic lookup in the bounded grammar before the project guard so quick actions never fall through to a chat model.

Home: replace unusable controls with an honest no-device state, and show a connecting placeholder on cold start instead of a false no-device claim.

* fix(mobile): align the theme bridge test with the design system tokens

The generator test still asserted the pre-design-system screen colors
(#faf7f1 / #16181b) while the authored global.css and the generated
bridge use the v1 warm-paper palette (#fcf9f4 / #0c0d0e). Regenerate the
committed bridge (alpha normalized to 0.2) and assert the authored
values. This unblocks the mobile PR after its rebase onto main.

* test(circe): register merged upstream migrations 67-69 in the manifest tests

The upstream orchestration V2 merge added three migrations above Circe's
shipped 41-66 slots. MigrationsRemap and the V2 migration test still asserted a
contiguous manifest ending at 66 and V2 at upstream's id 53, so both failed.
Extend the expected manifest to 69 and assert the Circe-remapped V2 slot while
keeping the schema and index checks intact.

* fix(circe): reconcile web imports with the merged V2 client surfaces

The orchestration V2 merge removed exports the web app still imported, so the
web bundle failed to resolve ../T3Wordmark and two components referenced
removed APIs at runtime. Point V2LifecycleRow at CirceWordmark, render
provider rows through the centralized ProviderInstanceIcon instead of the
removed PROVIDER_ICON_BY_PROVIDER map, and use the V2 useThreadProjection
hook in place of the retired V1 useThread.

* test(circe): exercise the message-context migration at its remapped slot

The upstream ProjectionThreadMessageContext migration registers at 67 on the
Circe line, but the test migrated to 51 and asserted id 51 (CirceFollowUpQueue),
so it never exercised the guarded migration. Migrate to 66, keep the manual
column, then apply 67 and assert migration 67 was recorded.

* test(circe): replay in shared workspaces and guard foreign databases

V2 file restore now requires an isolated worktree, but the replay and fork
fixtures dispatch checkpoint.rollback in a shared workspace while asserting
conversation rewind, so they are conversation-only (restoreFiles: false). Drop
the upstream-numbered LegacyV1Cutover integration test and cover the real
invariant instead: a database recording another product's history under a Circe
migration id is refused with ForeignDatabaseError.

* fix(circe): map the V2 thread runtime to desktop orb statuses

The orb bridge read session.status and backgroundLiveness, which the V2 shell
removed, so the desktop orb mis-rendered agent status and failed typecheck. Map
preparing/queued/starting to starting, running to running, waiting to waiting,
and pending background tasks to monitoring, and update the fixtures.

* test(circe): read the foreign-database defect with the Effect 4 Cause API

* fix(circe): apply V2 module deletions and reconcile ownership guards

* chore(circe): re-key service tags and align sqlite runtime with V2

Service Context tags across apps/server/src still carried upstream `t3/...`
keys while the package name makes the expected deterministic key
`@absterrg0/circe/...`. Re-keyed all 56 declarations, including the nine
orchestration-v2 services whose class-suffixed keys (e.g. `.../CommandPolicy/
CommandPolicyV2`) the prefix-only pass did not reach.

Also:
- Aligned persistence/Laye…
juliusmarminge added a commit that referenced this pull request Sep 18, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 18, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 18, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 18, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 18, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 19, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 19, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 19, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 21, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 21, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 23, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 23, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
juliusmarminge added a commit that referenced this pull request Sep 23, 2026
Renumbers the v2 migrations 044-052 to 045-053 behind main's
044_ClearAutomaticProjectModelDefaults, and adopts main's sticky
new-thread selection (#9164), local-only worktree bases in the v2 launch
path (#8751), the PR summary read for settlement (#9176), Claude per-cwd
skills (#9210), the provider editor redesign with the branch's dedicated
environment fields re-grafted (#8508), and the client half of
continue-threads-across-restart (#9167). The server-side continuation
markers stay unported: they live in the v1 session directory, and v2
recovery terminalizes running runs on restart, so the capability is
withheld until the v2 runtime carries them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:S 10-29 changed lines (additions + deletions). vouch:unvouched PR author is not yet trusted in the VOUCHED list.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Skill picker lists the server's startup-directory skills, not the active project's

2 participants