Hi, I am trying to setup Cursor Cloud agents but when i run them I keep running into an issue - The agent environment does not have my dependencies installed.
This is my snapshot: snapshot-20260111-7176d6d7-ae9f-49a6-a7a7-9613371da9b1
This is my startup script which I assume the agent environment isn’t running.
```
#!/usr/bin/env bash
set -e
echo “
Starting environment setup…”
echo “
Installing dependencies (including dev deps)…”
npm ci --include=dev
echo “
Initialising bd…”
bd init
echo “
Running bd doctor (auto-fix enabled)…”
bd doctor --fix -y
echo “
Syncing bd…”
bd sync
echo “
Startup complete — environment ready”
```
I have tried the following Runtime configs:
Attempt 1:
- Install Script: Null
- Start Script: ./.cursor/startup.sh
Attempt 2:
- Install Script: ./.cursor/startup.sh
- Start Script: Null
Attempt 3:
- Install Script: cd /workspace ./.cursor/startup.sh
- Start Script: cd /workspace ./.cursor/startup.sh
- Default Terminal
- Startup Script
- cd /workspace ./.cursor/startup.sh
This is my package-lock.json showing vitest is present

