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 AI Agent
helios CLI remote CLI
helios-server ──WebSocket── helios-client (Windows) 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 ```bash
helios devices # list connected devices remote devices # list connected devices
helios screenshot <device> screen # full-screen screenshot → /tmp/helios-remote-screenshot.png remote screenshot <device> screen # full-screen screenshot → /tmp/helios-remote-screenshot.png
helios screenshot <device> <window_label> # screenshot a specific window remote screenshot <device> <window_label> # screenshot a specific window
helios exec <device> <command...> # run shell command (PowerShell) remote exec <device> <command...> # run shell command (PowerShell)
helios exec <device> --timeout 600 <command...> # with custom timeout (seconds) remote exec <device> --timeout 600 <command...> # with custom timeout (seconds)
helios windows <device> # list visible windows remote windows <device> # list visible windows
helios focus <device> <window_label> # focus a window remote focus <device> <window_label> # focus a window
helios maximize <device> <window_label> # maximize and focus a window remote maximize <device> <window_label> # maximize and focus a window
helios minimize-all <device> # minimize all windows remote minimize-all <device> # minimize all windows
helios prompt <device> "Please click Save" # show MessageBox, blocks until user confirms remote prompt <device> "Please click Save" # show MessageBox, blocks until user confirms
helios prompt <device> "message" --title "Title" # with custom dialog title remote prompt <device> "message" --title "Title" # with custom dialog title
helios run <device> <program> [args...] # launch program (fire-and-forget) remote run <device> <program> [args...] # launch program (fire-and-forget)
helios clipboard-get <device> # get clipboard text remote clipboard-get <device> # get clipboard text
helios clipboard-set <device> <text> # set clipboard text remote clipboard-set <device> <text> # set clipboard text
helios upload <device> <local> <remote> # upload file to device remote upload <device> <local> <remote> # upload file to device
helios download <device> <remote> <local> # download file from device remote download <device> <remote> <local> # download file from device
helios version <device> # compare relay/helios/client commits remote version <device> # compare relay/helios/client commits
helios logs <device> # fetch last 100 lines of client log remote logs <device> # fetch last 100 lines of client log
helios logs <device> --lines 200 # custom line count remote logs <device> --lines 200 # custom line count
``` ```
--- ---

View file

@ -73,7 +73,7 @@ $SKILL_DIR/helios clipboard-set moritz-pc "Text for clipboard"
$SKILL_DIR/helios upload moritz-pc /tmp/local.txt "C:\Users\Moritz\Desktop\remote.txt" $SKILL_DIR/helios upload moritz-pc /tmp/local.txt "C:\Users\Moritz\Desktop\remote.txt"
$SKILL_DIR/helios download moritz-pc "C:\Users\Moritz\file.txt" /tmp/downloaded.txt $SKILL_DIR/helios download moritz-pc "C:\Users\Moritz\file.txt" /tmp/downloaded.txt
# Version: compare relay + helios + client commits (are they in sync?) # Version: compare relay + remote + client commits (are they in sync?)
$SKILL_DIR/helios version moritz-pc $SKILL_DIR/helios version moritz-pc
# Client log (last 100 lines, --lines for more) # Client log (last 100 lines, --lines for more)

View file

@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021" edition = "2021"
[[bin]] [[bin]]
name = "helios" name = "remote"
path = "src/main.rs" path = "src/main.rs"
[dependencies] [dependencies]