sanjeed5
(Sanjeed)
September 11, 2025, 12:47am
2
Thanks for reporting this issue. We’re working on a lot of terminal improvements in upcoming releases, but meanwhile can you see if any of these solutions help:
Hey!
I faced a very similar issue on MacOS 26.0 — the command runs fine in the terminal, but Cursor Agent never proceeds or generates a follow-up. If you’re using a custom shell setup (like oh-my-zsh, a modified .zshrc, or anything that alters shell behavior), that could be interfering.
Quick question:
Are you using oh-my-zsh or any customized .zshrc or .bashrc config?
In my case, the fix was simply adding this line to the top of my .zshrc:
if [[ "$TERM_PROGRAM" == "vscode" ]]…
Guide: Fix Cursor Agent Terminal Hangs Caused by .zshrc
Problem
When using Zsh with custom configs like Oh My Zsh, you might notice:
Cursor Agent terminal hangs indefinitely after running a command
You must click “Move to background” or “Skip” every time
Meanwhile, Cursor’s interactive terminal (Ctrl+ `) works fine
This is caused by your .zshrc loading interactive or slow components (e.g., themes, plugins), which interfere with Cursor Agent’s ability to detect co…