docs: add Cursor Cloud dev environment instructions to AGENTS.md - #331
Draft
manit0700 wants to merge 1 commit into
Draft
docs: add Cursor Cloud dev environment instructions to AGENTS.md#331manit0700 wants to merge 1 commit into
manit0700 wants to merge 1 commit into
Conversation
…S.md Co-authored-by: Manit Dankhara <manit0700@users.noreply.github.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.
Summary
Sets up the EvolveAgent AI development environment (backend + frontend) for Cursor Cloud agents and documents non-obvious startup/testing caveats discovered during setup. The only code/repo change is an appended
## Cursor Cloud specific instructionssection inAGENTS.md; the dependency install/refresh is handled by the VM startup update script (not committed here).What was set up
pip install -r backend/requirements.txtnpm installinfrontend/python3.12-venvsystem package (needed once to create the backend venv)Verification
cd backend && ./venv/bin/pytest -qcd frontend && npm run testcd frontend && npm run build./venv/bin/uvicorn app.main:app --reload --port 8000/healthok;POST /api/runreturns multi-agent responsenpm run dev -- --host 127.0.0.1 --port 5173Hello-world task: sent a chat message in Simple Mode Chat and received a multi-agent orchestrated response (mock mode), no errors.
evolveagent_chat_hello_world.mp4
Chat response in EvolveAgent AI
Key notes (also in AGENTS.md)
.envor API keys required for dev..env.exampletobackend/.envbefore running tests — it setsREDIS_URL/DATABASE_URLand breakstest_default_backend_is_json_and_status(CI runs with these unset).backend/app/data/; running the app/suite writes runtime JSON there. Clear withgit clean -fdx backend/app/data/for a pristine baseline. Fresh checkouts/CI are unaffected.To show artifacts inline, enable in settings.