Usage of cursor cli agent webstream on agent start

:lady_beetle: Provide a clear description of the bug:

When staring new agent session from command line agent start to write web stream. No way to stop it or understand what si going on. Size of stream could be different.
:counterclockwise_arrows_button: Explain how to reproduce the bug (if known)

Not sure if its related but i tried to copy/paste image from buffer int command line but die to not clear behaviour ended up useing cursor IDE

:laptop: Tell us your operating system and your Cursor version (e.g., Windows, 0.x.x).

Windows 11. IDE: IntellijIdea
:prohibited: Tell us if the issue stops you from using Cursor.

No but it’s makes me worrined about tokens usage and overall unwanted behaviour. Hat exactly cursor uploads?

Hey, thanks for the report. What you’re seeing is the raw clipboard contents, meaning the image bytes shown as text, getting pasted into the terminal input. On Windows, the CLI doesn’t have a handler for clipboard image paste yet, so when you press Ctrl+V with an image in the clipboard, its binary content gets dumped into the input. On macOS and Linux this already works correctly. Windows is next, but I can’t share an ETA yet.

About what gets sent out:

  • Cursor doesn’t upload anything in the background. The server only gets what you explicitly send as a prompt by pressing Enter.
  • If you didn’t send the message, no tokens were used and nothing was sent anywhere. You can just clear the input with Ctrl+C or restart the session.
  • If you did send it, then the model received the same garbage text you see in the input, but it’s still just text, not a separate data channel.

Workarounds for now:

  • Save the image as a file and pass the path in the prompt, for example analyze ./screenshot.png
  • Or use image paste in Cursor IDE itself or Cursor Agent in the browser. Pasting an image with Ctrl+V works there.

Related threads for context:

If you see “web stream” even without pasting an image, meaning it appears right after running cursor agent with no clipboard actions, let me know your CLI version from cursor --version and the repro steps, and we’ll look into that separately.