원클릭으로
aohp-file
Locate recent files, show paths in the AOHP File Bridge UI, and open Android sharing via the aohp CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Locate recent files, show paths in the AOHP File Bridge UI, and open Android sharing 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.
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-file |
| description | Locate recent files, show paths in the AOHP File Bridge UI, and open Android sharing via the aohp CLI. |
| metadata | {"openclaw":{"emoji":"📁","requires":{"bins":["aohp"]},"os":["linux"]}} |
Use this skill when a GUI action may have saved, downloaded, exported, or generated a file on the Android device.
aohp act ... -F.files.detected.files.detected is true, use files.best.devicePath as the path for follow-up commands.aohp file show-in-folder --path <devicePath> --display <displayId> to open the containing folder and highlight the path on a chosen screen.aohp file share --path <devicePath> --display <displayId> to open Android sharing, then continue with aohp act ... UI operations.# Tap a node and ask AOHP to report any newly saved file path.
aohp act tap-node -d 2 -i 17 -F
# Long press at a node (context menus, etc.) with file-path reporting.
aohp act long-tap-node -d 2 -i 17 -F
# Tune the scan scope when needed.
aohp act tap-node -d 2 -i 17 -F \
--file-path-roots downloads,pictures,dcim,documents,screenshots \
--file-path-mime image/* \
--file-path-window 30s \
--file-path-settle 1200ms \
--file-path-retry-delay 1000ms
# Find recent images independently.
aohp file recent --mime image/* --roots downloads,pictures,dcim --since 30s
# Open the containing folder and highlight the file.
aohp file show-in-folder --path /sdcard/Download/AOHP/example.png --display 2
# Open Android sharing UI.
aohp file share --path /sdcard/Download/AOHP/example.png --display 2
When -F / filePathReport is enabled, act.* results include files:
{
"files": {
"detected": true,
"best": {
"devicePath": "/sdcard/Download/example.png",
"contentUri": "content://media/external/images/media/123",
"mimeType": "image/png"
},
"candidates": []
}
}
If nothing is detected, check files.reason, commonly no_change_in_window, partial_timeout, or file_bridge_unavailable.