fix: Cursor Docker install and playground Next 16 / PORT - #199
Open
ml-picogrid wants to merge 3 commits into
Open
fix: Cursor Docker install and playground Next 16 / PORT#199ml-picogrid wants to merge 3 commits into
ml-picogrid wants to merge 3 commits into
Conversation
node:*-slim has no curl, so Cursor's official installer failed after a silent apt step. Install curl with git and fail the sandbox if apt does. Co-authored-by: Cursor <cursoragent@cursor.com>
The CLI ignored PORT and always forwarded --port 3000. Next 16.2.4+ crashes on published playground builds that omit onMatchHeaders; repair the manifest, prefer the monorepo playground bin, and fall back to next dev when there is no production BUILD_ID. Co-authored-by: Cursor <cursoragent@cursor.com>
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
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 free
to 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.
Summary
node:*-slimhas nocurl, so the official installer failed withcurl: command not found. After a successful install,spawnSync agentstill missed~/.local/binbecause sandbox exec used a root-oriented PATH andHOME=/root. Setup now installscurl(and fails if apt does), setsHOMEto thenodeuser home, and puts~/.local/binon PATH. The Cursor runner resolves the installer symlink directly.--port/-p/PORT(was hardcoded to 3000). Next 16.2.4+ crashes on published playground builds that omitroutes-manifest.json#onMatchHeaders(Cannot read properties of undefined (reading 'map')). The playground writes an empty array beforenext start, prefers the monorepo /file:playground bin, and falls back tonext devwhen there is no productionBUILD_ID.Context
Running Cursor evals in Docker (
sandbox: 'docker') andPORT=3001 npx @vercel/agent-eval playgroundboth failed from afile:consumer. These are the harness-side fixes so Docker Cursor installs and the playground start path work on Next 16.3.Testing
BUILD_IDresolution, CLI--helpfor-p/PORT.~/.local/binbinary andcurl --version.PORT=3011 npx @vercel/agent-eval playgroundagainstpicogrid-ui-evals— banner printed 3011, Next 16.3.4 started innext dev, and home / experiments / compare / evals / a failed Cursor run all loaded.Issues
None.
Made with Cursor