docs: vollständige Befehlsdokumentation in SKILL.md und README

This commit is contained in:
Helios Agent 2026-03-04 14:07:51 +01:00
parent fc9a7e2ec2
commit 7c0341a5f3
No known key found for this signature in database
GPG key ID: C8259547CD8309B5
3 changed files with 21 additions and 2 deletions

View file

@ -155,8 +155,16 @@ python remote.py clipboard-get <session> # get clipboard text
python remote.py clipboard-set <session> <text> # set clipboard text
python remote.py upload <session> <local> <remote> # upload file
python remote.py download <session> <remote> <local> # download file
python remote.py screenshot-window <session> <window_id_or_title> # screenshot a specific window
python remote.py screenshot-window <session> <title> --output /tmp/out.png # custom output path
python remote.py wait-for-window <session> <title> # poll until window appears
python remote.py wait-for-window <session> <title> --timeout 60 # custom timeout (default: 30s)
python remote.py label <session> <new_name> # assign a human-readable name to session
python remote.py status <session> # compare relay / remote.py / client commit
python remote.py logs <session> # fetch last 100 lines of client log
python remote.py logs <session> --lines 200 # custom line count
python remote.py version <session> # client version
python remote.py server-version # server version
python remote.py server-version # server version (no auth required)
```
## Client (Phase 2)