ワンクリックで
device-file-search
Locate and verify files on Android storage before upload/share, especially latest edited photos or videos.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Locate and verify files on Android storage before upload/share, especially latest edited photos or videos.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use OpenPocket MCP tools to inspect or control an Android emulator, physical Android phone, Android TV, or ADB-backed app. Trigger for phone use, Android automation, mobile UI testing, emulator control, physical-device control, app navigation, screenshots, tapping, typing, and requests that should not use desktop computer-use automation.
Use OpenPocket MCP tools to inspect or control an Android emulator, physical Android phone, Android TV, or ADB-backed app. Trigger for phone use, Android automation, mobile UI testing, emulator control, physical-device control, app navigation, screenshots, tapping, typing, and requests that should not use desktop computer-use automation.
Automate X (Twitter) interactions — browsing feed, posting, replying, quoting, reposting, bookmarking, DMs, and profile management. Use when the user asks to use X/Twitter, post a tweet, reply to posts, check notifications, send DMs, or browse their timeline on phone.
Help users complete Duolingo language lessons. Use when the user asks to do Duolingo, practice a language, complete lessons, or needs guidance navigating the Duolingo app on phone.
Edit videos and beautify photos in CapCut on mobile. Use when the user asks to open CapCut, create/edit/export videos, add text/effects/music/captions, use templates, or retouch and enhance photos.
Order food or groceries end-to-end in the Uber Eats consumer app. Use when the user asks to open Uber Eats, browse merchants, add items, customize options, apply promos, choose delivery or pickup, place an order, or track order progress.
| name | device-file-search |
| description | Locate and verify files on Android storage before upload/share, especially latest edited photos or videos. |
| metadata | {"openclaw":{"triggers":{"any":["find file","search file","locate file","latest photo","edited photo","saved photo","send photo","send image","upload photo","upload image","share photo","latest video","dcim","camera","download","capcut","发给我","找文件","找图片","找照片","最新照片","编辑后照片","美化后照片","上传图片","发送照片"]}}} |
Use this skill when you need to find a saved file on the Agent Phone, then upload/share it in an app.
/storage/emulated/0/DCIM/Camera/storage/emulated/0/Pictures/storage/emulated/0/Download/storage/emulated/0/Movies/storage/emulated/0/Pictures/CapCut/storage/emulated/0/Movies/CapCut/storage/emulated/0/DCIM/Camerafind under /storage/emulated/0.Use shell (device-side), not workspace exec.
Quick latest list:
shell("sh -lc 'ls -1t /storage/emulated/0/DCIM/Camera | head -n 20'")
Wider image search:
shell("sh -lc 'find /storage/emulated/0 -type f \\( -iname \"*.jpg\" -o -iname \"*.jpeg\" -o -iname \"*.png\" -o -iname \"*.webp\" \\) | head -n 400'")
Wider video search:
shell("sh -lc 'find /storage/emulated/0 -type f \\( -iname \"*.mp4\" -o -iname \"*.mov\" -o -iname \"*.mkv\" \\) | head -n 400'")
Verify one candidate path:
shell("ls -l /storage/emulated/0/DCIM/Camera/<filename>")
/storage/emulated/0/... over /sdcard/... (symlink issues can hide find results)./sdcard must be used, use find -L /sdcard ....