From d2f77f80543162eba64f5cd7bcc926e71f71b682 Mon Sep 17 00:00:00 2001 From: Helios Agent Date: Fri, 6 Mar 2026 03:09:23 +0100 Subject: [PATCH] fix: rename binary from helios to remote --- README.md | 42 +++++++++++++++++++++--------------------- SKILL.md | 2 +- crates/cli/Cargo.toml | 2 +- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index d7e7371..b7097bd 100644 --- a/README.md +++ b/README.md @@ -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 screen # full-screen screenshot → /tmp/helios-remote-screenshot.png -helios screenshot # screenshot a specific window -helios exec # run shell command (PowerShell) -helios exec --timeout 600 # with custom timeout (seconds) -helios windows # list visible windows -helios focus # focus a window -helios maximize # maximize and focus a window -helios minimize-all # minimize all windows -helios prompt "Please click Save" # show MessageBox, blocks until user confirms -helios prompt "message" --title "Title" # with custom dialog title -helios run [args...] # launch program (fire-and-forget) -helios clipboard-get # get clipboard text -helios clipboard-set # set clipboard text -helios upload # upload file to device -helios download # download file from device -helios version # compare relay/helios/client commits -helios logs # fetch last 100 lines of client log -helios logs --lines 200 # custom line count +remote devices # list connected devices +remote screenshot screen # full-screen screenshot → /tmp/helios-remote-screenshot.png +remote screenshot # screenshot a specific window +remote exec # run shell command (PowerShell) +remote exec --timeout 600 # with custom timeout (seconds) +remote windows # list visible windows +remote focus # focus a window +remote maximize # maximize and focus a window +remote minimize-all # minimize all windows +remote prompt "Please click Save" # show MessageBox, blocks until user confirms +remote prompt "message" --title "Title" # with custom dialog title +remote run [args...] # launch program (fire-and-forget) +remote clipboard-get # get clipboard text +remote clipboard-set # set clipboard text +remote upload # upload file to device +remote download # download file from device +remote version # compare relay/helios/client commits +remote logs # fetch last 100 lines of client log +remote logs --lines 200 # custom line count ``` --- diff --git a/SKILL.md b/SKILL.md index 2e79910..ddef201 100644 --- a/SKILL.md +++ b/SKILL.md @@ -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 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 # Client log (last 100 lines, --lines for more) diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 1315694..c326d5d 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [[bin]] -name = "helios" +name = "remote" path = "src/main.rs" [dependencies]