Three steps. No config required.
Ctrl+Shift+S → select a region. Take as many as you need.
Clipboard gets curl commands. Paste into your agent.
Agent reads them, screenshots expire. 410 Gone.
$ curl -s -o /tmp/shot-A1B2C3D4.png http://localhost:9853/s/A1B2C3D4.png
$ curl -s -o /tmp/shot-E5F6G7H8.png http://localhost:9853/s/E5F6G7H8.png
$ curl -s -o /tmp/shot-I9J0K1L2.png http://localhost:9853/s/I9J0K1L2.png
$ # Agent reads all 3 screenshots
$ curl -s http://localhost:9853/s/A1B2C3D4.png
Gone (HTTP 410)
$ curl -s http://localhost:9853/s/E5F6G7H8.png
Gone (HTTP 410)
$ curl -s http://localhost:9853/s/I9J0K1L2.png
Gone (HTTP 410)Snap multiple regions. One paste, all screenshots.
| Screenshot | Fetch |
|------------|-------|
| shot-1 | `curl -s -o /tmp/shot-A1B2C3D4.png http://localhost:9853/s/...` |
| shot-2 | `curl -s -o /tmp/shot-E5F6G7H8.png http://localhost:9853/s/...` |
| shot-3 | `curl -s -o /tmp/shot-I9J0K1L2.png http://localhost:9853/s/...` |