Uh oh!
There was an error while loading. Please reload this page.
fix(cursor): honor auto and full access modes - #9283
Merged
maria-rcks merged 2 commits intoSep 2, 2026
Conversation
Contributor
ApprovabilityVerdict: Not approved Macroscope's review found this PR not approvable — The PR changes Cursor's production permission behavior by adding startup flags for Auto and the product-default Full access mode. Because this affects approval and unattended execution semantics on an existing path, human review is warranted despite the focused diff and added tests. You can add or adjust custom eligibility rules. Learn more. |
Uh oh!
There was an error while loading. Please reload this page.
github-actionsBot
added a commit
to omarcresp/t3code-flake
that referenced
this pull request
Sep 3, 2026
## What's Changed * feat(desktop): browser profiles for the preview browser by @juliusmarminge in pingdotgg/t3code#7254 * refactor(shared): move the node:sqlite Effect SQL client into shared by @juliusmarminge in pingdotgg/t3code#7272 * feat(web): add opt-in panel animations by @maria-rcks in pingdotgg/t3code#8830 * feat(projects): automatically pull clean default branches by @maria-rcks in pingdotgg/t3code#9277 * fix(web): show pull request state icons in tabs by @flamboh in pingdotgg/t3code#9112 * feat(providers): add context compaction across harnesses by @maria-rcks in pingdotgg/t3code#8808 * feat(web): add proactive panels by @maria-rcks in pingdotgg/t3code#9276 * fix(web): unify control sizing across settings pages by @juliusmarminge in pingdotgg/t3code#9281 * fix(web): offer browser profiles from the empty-panel launcher by @juliusmarminge in pingdotgg/t3code#9279 * Revert "feat(providers): add context compaction across harnesses" by @maria-rcks in pingdotgg/t3code#9284 * fix(web): show scroll-to-end as soon as the last message slips under the composer by @juliusmarminge in pingdotgg/t3code#9280 * fix(cursor): honor auto and full access modes by @maria-rcks in pingdotgg/t3code#9283 * fix(desktop): detect installed Spectre libs for Windows builds by @juliusmarminge in pingdotgg/t3code#9285 * fix(pull-requests): missing features & better behaviour by @maria-rcks in pingdotgg/t3code#9188 * fix(providers): discover workspace skills everywhere by @maria-rcks in pingdotgg/t3code#9180 * fix(server): preserve automatic settlement timestamps by @eimexdev in pingdotgg/t3code#9254 * fix(opencode): show Reasoning selector for OpenCode models by @maria-rcks in pingdotgg/t3code#9287 * feat(web): preview document attachments in the file viewer by @juliusmarminge in pingdotgg/t3code#9292 * chore(ci): narrow the UI consistency check-run agent by @juliusmarminge in pingdotgg/t3code#9297 **Full Changelog**: pingdotgg/t3code@v0.0.39-nightly.20260902.1261...v0.0.39-nightly.20260903.1262 Upstream release: https://github.com/pingdotgg/t3code/releases/tag/v0.0.39-nightly.20260903.1262
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note
Written by
gpt-5.6-solon behalf of MariaCursor's Full access and Auto runtime modes were launched like restrictive modes, leaving approval behavior dependent on reactive permission replies.
Full access now starts Cursor with
--force, while Auto starts it with native Smart Auto review through--auto-review; supervised modes stay unchanged.Verified with 26 targeted tests, server typecheck and lint, plus a real T3 Code Auto/Auto thread against an authenticated Cursor CLI that ran
git status --shortwithout an approval prompt and spawnedcursor-agent --auto-review acp.Fixes#6533; built by
gpt-5.6-solin the Codex harness.Note
Medium Risk
Changes how Cursor CLI is spawned for permission-sensitive modes; incorrect mapping could over-approve or under-approve tool actions at session start.
Overview
Cursor ACP sessions now map the thread runtime mode to
cursor-agentstartup flags instead of always launching plainacp.Full access adds
--forceso approvals are relaxed at process start (not only via reactive permission replies). Auto adds--auto-review; supervised-style modes keep unchanged args.CursorAdapterforwardsinput.runtimeModeintomakeCursorAcpRuntime/buildCursorAcpSpawnInput, with unit and adapter tests asserting the argv log. User docs note that Auto on Cursor uses Smart Auto review.Reviewed by Cursor Bugbot for commit 84baae0. Bugbot is set up for automated code reviews on this repo. Configure here.
Note
Fix
CursorAdapterto honor auto and full-access permission modescursorAcpPermissionArgsin CursorAcpSupport.ts to map runtime modes to Cursor ACP launch arguments:autoselects Cursor automatic review,full-accessselects forced approval, other modes get no extra argumentCursorAdapter.startSessionthroughmakeCursorAcpRuntimeintobuildCursorAcpSpawnInput, which inserts the selected permission args before the ACP subcommandMacroscope summarized 84baae0.