원클릭으로
aohp-sys
Clipboard, notifications, outbound SMS, device status, and wake or unlock helpers via the aohp CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Clipboard, notifications, outbound SMS, device status, and wake or unlock helpers via the aohp CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
List installed packages and start, stop, or inspect apps on a logical display via the aohp CLI.
List, create, destroy, and focus AOHP virtual displays via the aohp CLI (no MediaProjection).
Register, drain, and stop AOHP Toast/notification event streams via the aohp CLI.
Locate recent files, show paths in the AOHP File Bridge UI, and open Android sharing via the aohp CLI.
Screenshots and UI hierarchy (windows/nodes) on a logical display via the aohp CLI.
Create, run commands in, reset, or manage services inside AOHP Linux chroot sandboxes via the aohp CLI.
| name | aohp-sys |
| description | Clipboard, notifications, outbound SMS, device status, and wake or unlock helpers via the aohp CLI. |
| metadata | {"openclaw":{"emoji":"⚙️","requires":{"bins":["aohp"]},"os":["linux"]}} |
Read or change lightweight system state through aohp sys <subcommand>, or send outbound SMS with aohp sms send. Prefer these commands for normal tasks.
| Goal | CLI |
|---|---|
| Clipboard get/set | aohp sys clipboard [-o get|set] [-s <text>] — set requires -s / --text |
| Expand or collapse notifications | aohp sys notifications [-o expand|collapse] (default expand) |
| Send SMS by contact name | aohp sms send -t Taylor -m "Hello" |
| Send SMS by phone number | aohp sms send -t 15551234567 -m "Hello" |
| Device info one-liner | aohp sys device-info |
| Battery summary | aohp sys battery |
| Network snippet | aohp sys network |
| Display snippet | aohp sys screen-info |
| Wake / sleep / unlock screen | aohp sys wake, sleep, unlock |
aohp sys clipboard -o get
aohp sys clipboard -o set -s "pasted text"
aohp sys notifications -o collapse
aohp sys battery
aohp sys wake
aohp sms send -t Taylor -m "Hello!"
aohp call sys.clipboard '{"op":"get"}'
aohp call sys.clipboard '{"op":"set","text":"hello"}'
aohp call sys.notifications '{"op":"expand"}'
aohp call sms.send '{"contactName":"Taylor","body":"Hello"}'
aohp call sms.send '{"address":"15551234567","body":"Hello"}'
device-info, network, screen-info return plain text snippets from the device; exact wording can vary by build.aohp sms send: contactName / -t with a name resolves against Contacts (exact match first, then partial). Phone numbers need at least 7 digits.aohp sms send.