Skip to content

[openai] 🤖 feat: add project-specific Codex OAuth accounts - #4102

Open
coadler wants to merge 18 commits into
mainfrom
oauth-auth-zfnm
Open

[openai] 🤖 feat: add project-specific Codex OAuth accounts#4102
coadler wants to merge 18 commits into
mainfrom
oauth-auth-zfnm

Conversation

@coadler

@coadler coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator

Summary

Support multiple Codex OAuth accounts with a global default and project-specific account selection.

Background

Projects can require different ChatGPT accounts. A single saved login forces users to reconnect when they switch projects.

Implementation

  • Add account controls under Settings → Providers → OpenAI and six command-palette actions.
  • Preserve the existing login as the default account without a credential migration.
  • Apply project selection to chat, title generation, status generation, and CLI runs.
  • Pin the selected account for each request. Report missing selections instead of substituting another account.
  • Serialize token refreshes across processes and preserve refreshed CLI credentials in the permanent provider store.
  • Return account labels, IDs, and reconnect status to the renderer without credentials.
  • Preserve credential identity across model requests, token rotation, and reconnects.
  • Keep compaction limits and model credentials on the same per-turn snapshot.

Risks

Incorrect account routing can charge the wrong account. Explicit selection and missing-account errors prevent silent account substitution.

Concurrent refreshes can invalidate credentials. Account-specific leases and conditional writes protect token rotation and account removal.

Older versions use only the legacy account. Named-only configurations require this version or newer. Existing legacy credentials remain until explicit disconnect.

We do not duplicate rotating credentials for downgrade support. Duplicate refresh tokens can invalidate named accounts across versions.

Live OpenAI authorization remains untested.


Generated with xum • Model: openai:gpt-6-astra • Thinking: high • Cost: $226.69

@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

@chatgpt-codex-connector

This comment has been minimized.

@chatgpt-codex-connector

This comment has been minimized.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 1cad0e2ef6

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/node/services/codexOauthService.ts
Comment thread src/browser/features/ChatInput/index.tsx Outdated
Comment thread src/node/services/codexOauthService.ts Outdated
Comment thread src/node/services/codexOauthService.ts
Comment thread src/node/utils/codexOauthAuth.ts Outdated
Comment thread src/cli/trust.ts
Comment thread src/common/utils/providers/codexOauthRouting.ts Outdated
Comment thread src/node/services/codexOauthService.ts Outdated
@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

Commit 8dcc53b addresses seven findings:

  • 3942614514: Browser and backend account routing share effective project scope.
  • 3942614516: Local refreshes update pending reconnect snapshots before the reconnect commits.
  • 3942614517: Named login repairs malformed account maps.
  • 3942614519: Account readers exclude invalid stored IDs.
  • 3942614520: CLI startup verifies account selection after persistence.
  • 3942614521: Missing selections disable direct API controls and retain OAuth context limits.
  • 3942614523: First-login credentials and default selection commit together.

3942614509 is an intentional compatibility limit, explained in the thread and PR risks. Existing legacy credentials remain until explicit disconnect. Named-only configurations need this version or newer. We do not duplicate rotating credentials or silently substitute another account.

Please review the changes and this compatibility rationale.

@chatgpt-codex-connector

This comment has been minimized.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 8dcc53ba2f

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/node/services/codexOauthService.ts Outdated
Comment thread src/cli/trust.ts
Comment thread src/node/services/codexOauthService.ts Outdated
@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

Commit 9c6e6e2 addresses the second review:

  • 3942653428: Durable credential IDs distinguish cross-process token rotation from replacement. Refresh preserves the ID. Interactive completion replaces it.
  • 3942653433: CLI account selection uses the deepest registered project that contains the explicit directory.
  • 3942653436: Failed newer startup preserves the previous active login selection.

CI also exposed a metadata issue. The provider response now preserves an unset account selection instead of inventing an explicit default. API-key-only configurations retain direct API controls.

@chatgpt-codex-connector

This comment has been minimized.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 9c6e6e28f5

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/node/services/codexOauthService.ts
Comment thread src/node/services/codexOauthService.ts Outdated
Comment thread src/node/services/codexOauthService.ts
@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

Commit 6d23a15 addresses the remaining findings:

  • 3942681803 and duplicate 3942681805: Invalid-grant CAS marks the credential without removing its identity. Pending reconnect can replace it. Marked tokens cannot serve requests or refresh again. Explicit disconnect still removes them.
  • 3942681804: Every request read checks the pinned credential ID. Waiting requests adopt only same-ID rotations and reject replacements.

The tests cover both reconnect/invalidation orders and local-mutex and cross-process lease waiters.

@chatgpt-codex-connector

This comment has been minimized.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 6d23a15fb2

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/node/services/providerModelFactory.ts Outdated
Comment thread src/browser/features/Settings/Sections/CodexAccounts.tsx
Comment thread src/node/services/providerService.ts
Comment thread src/node/services/codexOauthService.ts Outdated
@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

Commit 94c7612 addresses the fourth review:

  • 3942711077: Each model fetch requires the construction-time credential ID, including retries and legacy IDs.
  • 3942711078: Six command-palette actions reuse account settings handlers and controls. Tests cover repeated commands, busy states, stale IDs, policy changes, and StrictMode.
  • 3942711080: Invalid accounts retain their labels and expose reconnectRequired. They no longer count as usable OAuth credentials.
  • 3942711081: Desktop and device terminal cleanup remove only their matching login selection.

All reported threads are resolved. Local static checks and 1,436 regression tests pass. The 13 account stories pass at desktop and phone widths.

@chatgpt-codex-connector

This comment has been minimized.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 94c76122c8

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/node/services/codexOauthService.ts Outdated
Comment thread src/browser/features/Settings/Sections/CodexAccounts.tsx Outdated
Comment thread src/common/utils/compaction/contextLimit.ts
@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

Commit f9b8442 addresses the latest findings:

  • 3942778346: Disconnect deletion and revision advancement share the account mutation lock. Failed deletion preserves requests and reconnects.
  • 3942778347: OAuth precedence requires usable credentials. The recovery story verifies the selector stays disabled until reconnect succeeds.
  • 3942778349: Backend pre-send, streaming, continuous, and headless compaction limits use workspace account scope. Explicit API-key preference remains unchanged.

Local static checks, 1,520 regression tests, and all 13 account stories at desktop and phone widths pass.

@chatgpt-codex-connector

This comment has been minimized.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: f9b8442090

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/browser/features/Settings/Sections/CodexAccounts.tsx Outdated
@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

Commit d7a3f37 addresses 3942811576. All new useCallback wrappers are removed. The component now uses ordinary functions and React Compiler memoization.

The installed hooks linter predates React Compiler. A scoped declaration-only suppression handles its callback-stability warnings. The effect retains its complete dependency list, and dependency checking resumes before the effect.

Static checks, focused keyboard/provider tests, and all 13 account stories at desktop and phone widths pass.

@chatgpt-codex-connector

This comment has been minimized.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: d7a3f37930

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/node/services/providerModelFactory.ts Outdated
@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

Commit b7d0905 addresses finding 3942839838. Route availability now requires usable OAuth credentials. Revoked-only configurations permit configured gateway routes. CLI provider detection uses the same rule.

Local static checks and 182 focused tests pass. Tests cover legacy slots, named slots, direct priority, and direct overrides.

@chatgpt-codex-connector

This comment has been minimized.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: b7d09057eb

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/node/utils/providerRequirements.ts
Comment thread src/node/services/providerModelFactory.ts
Comment thread src/node/services/agentSession.ts Outdated
@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

Commit 2052332 addresses all three findings:

  • 3942863192: CLI provider detection excludes disabled OAuth providers.
  • 3942863194: Direct OAuth route availability uses canonical model support, including custom model mappings.
  • 3942863195: Pre-send, streaming, retry, and headless compaction use one provider and account snapshot.

Snapshot capture uses the injected permanent provider store for CLI runs. Public metadata and model credentials derive from the same read. Tests cover account inheritance changes, provider preference changes, wire format, and concurrent provider-file changes.

All 732 focused tests and local static checks pass.

@chatgpt-codex-connector

This comment has been minimized.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 2052332c32

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/node/services/projectService.ts Outdated
Comment thread src/node/utils/codexOauthAuth.ts
@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

Commit 5cdb0d8 addresses both findings:

  • 3942922284: Project account updates verify persisted state before reporting success, including clearing an override.
  • 3942922286: Malformed optional credential IDs retain valid tokens and account visibility. Reconnect assigns a valid durable ID.

All 528 focused tests and local static checks pass. Regressions cover failed writes and reconnects for legacy and named accounts.

@chatgpt-codex-connector

This comment has been minimized.

@github-merge-queue
github-merge-queue Bot removed this pull request from the merge queue due to a conflict with the base branch Sep 6, 2026
@coadler
coadler added this pull request to the merge queue Sep 6, 2026
@github-merge-queue
github-merge-queue Bot removed this pull request from the merge queue due to a conflict with the base branch Sep 6, 2026
Mux added 16 commits September 6, 2026 15:05
Support named accounts, project selection, and durable token refresh.

---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$45.65`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=45.65 -->
---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$56.93`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=56.93 -->
---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$72.93`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=72.93 -->
---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$80.74`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=80.74 -->
---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$109.41`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=109.41 -->
---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$180.53`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=180.53 -->
---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$180.53`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=180.53 -->
---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$180.53`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=180.53 -->
Ignore disabled OAuth providers during CLI startup checks.
Resolve OAuth route availability with the canonical model.
Share one provider and account snapshot across turn construction and compaction.
Capture CLI credentials from the injected permanent provider store.

Co-authored-by: Mux <noreply@coder.com>

---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$226.69`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=226.69 -->
Verify the persisted project account before reporting success.
Retain valid OAuth credentials when an optional login ID is malformed.
Let reconnect assign a valid durable login ID.

Co-authored-by: Mux <noreply@coder.com>

---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$226.69`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=226.69 -->
Disable revoked account choices while retaining stored selections.
Write legacy credential IDs only after reconnect startup succeeds.
Hold the refresh lease through startup and verify credentials before writing.
Close failed listeners and bound device startup requests.

Co-authored-by: Mux <noreply@coder.com>

---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$226.69`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=226.69 -->
Reject superseded login startups before they replace an active selection.
Carry the failed turn provider snapshot through automatic resume state.
Keep explicit resumes on current settings and keep snapshots out of disk metadata.

Co-authored-by: Mux <noreply@coder.com>

---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$280.70`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=280.70 -->
Add snapshot capture to the workspace admission test doubles.
Keep the existing exclusion and pre-admission assertions unchanged.

---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$296.52`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=296.52 -->
Check request authentication without the removed cost marker.
Keep the upstream API-equivalent cost behavior after the rebase.

---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$305.22`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=305.22 -->
Keep accepted account snapshots through compaction continuations.
Allow explicit API-key recovery when the selected OAuth account disconnects.

---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$305.22`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=305.22 -->
…ic operations

Keep valid credentials available when persisted account labels are damaged.
Pin one routing snapshot across title and status candidate retries.
Distinguish duplicate labels with stable account IDs in settings and commands.

Co-authored-by: Mux <noreply@coder.com>

---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$353.75`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=353.75 -->
@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

Rebased onto main at 5605e78. The new head is d7869b5.
The conflict resolution retains the new coordinator guards and the existing account snapshots.
The remaining account changes retain their behavior.

Local static checks and 1,412 regression tests pass.


Generated with xum • Model: openai:gpt-6-astra • Thinking: high • Cost: $364.46

@chatgpt-codex-connector

Copy link
Copy Markdown

Codex Review: Didn't find any major issues. Chef's kiss.

Reviewed commit: d7869b5d1b

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

@chatgpt-codex-connector

This comment has been minimized.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: d7869b5d1b

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/node/services/turnRequestBuilder.ts
Keep advisor and intuition requests on the accepted turn account.
Preserve separate tool provider options.

Co-authored-by: Mux <noreply@coder.com>

---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$379.64`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=379.64 -->
@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

Commit e5b47cd fixes PRRT_kwDOPxxmWM6fuvFz.
Advisor and intuition now reuse the accepted account snapshot and retain their separate provider options.
Six regressions verify request endpoints and authentication after account or preference changes.

Local static checks and 1,418 regression tests pass.
The prior Storybook failure does not reproduce locally; all seven remote-connection stories pass.
The prior unit job reports a Bun segmentation fault. Its focused kernel tests pass locally with coverage.


Generated with xum • Model: openai:gpt-6-astra • Thinking: high • Cost: $379.64

@chatgpt-codex-connector

This comment has been minimized.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: e5b47cd11f

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/node/services/modelRoutingSnapshot.ts
Comment thread src/browser/features/ChatInput/index.tsx
Capture route preferences with account snapshots for delayed model creation.
Send only the effective numeric context limit to live usage meters.
Use current settings after the active stream ends.

Co-authored-by: Mux <noreply@coder.com>

---

_Generated with `xum` • Model: `openai:gpt-6-astra` • Thinking: `high` • Cost: `$397.18`_

<!-- mux-attribution: model=openai:gpt-6-astra thinking=high costs=397.18 -->
@coadler

coadler commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator Author

@codex review

Commit 5076fc7 addresses both findings:

  • PRRT_kwDOPxxmWM6fu2x_: Captured route priorities and overrides now reach main, nested, fallback, and compaction model creation.
  • PRRT_kwDOPxxmWM6fu2yB: Both live context meters use the accepted numeric limit. Idle meters use current settings.

The browser receives no routing snapshot or credentials.
Static checks and 1,733 regression tests pass.
All 21 account stories pass at desktop and phone widths.


Generated with xum • Model: openai:gpt-6-astra • Thinking: high • Cost: $397.18

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant