一键导入
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.