Hey @cocode, so that I can understand better, are you referring to the Cursor CLI or the built-in terminal in Cursor? Could you share the exact command you used and any error output?
Additional details that could be helpful:
Which default shell you use (bash, zsh, fish, etc.)?
Does a regular terminal opened outside Cursor work normally?
Any request ID that you can share so that staff could review.
Got it - thanks for the clarity there. Based on what you are describing, something sounds off in the latest version agent terminal settings - sandbox mode, network‑access configuration, or another change between versions.
To help diagnose, please share:
What you asked the Agent to do (your query)
The command the Agent attempted to run in the terminal
This will narrow whether it’s a configuration issue or a bug in the new version.
On a similar note, I ran into a problem with v2.0.43 when I asked the agent to start a Astro web app’s dev environment. Astro tried to bind to the IPv6 loopback address ::1 on port 4321. My environment denied that listen (EPERM). Asking agent to get around this by binding explicitly to IPv4 (127.0.0.1) and a different port avoided the restriction, and agent could run that normally: yarn dev --host 127.0.0.1 --port 4322