Bug report details
Where does the bug appear?
Editor, Tab & Chat — Agents window / Open Folder.
Describe the bug
Clicking Open Folder in the Agents window did nothing. The native macOS folder picker never appeared.
Steps to reproduce
- Launch the affected installation from
/Applications/Cursor.app. - Open the Agents window.
- Click Open Folder or press
Cmd+O. - Observe that no native macOS folder picker appears.
Expected behavior
The native macOS folder picker should open immediately and allow a local project folder to be selected.
Screenshots / screen recordings
Not attached. The visible symptom is that no dialog appears after the action.
Operating system
macOS 26.3.2, Apple Silicon.
Version information
Cursor 3.12.17, official signed and notarized build.
AI model / Request ID
Not applicable — this is not an AI or model-request issue.
Does this stop you from using Cursor?
Sometimes — Cursor launches, but the affected Agents window cannot open a local folder until the workaround is applied.
I ran into a reproducible issue in Cursor 3.12.17 on macOS 26.3.2 (Apple Silicon): clicking Open Folder in the Agents window did nothing, and the native macOS folder picker never appeared.
What I verified
- The official app bundle passed both
codesign --verify --deep --strictandspctl --assess. - The affected process launched from
/Applications/Cursor.appwith an unexpected--inspect=127.0.0.1:<port>argument. - LaunchServices/RunningBoard reported a debugger-related launch state.
- Unified logs showed:
SecTaskLoadEntitlements failed error=85Bad executable (or shared library)
- Reinstalling the official build to the same
/Applications/Cursor.apppath did not help. - The identical signed and notarized app launched from a different path had no
--inspectargument and no entitlement errors.
Workaround that fixed it
- Quit Cursor completely.
- Keep the existing Cursor user data and configuration.
- Move the old
/Applications/Cursor.appaside as a backup. - Install the clean official build at
~/Applications/Cursor.app. - Register the new path with LaunchServices:
/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -f "$HOME/Applications/Cursor.app"
- Launch that exact app path.
- Verify that the process no longer has
--inspectand that the entitlement errors are gone.
After this, Cmd+O immediately opened the native macOS Open Folder dialog, and I successfully opened a real project.
Important caveat
I could not prove what originally created the abnormal path/session launch state. A desktop automation helper was present during part of the investigation, but static and dynamic checks did not show that it directly injected --inspect; stopping it also did not fix the old /Applications path.
The verified conclusion is narrower: in my case, the failure was bound to the old app path/current LaunchServices state, and moving the same official app to a new standard user application path created a clean launch identity.
This workaround avoids disabling Gatekeeper, removing quarantine attributes, re-signing the app, or deleting Cursor user data.