Where does the bug appear (feature/product)?
Cursor IDE
Describe the Bug
We have a project built on k8s/linkerd which is developed locally with tilt, and then deployed to aws through their cdk tools.
Many of these already have helper scripts in their package.json, and many libraries we use are in typescript already, so we use the NPM Scripts window to run tasks from there. When this workflow works, it’s perfect, but sometimes there’s an error that brings it down completely.
Sometimes, on startup, no tasks are discovered, no package.json files are shown and instead, this error,
Error: Npm task detection: failed to parse the file /Users/Shared/Developer/workspaces/tilt/lmr/package.json
This is a red-herring and comes from here, where the real error is swallowed,
If you patch the extension locally, you get the “real error”,
cannot open file:///Users/Shared/Developer/workspaces/tilt/lmr/package.json. Detail: Files above 50MB cannot be synchronized with extensions.
which, actually, is also apparently incorrect / another red herring.
I ran through this with one of the agents, and they said it was related to a race-condition bug,
Your package.json is 506 bytes. The 50MB message is misleading.
It comes from Cursor’s MainThreadDocuments.$tryOpenDocument in workbench.desktop.main.js:
npm calls workspace.openTextDocument(package.json)
Main thread loads the file via createModelReference
It immediately checks _modelTrackers.has(uri)
If the tracker isn’t registered yet → throws the 50MB error
Trackers are added in handleModelAdded, which runs on a separate event. Race condition.Your logs confirm this — error at 21:24:44, only ~1 second after Extension Host:user started at 21:24:43. npm scans before extension document sync is ready.
Steps to Reproduce
I’m not completely sure as sometimes it works and sometimes it breaks, with no changes to any file
Expected Behavior
All package.json files are supposed to be processed correctly and their tasks fill the NPM Scripts window
Operating System
MacOS
Version Information
Version: 3.9.16 (Universal)
VS Code Extension API: 1.105.1
Commit: 042b3c1a4c53f2c3808067f519fbfc67b72cad80
Date: 2026-06-27T06:41:01.941Z
Layout: editor
Build Type: Stable
Release Track: Default
Electron: 40.10.3
Chromium: 144.0.7559.236
Node.js: 24.15.0
V8: 14.4.258.32-electron.0
xterm.js: 6.1.0-beta.256
OS: Darwin arm64 25.5.0
For AI issues: which model did you use?
Opus 4.8
Does this stop you from using Cursor
No - Cursor works, but with this issue