Is it possible to queue messages in cursor-agent?
If so I can’t find it
Hey, thanks for the report. In Cursor CLI, the message queue feature isn’t supported. In interactive mode, requests are handled one at a time, so you need to wait for the current request to finish before sending the next one.
For parallel work, use non-interactive mode with the -p flag and run multiple processes:
cursor-agent -p "first task" &
cursor-agent -p "second task" &
More details: Cursor-agent always ends execution abruptly when queuing new message
1 Like
Thanks for the helpful response and workaround Dean
1 Like

