fix: rename binary from helios to remote

This commit is contained in:
Helios Agent 2026-03-06 03:09:23 +01:00
parent 98b6fabef6
commit d2f77f8054
No known key found for this signature in database
GPG key ID: C8259547CD8309B5
3 changed files with 23 additions and 23 deletions

View file

@ -31,7 +31,7 @@ irm https://raw.githubusercontent.com/agent-helios/helios-remote/master/scripts/
```
AI Agent
helios CLI
remote CLI
helios-server ──WebSocket── helios-client (Windows)
```
@ -43,28 +43,28 @@ Device labels are the sole identifier. Only one client instance can run per devi
---
## helios CLI
## remote CLI
```bash
helios devices # list connected devices
helios screenshot <device> screen # full-screen screenshot → /tmp/helios-remote-screenshot.png
helios screenshot <device> <window_label> # screenshot a specific window
helios exec <device> <command...> # run shell command (PowerShell)
helios exec <device> --timeout 600 <command...> # with custom timeout (seconds)
helios windows <device> # list visible windows
helios focus <device> <window_label> # focus a window
helios maximize <device> <window_label> # maximize and focus a window
helios minimize-all <device> # minimize all windows
helios prompt <device> "Please click Save" # show MessageBox, blocks until user confirms
helios prompt <device> "message" --title "Title" # with custom dialog title
helios run <device> <program> [args...] # launch program (fire-and-forget)
helios clipboard-get <device> # get clipboard text
helios clipboard-set <device> <text> # set clipboard text
helios upload <device> <local> <remote> # upload file to device
helios download <device> <remote> <local> # download file from device
helios version <device> # compare relay/helios/client commits
helios logs <device> # fetch last 100 lines of client log
helios logs <device> --lines 200 # custom line count
remote devices # list connected devices
remote screenshot <device> screen # full-screen screenshot → /tmp/helios-remote-screenshot.png
remote screenshot <device> <window_label> # screenshot a specific window
remote exec <device> <command...> # run shell command (PowerShell)
remote exec <device> --timeout 600 <command...> # with custom timeout (seconds)
remote windows <device> # list visible windows
remote focus <device> <window_label> # focus a window
remote maximize <device> <window_label> # maximize and focus a window
remote minimize-all <device> # minimize all windows
remote prompt <device> "Please click Save" # show MessageBox, blocks until user confirms
remote prompt <device> "message" --title "Title" # with custom dialog title
remote run <device> <program> [args...] # launch program (fire-and-forget)
remote clipboard-get <device> # get clipboard text
remote clipboard-set <device> <text> # set clipboard text
remote upload <device> <local> <remote> # upload file to device
remote download <device> <remote> <local> # download file from device
remote version <device> # compare relay/helios/client commits
remote logs <device> # fetch last 100 lines of client log
remote logs <device> --lines 200 # custom line count
```
---