Set up Cursor Cloud dev environment - #12
Closed
rdasilveiracabral wants to merge 2 commits into
Closed
Conversation
Co-authored-by: Ricardo Silveira Cabral <rdasilveiracabral@users.noreply.github.com>
…ronment-44e0 # Conflicts: # AGENTS.md Co-authored-by: Ricardo Silveira Cabral <rdasilveiracabral@users.noreply.github.com>
Collaborator
Author
|
Closing as stale. |
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
Sets up the development environment for the NOOA (NVIDIA OO Agents) framework in Cursor Cloud and documents non-obvious caveats for future agents.
Changes
## Cursor Cloud specific instructionssection toAGENTS.mdcovering:uvinstall location, the need to sync all extras (not just the dev group) so MCP tests can collect, the default test invocation, the LLM API key requirement for generation methods/examples, and how to run the trace viewer.Environment setup (not code)
python3 -m pip install --user --quiet --upgrade uvthenpython3 -m uv sync --all-extras --no-extra sandbox --group dev.Verification
uv run ruff check .→ all checks passed;uv run ruff format --check .→ 871 files already formatted.uv run pytest -m "not integration and not stress"→ 6528 passed, 4 skipped.uv run nooa start-dev→ trace viewer live on http://localhost:5001.uv run python examples/quickstart/01_first_generation_method.py→ real Nemotron NIM output;examples/quickstart/06_tracing.py→MathAgentran LLM methodscalculate()/explain()and the 15-event trace (incl.nvidia_nim/nemotronLLM spans) rendered in the viewer.uv run pytest -m integration tests/unifiedllm/test_responses_client.py -k "simple_completion or structured_output"→ 4 passed.nooa_llm_generation_trace_demo.mp4
LLM-backed span tree (run/calculate/explain with nemotron LLM spans)
Expanded LLM span showing prompt and generated tool call
Note: a bare
uv runon a fresh VM creates.venvwith default deps only (nomcpextra); re-runuv sync --all-extras --no-extra sandbox --group dev(the startup update script does this) to restore the full test env.To show artifacts inline, enable in settings.