Skip to content

fix(server): update Claude Agent SDK to 0.3.260 - #9135

Merged
t3dotgg merged 4 commits into
mainfrom
t3code/review-claude-code-changelog
Sep 4, 2026
Merged

fix(server): update Claude Agent SDK to 0.3.260#9135
t3dotgg merged 4 commits into
mainfrom
t3code/review-claude-code-changelog

Conversation

@t3dotgg

@t3dotgg t3dotgg commented Sep 1, 2026

Copy link
Copy Markdown
Member

Problem

The server pinned @anthropic-ai/claude-agent-sdk 0.3.170 while users run Claude Code 2.1.260. The adapter spawns the user's installed CLI, so it already receives frames the old types did not declare. Two of those gaps are user-visible:

  • The CLI now stamps terminal_reason values such as api_error and malformed_tool_use_exhausted on results with an empty error list. The adapter read those as clean completions, so a turn that died looked done.
  • Six message types the SDK now declares (background_tasks_changed, control_request_progress, informational, model_refusal_no_fallback, worker_shutting_down, conversation_reset) tripped the adapter's exhaustive switches at typecheck time.

Fix

  • Bump the SDK to 0.3.260 (parity with Claude Code 2.1.260). The 0.3.259 and 0.3.260 releases only add optional fields (user_message_uuids, permissionPrompts, extra timing fields, managedMcpServers in settings) and need no adapter change.
  • Consume background_tasks_changed, control_request_progress, worker_shutting_down, and conversation_reset silently. The task lifecycle events and session close path already carry what the UI needs.
  • Surface warning-level informational notes (for example a Stop hook that refused continuation) and model_refusal_no_fallback as work-log warnings.
  • Mark results whose terminal_reason is one of the CLI's dead-turn reasons (api_error, malformed_tool_use_exhausted, budget_exhausted, structured_output_retry_exhausted, tool_deferred_unavailable, turn_setup_failed, blocking_limit, rapid_refill_breaker, prompt_too_long, image_error, model_error) as failed turns with a plain error message. Name a 529 overload when the error list is empty.
  • Add the now-required requestId to canUseTool test fixtures.

Verified with vp test run on the Claude adapter and provider tests (85 passed) and a clean server typecheck after rebasing onto main.

Made with Claude Fable 5.1 in Claude Code.


Note

Medium Risk
Changes turn outcome classification for Claude agent sessions—previously “successful” dead turns will now show as failed—which is correct but affects user-visible runtime state and error messaging.

Overview
Upgrades @anthropic-ai/claude-agent-sdk to ^0.3.260 (lockfile + workspace exclude) so server types match newer Claude Code wire messages.

Turn completion no longer treats “success” results with empty errors as done when the CLI signals failure via api_error_status: 529 or terminal_reason in a fixed dead-turn set (api_error, budget/limit errors, prompt too long, model/image errors, etc.). Those paths now emit failed turns with specific user-facing messages from resultUserFacingError.

SDK message handling adds explicit handling for newer system subtypes: silent consumption for control_request_progress, worker_shutting_down, and top-level conversation_reset; runtime warnings for warning-level informational and model_refusal_no_fallback. Tests cover dead-turn reasons, 529 overload, expanded warning filtering, and required requestId on permission/dialog callbacks.

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

Note

Update Claude Agent SDK to 0.3.260 and classify dead-turn terminal reasons as failures

  • Bumps Claude Agent SDK to 0.3.260 in package.json and excludes it from the workspace minimum-release-age policy in pnpm-workspace.yaml
  • ClaudeAdapter.resultUserFacingError now maps terminal reasons (usage limits, context-size failures, image/model errors, retry exhaustion, setup failure, blocking limits, overlong prompts, etc.) to user-facing error messages even when the SDK reports a success subtype or only diagnostic errors
  • ClaudeAdapter.isOverloadedResult detects success-subtype SDK results with HTTP 529 and turnStatusFromResult marks both overload and dead-turn terminal-reason results as failed rather than completed
  • ClaudeAdapter.handleSystemMessage emits runtime warnings for warning-level informational messages and no-fallback model refusals; conversation-reset and other non-warning system messages are now silently consumed instead of hitting the unknown-message warning path
  • Behavioral Change: SDK results that previously completed successfully may now fail the turn — specifically 529 overload results and any terminal reason in the FAILED_TERMINAL_REASONS set in ClaudeAdapter.ts

Macroscope summarized d00caa1.

@github-actions github-actions Bot added vouch:trusted PR author is trusted by repo permissions or the VOUCHED list. size:M 30-99 changed lines (additions + deletions). labels Sep 2, 2026
@github-actions

github-actions Bot commented Sep 2, 2026

Copy link
Copy Markdown
Contributor

Thread transfer impact

✅ Thread transfer remains within every enforced ceiling.

Provider Metric Main baseline This PR Impact PR ceiling
Codex Total thread wire 13.6 KiB 13.7 KiB +174 B (+1.3%) 15.1 KiB
Codex Thread snapshot wire 7.0 KiB 7.0 KiB −1 B (−0.0%) 7.3 KiB
Codex Live turn WebSocket wire 6.5 KiB 6.7 KiB +175 B (+2.6%) 7.8 KiB
Codex Live turn WebSocket decoded 57.0 KiB 58.5 KiB +1.5 KiB (+2.6%) 66.4 KiB
Codex Live turn messages 9 10 +1 (+11.1%) 21
Claude Total thread wire 13.6 KiB 13.6 KiB −17 B (−0.1%) 15.1 KiB
Claude Thread snapshot wire 7.0 KiB 7.0 KiB +2 B (+0.0%) 7.3 KiB
Claude Live turn WebSocket wire 6.6 KiB 6.6 KiB −19 B (−0.3%) 7.8 KiB
Claude Live turn WebSocket decoded 57.9 KiB 57.9 KiB 0 B (0.0%) 66.4 KiB
Claude Live turn messages 10 10 0 (0.0%) 21

Baseline: 01f3e50 · PR result: d00caa1 · Source CI: success

Scenario and decoded snapshot size

10 historical turns, 5 command tools per turn, 878.9 KiB retained MCP result per historical turn, and a 1.05 MiB retained result in the measured turn.

  • Codex decoded thread snapshot: 113.8 KiB
  • Claude decoded thread snapshot: 114.5 KiB

Updated in place by a trusted workflow. PR artifacts are strictly validated and never executed.

Comment thread apps/server/src/provider/Layers/ClaudeAdapter.ts
@github-actions github-actions Bot added size:L 100-499 changed lines (additions + deletions). and removed size:M 30-99 changed lines (additions + deletions). labels Sep 2, 2026
macroscopeapp[bot]
macroscopeapp Bot previously approved these changes Sep 2, 2026
@macroscopeapp

macroscopeapp Bot commented Sep 2, 2026

Copy link
Copy Markdown
Contributor

Approvability

Verdict: Approved at d00caa1

Macroscope's review found this PR approvable — This is a focused Claude SDK compatibility and error-reporting fix. Runtime changes are confined to existing Claude turn classification and message handling, with targeted tests covering the new SDK signals and no product-default, schema, security, billing, or deployment changes.

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

@t3dotgg
t3dotgg force-pushed the t3code/review-claude-code-changelog branch from eb36cf5 to 5d174be Compare September 2, 2026 01:09
@macroscopeapp
macroscopeapp Bot dismissed their stale review September 2, 2026 01:09

Dismissing prior approval to re-evaluate 5d174be

@cursor cursor Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Cursor Bugbot has reviewed your changes using high effort and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 5d174be. Configure here.

Comment thread apps/server/src/provider/Layers/ClaudeAdapter.ts
@t3dotgg

t3dotgg commented Sep 2, 2026

Copy link
Copy Markdown
Member Author

Note

🤖 Claude Fable 5.1 responding on behalf of Theo

The Macroscope verdict at 5d174be describes changes this PR does not contain. The diff against main is five files: the SDK version in apps/server/package.json, the lockfile, one minimumReleaseAgeExclude line, ClaudeAdapter.ts, and its test. There is no skill dispatch, replay, streaming, or web highlighter change here. Those landed on main separately and the bot appears to have read the rebase range as PR content.

The one real point, the missing dead-turn reasons, is fixed in 0b40ae3.

macroscopeapp[bot]
macroscopeapp Bot previously approved these changes Sep 2, 2026
@t3dotgg
t3dotgg force-pushed the t3code/review-claude-code-changelog branch 2 times, most recently from 5317b4c to b379ef3 Compare September 3, 2026 09:18
t3dotgg and others added 4 commits September 4, 2026 06:12
The server pinned @anthropic-ai/claude-agent-sdk 0.3.170 while users run
Claude Code 2.1.257. The SDK types now declare six message types the
adapter's exhaustive switches did not handle, and the CLI stamps new
terminal_reason values that the adapter read as clean completions.

Bump the SDK to 0.3.258. Handle the new message types: consume
background_tasks_changed, control_request_progress, worker_shutting_down,
and conversation_reset silently; surface warning-level informational notes
and model_refusal_no_fallback as work-log warnings. Mark results whose
terminal_reason is api_error, malformed_tool_use_exhausted,
budget_exhausted, structured_output_retry_exhausted,
tool_deferred_unavailable, or turn_setup_failed as failed turns with a
plain error message, and name a 529 overload when the error list is empty.
Add the now-required requestId to canUseTool test fixtures.

Made with Claude Fable 5.1 in Claude Code.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
A success-subtype result with api_error_status 529 carried an error
message but kept the completed status. Route the overload check through
one helper used by both the status and the error message, and add a test.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
blocking_limit, rapid_refill_breaker, prompt_too_long, image_error, and
model_error also arrive on success-subtype results with an empty error
list. Add them to the failed set with a plain message each and cover all
dead-turn reasons in one table test.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Parity with Claude Code 2.1.260. The 0.3.259 and 0.3.260 releases add
optional fields only (user_message_uuids, permissionPrompts, extra
timing fields), so the adapter needs no code change.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
@t3dotgg
t3dotgg force-pushed the t3code/review-claude-code-changelog branch from b379ef3 to d00caa1 Compare September 4, 2026 13:15
@macroscopeapp
macroscopeapp Bot dismissed their stale review September 4, 2026 13:15

Dismissing prior approval to re-evaluate d00caa1

@t3dotgg t3dotgg changed the title fix(server): update Claude Agent SDK to 0.3.258 fix(server): update Claude Agent SDK to 0.3.260 Sep 4, 2026
@t3dotgg
t3dotgg merged commit 560afff into main Sep 4, 2026
26 checks passed
@t3dotgg
t3dotgg deleted the t3code/review-claude-code-changelog branch September 4, 2026 13:23
github-actions Bot added a commit to omarcresp/t3code-flake that referenced this pull request Sep 4, 2026
## What's Changed
* fix(desktop): quit immediately on a second shortcut press by @t3dotgg in pingdotgg/t3code#9657
* fix(server): update Claude Agent SDK to 0.3.260 by @t3dotgg in pingdotgg/t3code#9135
* perf(server): stop loading message bodies for thread summaries by @t3dotgg in pingdotgg/t3code#9662
* perf(web): speed up terminal snapshots by @t3dotgg in pingdotgg/t3code#9663
* fix(web): show machine icons in the environment picker by @t3dotgg in pingdotgg/t3code#9668
* perf(mobile): bound diff syntax highlighting work by @t3dotgg in pingdotgg/t3code#9673
* perf(web): keep Markdown mounted during streaming by @t3dotgg in pingdotgg/t3code#9677
* perf(mobile): skip unused legacy list work by @t3dotgg in pingdotgg/t3code#9679
* perf(marketing): serve images at their display size by @t3dotgg in pingdotgg/t3code#9682
* perf(server): cache and stream static web assets by @t3dotgg in pingdotgg/t3code#9669
* perf(server): batch projector cursor writes by @t3dotgg in pingdotgg/t3code#9671
* perf(server): stop retaining unused OpenCode tool history by @t3dotgg in pingdotgg/t3code#9684
* perf(mobile): reuse chat feed rows during streaming by @t3dotgg in pingdotgg/t3code#9688
* perf(server): omit repeated OpenCode progress logs by @t3dotgg in pingdotgg/t3code#9689
* perf(clients): avoid waiting to read cached relay tokens by @t3dotgg in pingdotgg/t3code#9691
* perf(mobile): reuse diff rows during comment edits by @t3dotgg in pingdotgg/t3code#9693
* perf(web): defer composer draft serialization by @t3dotgg in pingdotgg/t3code#9695
* feat(server): measure provider turn token usage by @t3dotgg in pingdotgg/t3code#9132
* perf(marketing): stop continuous homepage motion by @t3dotgg in pingdotgg/t3code#9697
* perf(server): avoid full patches for checkpoint summaries by @t3dotgg in pingdotgg/t3code#9694
* perf(web): defer diff workers until a code view opens by @t3dotgg in pingdotgg/t3code#9692
* perf(marketing): serve website fonts locally by @t3dotgg in pingdotgg/t3code#9701
* perf(server): stop rebuilding terminal history per chunk by @t3dotgg in pingdotgg/t3code#9703


**Full Changelog**: pingdotgg/t3code@v0.0.39-nightly.20260904.1278...v0.0.39-nightly.20260904.1279

Upstream release: https://github.com/pingdotgg/t3code/releases/tag/v0.0.39-nightly.20260904.1279
henrychu04 added a commit to henrychu04/t3code-coder that referenced this pull request Sep 5, 2026
* fix(web): send cited messages with Cmd+Enter (pingdotgg#9307)

* fix(web): preserve explicit preview navigation URLs (pingdotgg#8902)

* fix(web): prevent loading ssh environments from overriding navigation (pingdotgg#9168)

* fix(mobile): skip unsupported shared settings targets (pingdotgg#9381)

* fix(web): avoid duplicate Antigravity install status (pingdotgg#9419)

* fix(composer): mute fast icon when collapsed (pingdotgg#9451)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): unify skeleton loading animations on one pulse (pingdotgg#9448)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): prioritize authored pull requests (pingdotgg#9453)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): make project icons the default (pingdotgg#9457)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(server): reuse pr state when settling threads (pingdotgg#9459)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): keep agent images collapsed (pingdotgg#9460)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): banner buttons no longer expand the resting composer (pingdotgg#9452)

* fix(web): stop clipping the traits chevron on long Codex effort labels (pingdotgg#9433)

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix(web): make right panel tabs easier to scroll (pingdotgg#9461)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): render transparent previews on white (pingdotgg#9463)

* fix(mobile): show loading and syncing in the working pill (pingdotgg#9466)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>

* fix(server): keep a/ and b/ prefixes in rendered git patches (pingdotgg#9438)

* fix(server): full-access OpenCode threads no longer ask for approvals (pingdotgg#9282)

Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>

* fix(web): reuse pull request list data while loading (pingdotgg#9467)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* feat(web): let users turn off composer collapse on blur and scroll (pingdotgg#9469)

Co-authored-by: Claude Code <noreply@anthropic.com>

* fix(web): move workflow approval beside checks (pingdotgg#9465)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(desktop): refresh generated annotation styles (pingdotgg#9488)

* fix(web): let the PR reviewer and label search boxes take keystrokes (pingdotgg#9479)

Co-authored-by: Claude Code <noreply@anthropic.com>

* fix(web): dont collapse composer when interacting with bottom row (pingdotgg#9490)

* fix(desktop): restore second-press quit fallback (pingdotgg#9485)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): keep opencode icon hollow in collapsed composer (pingdotgg#9492)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): keep agent browser preview visible (pingdotgg#9484)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(mobile): keep the machine glyph next to the environment label (pingdotgg#9486)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>

* fix(mobile): let back swipe pop from horizontal scroll edges (pingdotgg#9493)

Co-authored-by: Claude Code <noreply@anthropic.com>

* fix(antigravity): discover legacy workspace skills (pingdotgg#9410)

Co-authored-by: Simone <185146821+Lucenx9@users.noreply.github.com>

* fix(mobile): resolve Antigravity provider icon and normalize driver matching (pingdotgg#9495)

* fix(antigravity): forward Google sign-in URLs from browser helper (pingdotgg#9425)

* feat(desktop): import browser cookies into a profile (pingdotgg#7255)

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

* feat(desktop): import from Chrome, Edge, Brave, Vivaldi, Opera, Arc and Firefox (pingdotgg#7260)

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

* feat(desktop): resolve Chromium cookie keys on Linux (pingdotgg#7261)

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

* fix(antigravity): allow slow runtime startup during setup (pingdotgg#9510)

* fix(antigravity): keep model choices up to date (pingdotgg#9511)

* fix(antigravity): handle native sign-in URLs on stderr (pingdotgg#9514)

* fix(antigravity): update managed runtime to 1.1.1 (pingdotgg#9509)

* fix(desktop): address the browser import review left over from the stack (pingdotgg#9516)

Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
Co-authored-by: Utkarsh Patil <73941998+UtkarshUsername@users.noreply.github.com>

* feat(antigravity): show subagent calls and results (pingdotgg#9515)

* fix(web): let paste expand a resting composer (pingdotgg#9498)

Co-authored-by: Claude Code <noreply@anthropic.com>

* fix(web): keep the composer open while selecting timeline text (pingdotgg#9499)

Co-authored-by: Claude Code <noreply@anthropic.com>

* fix(web): return focus to the composer after closing a media preview (pingdotgg#9513)

Co-authored-by: Claude Code <noreply@anthropic.com>

* fix(server): keep events during thread subscription startup (pingdotgg#9521)

* chore: forward issue/PR/discussion events to Cursor hygiene (pingdotgg#9518)

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

* fix(auth): keep pairing credentials out of access read models (pingdotgg#9523)

* chore: drop comment events from Cursor hygiene forwarder (pingdotgg#9527)

* feat(codex): support async questions (pingdotgg#9512)

* fix(web): keep right panel controls clickable (pingdotgg#9517)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* feat(usage): show Codex and Claude subscription limits on a Limits tab (pingdotgg#9507)

Users on Codex or Claude Code subscriptions could not see how much quota was left or when it resets without leaving T3 Code. A user whose CLIs route through a CLIProxyAPI hub could not see it at all.

Each driver now returns `usageLimits` on its own snapshot (Codex from `account/rateLimits/read`, Claude from the SDK's `get_usage`), adapters normalise turn-driven rate-limit events at the boundary, and a driver-blind ingestion layer folds them onto the owning instance. The Usage page gains a Limits tab (mobile a card) with a bar per window, elapsed marker, pace, and reset countdown. CLIProxyAPI hubs can be added as read-only usage-limit sources; their accounts show badged "via CLIProxyAPI" with emails blurred.

Distilled from pingdotgg#1732 (server model, provider rows) and pingdotgg#9421 (Limits tab, window bars, pace maths). Closes pingdotgg#228.

Co-authored-by: Aditya Mer <101453576+Aditya190803@users.noreply.github.com>
Co-authored-by: Wout Stiens <71498452+StiensWout@users.noreply.github.com>
Co-authored-by: Claude Code <noreply@anthropic.com>

* feat(web): reorganize settings pages (pingdotgg#9354)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(server): settle branch threads immediately on pull request merge (pingdotgg#9528)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(server): back off relay client restarts after rapid exits (pingdotgg#8788)

* fix(codex): accept rate limit errors on thread resume (pingdotgg#8897)

* fix(desktop): preview CDP sessions no longer hard-crash the app (pingdotgg#9068)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>

* Fix worktree removal timing out on large install trees (pingdotgg#3902)

* fix(web): settle the resting composer layout with a pixel of slack (pingdotgg#9482)

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

* fix(web): keep automatic project icons consistent (pingdotgg#9535)

* fix(server): include SQLite conditions in persistence errors

Include SQLite conditions and schema issue tags without copying query data.

Continue @Sy-D's [pingdotgg#4837](pingdotgg#4837). Add the missing Bun error codes and test the real SQL client.

Created with GPT-6 Astra (preview) in Codex.

Co-authored-by: Sy-D <8460326+Sy-D@users.noreply.github.com>
Co-authored-by: Claude Opus 5 <noreply@anthropic.com>

* fix(dev): keep shared dev reloads and hot updates working (pingdotgg#9543)

* feat(providers): add context compaction command (pingdotgg#9293)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(mobile): keep store screenshots free of system banners and show dictation (pingdotgg#9548)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>

* fix(web): restore composer controls as space becomes available (pingdotgg#9539)

* fix(web): measure collapsed model labels at their visible width (pingdotgg#9540)

* fix(web): close composer menus when their controls hide (pingdotgg#9541)

* fix(web): thread error banner no longer shifts the chat (pingdotgg#9473)

* fix(server): reveal normalized paths in File Explorer (pingdotgg#9551)

* feat(marketing): fresh screenshot and floating marks on the homepage (pingdotgg#9547)

Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>

* feat(usage): redeem Codex reset credits from the Limits tab (pingdotgg#9534)

Follow-up to pingdotgg#9507, carrying over the reset-credit redemption from pingdotgg#9421.

Codex grants a reset credit when it has rate-limited an account unfairly (`"Thanks for using Codex! You've been granted one free rate limit reset."`). Redeeming one clears the current 5h/weekly windows. The Limits tab now shows how many are banked and when the next expires, with a confirmed **Use a reset credit** action.

## How it works

- `ServerProviderUsageLimits.resetCredits` carries the count and soonest expiry; the Codex probe reads it from the same `account/rateLimits/read` it already makes.
- `ProviderInstance.consumeResetCredit` is a new optional hook — account-level, so it sits beside `refreshModels` rather than on the thread-routed adapter. The Codex driver implements it over a short-lived app-server (via `withCodexAppServerClient`, factored out of the status and skills probes which duplicated the setup), then re-probes.
- Single-flight per instance with one idempotency key kept until Codex reports an outcome, so a retry after a timeout does not open a second attempt.
- New `provider.consumeResetCredit` RPC under the operate scope; the outcome (`reset` / `nothingToReset` / `noCredit` / `alreadyRedeemed`) is shown inline.

Only Codex reports credits today. A provider without the hook gets a clear "does not bank reset credits" error; one without credits shows nothing.

## Screenshots

The local Codex row with one banked credit (the same account via the CLIProxyAPI hub above it shows no credit, as expected — the hub does not relay them):

![Limits tab with the Codex row showing "1 reset credit banked · next expires in 16d 22h" and a "Use a reset credit" button](https://gh-file-drop-api-prod-mi5fy3sowv63ufte.pinglabs.workers.dev/f/2897db5e357f12b3/credits-tab.png)

Close-up of the row:

![Codex row: Weekly 25% used bar, then "1 reset credit banked · next expires in 16d 22h" with the "Use a reset credit" button](https://gh-file-drop-api-prod-mi5fy3sowv63ufte.pinglabs.workers.dev/f/0e80f9114cab8f36/credits-row.png)

Clicking it opens the confirmation; nothing is sent until **Use credit**:

![Confirm dialog: "Use a reset credit? This redeems one credit on your account and clears the current rate-limit windows. It cannot be undone." with Cancel and Use credit](https://gh-file-drop-api-prod-mi5fy3sowv63ufte.pinglabs.workers.dev/f/dc728580889ef1fe/credits-confirm.png)

## Verification

- Mapper tests for the credit summary; provider, contract, and Usage page suites pass; typecheck clean.
- Verified against a real Codex Pro account holding one credit: summary and expiry render, the confirm dialog opens. **Not redeemed** — that would spend the credit.

Written by Claude Fable 5 via Claude Code; design and single-flight approach from @StiensWout's pingdotgg#9421.

<!-- CURSOR_SUMMARY -->
---

> [!NOTE]
> **Medium Risk**
> Redemption spends real account credits over a new RPC; correctness depends on per-account locking and idempotency, though disabled instances and non-Codex providers are rejected explicitly.
> 
> **Overview**
> Adds **end-to-end redemption of banked Codex rate-limit reset credits** from the Limits UI on web and mobile, backed by a new operate-scoped `provider.consumeResetCredit` RPC.
> 
> **Contracts and server:** `ServerProviderUsageLimits` can include `resetCredits` (count + next expiry). Codex probes attach that from `account/rateLimits/read`. Optional `ProviderInstance.consumeResetCredit` is implemented for Codex via a scoped app-server call to `account/rateLimitResetCredit/consume`, then a limits refresh. `CodexResetCreditCoordinator` serializes redemptions per Codex account directory, reuses one idempotency key until Codex returns an outcome, and times out hung requests. `withCodexAppServerClient` is extracted so status, skills, and redemption share the same short-lived app-server setup.
> 
> **Clients:** Limits rows show banked credits and a confirmed **Use a reset credit** action that calls `serverEnvironment.consumeResetCredit` and surfaces outcomes (`reset`, `nothingToReset`, etc.) or errors.
> 
> **Web usage sources (same PR):** Adding/removing CLIProxyAPI hubs and the add dialog target a **selected connected environment** (with picker when several are connected), gated by operate access—not only the primary environment.
> 
> <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 98f32e6. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup>
<!-- /CURSOR_SUMMARY -->


Co-authored-by: Wout Stiens <71498452+StiensWout@users.noreply.github.com>
Co-authored-by: Claude Code <noreply@anthropic.com>

* fix(server): find newly opened pull requests after agent turns (pingdotgg#9125)

Refresh missing PR associations after agent turns on the thread's current branch. Preserve background policy, known PR caches, and failed-lookup backoff. Serialize status loads and refreshes to prevent stale responses from hiding a PR. Find branches pushed under their own name while still tracking the default branch.

Original work by Theo Browne with Claude Fable 5.1 in Claude Code. Takeover fixes created with GPT-6 Astra (preview) in Codex.

Co-authored-by: Theo Browne <me@t3.gg>
Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>

* ci: add on-demand Windows test workflow (pingdotgg#9538)

Co-authored-by: Claude Code <noreply@anthropic.com>

* fix(web): simplify expanded tool details (pingdotgg#9549)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): keep the last message visible when the resting composer expands (pingdotgg#9553)

Scrolling a long thread to the end with the composer at rest landed flush
against the short composer. The expansion that followed then covered the
last rows, because the timeline reserves only the live overlay height and
does not move for footer growth.

The timeline now keeps the expanded composer's height clear while the
composer rests, so expanding it again changes nothing above the composer.
The composer reports its resting flag from a layout effect and publishes a
fresh overlay height whenever that flag changes, so the reservation is
always computed from a height that belongs to the same layout.

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

* test(web): fix flaky startup and Tailwind tests (pingdotgg#9558)

* fix(web): keep codex restart responses continuous (pingdotgg#9560)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): make settings sidebar sub-section buttons full width (pingdotgg#9562)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>

* fix(web): render settings sidebar immediately (pingdotgg#9563)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* chore: vouch august contributors (pingdotgg#9557)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): stabilize right panel transitions (pingdotgg#9554)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix: better shell syntax handling for labels (pingdotgg#9371)

* fix(web): align the sidebar wordmark by baseline (pingdotgg#9578)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(antigravity): keep subagent batches active after launch (pingdotgg#9579)

* fix(mobile): render workspace images in markdown file previews (pingdotgg#8769)

* fix(usage): deduplicate CLI proxy subscription accounts (pingdotgg#9584)

* fix(web): bound disconnected send toasts (pingdotgg#9592)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(desktop): restore panel titlebar interactions (pingdotgg#9591)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(connect): refresh authorization without disconnecting (pingdotgg#9582)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): show context meter in compact composer (pingdotgg#9430)

* fix(pull-requests): refresh data after thread turns (pingdotgg#9496)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web): render draft PRs in gray (pingdotgg#9537)

* refactor(web): move usage provider controls to settings (pingdotgg#9599)

* fix: show idle subagent batches without completion marks (pingdotgg#9616)

* fix(web): group image views like other tool calls (pingdotgg#9597)

Co-authored-by: Claude Code <noreply@anthropic.com>

* fix: preserve tool icons on failed calls (pingdotgg#9606)

* fix(connect): diagnose incomplete headless server setup (pingdotgg#9602)

* fix(web): keep command palette above composer menus (pingdotgg#9613)

* fix(web): snooze menu no longer overlaps thread details (pingdotgg#9601)

* fix(web): match composer pull request state icons (pingdotgg#9375)

* fix(server): load OpenCode workspace skills via SDK to avoid 64KB CLI pipe truncation (pingdotgg#9585)

* fix(web): mute sidebar branch name to match worktree icon (pingdotgg#9622)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* fix(web,mobile): fold context compaction under settled turn folds (pingdotgg#9623)

Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>

* feat(mobile): make chat text selectable on Android (pingdotgg#8779)

Co-authored-by: shivam <91240327+shivamhwp@users.noreply.github.com>

* fix(web): toggle a single stashed prompt with Cmd+S (pingdotgg#9644)

Cmd+S opened the stash menu even when the composer was empty and only one prompt was stashed. It now restores that prompt directly, so repeated presses toggle between the draft and stash.

Multiple entries and images that are still saving open the menu. The stash badge still opens the menu.

Validation: 94 focused stash, shortcut, and attachment tests pass. Web typecheck and formatting pass. Targeted lint has no new warnings or errors. Browser checks were skipped at Theo's request.

Original implementation by Theo Browne. No code changes were needed during the takeover audit.

Audited with GPT-6 Astra (preview) in Codex.

* fix(server): prevent duplicate desktop clients after restart

Replace stale local desktop sessions in one transaction. Preserve paired clients and browser sessions, and keep the previous credential valid if replacement fails.

Closes pingdotgg#6283.

Original implementation by seeb1337. Reviewed and verified with GPT-6 Astra (preview) in Codex.

Co-authored-by: seeb1337 <63622047+seeb1337@users.noreply.github.com>
Co-authored-by: Theo Browne <me@t3.gg>

* fix(web): resume Antigravity threads without repeated sign-in (pingdotgg#9647)

Allow Antigravity threads to resume while saved Google sign-in is unchecked after a server restart. Keep confirmed authentication failures and installation errors visible.

Validated with 136 focused tests, web typecheck, targeted lint, and CI. Browser verification was omitted at the maintainer's request.

Created with GPT-6 Astra (preview) in Codex.

* feat(mobile): paste the phone clipboard into the terminal (pingdotgg#9199)

Co-authored-by: Jake Leventhal <jakeleventhal@me.com>
Co-authored-by: shivam <91240327+shivamhwp@users.noreply.github.com>

* feat(web): show which sidebar threads hold an unsent draft (pingdotgg#9658)

Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>

* fix(server): unblock OpenCode approvals and stop (pingdotgg#9653)

OpenCode could show an Approval badge with no controls, appear stuck on TodoWrite, and keep showing a running turn after Stop.

- Show every permission, including old saved requests. Keep failed replies retryable and close completed requests even when reply events are lost.
- Keep OpenCode output pipes drained and automatic replies out of the event loop. Handle disconnects, reconnects, and confirmed stops without stale requests or running states.
- Show native task progress and command results. Do not treat TodoWrite or approval history as file edits or executed commands.
- Ignore late aborts and task updates after a turn finishes.

Fixes pingdotgg#4795
Fixes pingdotgg#7113
Fixes pingdotgg#5760

Created with GPT-6 Astra (preview) in Codex. Reviewed and merged with Claude Fable 5.1 in Claude Code.

* fix(desktop): quit immediately on a second shortcut press (pingdotgg#9657)

* fix(server): update Claude Agent SDK to 0.3.260 (pingdotgg#9135)

Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>

* perf(server): stop loading message bodies for thread summaries (pingdotgg#9662)

* perf(web): speed up terminal snapshots (pingdotgg#9663)

* Complete upstream sync adaptations and validate Claude authentication

* Fix reviewed Coder sync regressions and add focused coverage

* Include orchestration regression suites in Coder tests

---------

Co-authored-by: Exotic <118054752+extoci@users.noreply.github.com>
Co-authored-by: Yukun Shan <92423096+nateEc@users.noreply.github.com>
Co-authored-by: oliver <97427849+flamboh@users.noreply.github.com>
Co-authored-by: Simone <lucenz@proton.me>
Co-authored-by: Rakshith Bhat <88523594+RakshithBhat03@users.noreply.github.com>
Co-authored-by: maria <maria@kuuro.net>
Co-authored-by: maria-rcks <254055478+maria-rcks@users.noreply.github.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>
Co-authored-by: Zortos <zortosdev@proton.me>
Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Utkarsh Patil <73941998+UtkarshUsername@users.noreply.github.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Co-authored-by: Igor Makowski <56691628+Mnigos@users.noreply.github.com>
Co-authored-by: shivam <91240327+shivamhwp@users.noreply.github.com>
Co-authored-by: Simone <185146821+Lucenx9@users.noreply.github.com>
Co-authored-by: Invictine <72551038+Invictine@users.noreply.github.com>
Co-authored-by: WellyngtonF <59291417+WellyngtonF@users.noreply.github.com>
Co-authored-by: Theo Browne <me@t3.gg>
Co-authored-by: macroscopeapp[bot] <170038800+macroscopeapp[bot]@users.noreply.github.com>
Co-authored-by: Aditya Mer <101453576+Aditya190803@users.noreply.github.com>
Co-authored-by: Wout Stiens <71498452+StiensWout@users.noreply.github.com>
Co-authored-by: Derek Trimm <275381468+derektrimm@users.noreply.github.com>
Co-authored-by: Seth Webster <sethwebster@gmail.com>
Co-authored-by: Jake Leventhal <jakeleventhal@me.com>
Co-authored-by: Matheus Timbó Pereira <matheusfild4@hotmail.com>
Co-authored-by: Sy-D <8460326+Sy-D@users.noreply.github.com>
Co-authored-by: Yash Singh <saiansh2525@gmail.com>
Co-authored-by: Dara Adedeji <76637177+SunkenInTime@users.noreply.github.com>
Co-authored-by: Guilherme Vieira <46866023+GuilhermeVieiraDev@users.noreply.github.com>
Co-authored-by: Guillermo Casanova <75276669+Gigioxx@users.noreply.github.com>
Co-authored-by: Barry <43803274+BarryHenryJr@users.noreply.github.com>
Co-authored-by: seeb1337 <63622047+seeb1337@users.noreply.github.com>
Co-authored-by: Lars Nieuwenhuis <35393046+lnieuwenhuis@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:L 100-499 changed lines (additions + deletions). vouch:trusted PR author is trusted by repo permissions or the VOUCHED list.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant