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. 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
Tell us your operating system and your Cursor version (e.g., Windows, 0.x.x).
Windows 11. IDE: IntellijIdea 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.
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.