원클릭으로
aohp-app-launch
List installed packages and start, stop, or inspect apps on a logical display via the aohp CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
List installed packages and start, stop, or inspect apps on a logical display via the aohp CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.
Capture still photos with the device camera hardware via the aohp CLI (no Camera app UI required).
| name | aohp-app-launch |
| description | List installed packages and start, stop, or inspect apps on a logical display via the aohp CLI. |
| metadata | {"openclaw":{"emoji":"📲","requires":{"bins":["aohp"]},"os":["linux"]}} |
List packages and start or kill apps on a chosen logical display (displayId). Package name is always -P / --package (the global -p flag means pretty JSON, not package).
aohp app ….| Goal | CLI |
|---|---|
| List all packages | aohp app list (similar idea to pm list packages) |
| List third-party packages only | aohp app list -3 or aohp app list --third-party (similar idea to pm list packages -3) |
| Package details | aohp app info -P <package> |
| Start app launcher activity | aohp app start -P <package> [-d <displayId>] |
| Start with an Android intent | aohp call app.start '{"packageName":"<pkg>","action":"<action>","data":"<uri>","mimeType":"<type>"}' (omit action/data to launch launcher only) |
| Force-stop app | aohp app kill -P <package> [-d <displayId>] |
| Foreground package | aohp app foreground [-d <displayId>] |
| Running snapshot | aohp app running |
Alias: aohp app-list → aohp app list.
aohp app list -3
aohp app start -P com.android.chrome -d 2
aohp app start -P com.android.camera2 -d 0 # opens launcher activity only
# Open content in a specific app via intent (not the same as launcher start)
aohp call app.start '{"packageName":"<pkg>","action":"android.intent.action.VIEW","data":"file:///path/to/file","mimeType":"<mime>"}'
aohp app start -P and app.start without action/data only launch the app's launcher activity (same idea as monkey -p / default launch intent).action, data (or dataUri), and optionally mimeType / type on app.start.If you must bypass the subcommand layer:
aohp call app.start '{"displayId":2,"packageName":"com.android.chrome"}'
Method names look like app.list, app.start, app.info, etc.