docs: add Cursor Cloud specific instructions for env setup - #906
Draft
code-yeongyu wants to merge 1 commit into
Draft
docs: add Cursor Cloud specific instructions for env setup#906code-yeongyu wants to merge 1 commit into
code-yeongyu wants to merge 1 commit into
Conversation
Co-authored-by: YeonGyu-Kim <public.kim.yeon.gyu@gmail.com>
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.
What
Sets up the Cloud Agent development environment for the
senpimonorepo and records the durable, non-obvious caveats for future cloud agents under a new## Cursor Cloud specific instructionssection inAGENTS.md.This PR contains a single docs change (
AGENTS.md). No runtime source is touched, so the changelog gate passes. The remaining setup lives in the VM update script (Node 24 provisioning +npm install --ignore-scripts+node scripts/devenv-setup.mjs), not in the repo.Environment findings
node(/exec-daemon/node) is v22, butpackage.json#enginesrequires>=24. Node 24 is installed vianvmand symlinked into/usr/local/cargo/bin(first, writablePATHentry) so barenode/npm/npxresolve to v24 for every shell./exec-daemonis read-only sandbox infra and is never modified.Verification
node scripts/devenv-setup.mjsnpm run checknpm testmock-loop.mjs --with-tool./pi-test.sh(TUI)Demo
Full agent turn (executes a
bashtool end-to-end) then the real interactive TUI booting from source:senpi_agent_turn_and_tui_demo.mp4
To show artifacts inline, enable in settings.
Summary by cubic
Adds a "Cursor Cloud specific instructions" section to
AGENTS.mdto document Cloud Agent environment setup and prevent common pitfalls. Previously the docs lacked cloud-specific guidance; now they cover Node 24 setup, running without provider keys, and tooling behavior.Cursor Cloud caveats
nodeis v22 butpackage.json#enginesrequires >=24. Usenvm-installed Node 24 symlinked in/usr/local/cargo/bin; ifnodeshows v22, rerun the VM update script or recreate symlinks. Do not modify/exec-daemon..agents/skills/senpi-qa/scripts/mock-loop.mjs --with-tool) for full agent turns without credentials; add real keys (e.g.,ANTHROPIC_API_KEY) to.env.localonly if needed../pi-test.sh; no build step required.npm run checkformats files and may leave the tree dirty;npm testruns the full workspace and is slow—scope to a single package during iteration.Written for commit 19f0a1f. Summary will update on new commits.