From adb-ops
Pull an arbitrary folder (or single file) from the connected Android device to the local computer via `adb pull`. Unlike import-media this is ad-hoc — the user supplies the phone path and optional local destination. Use when the user wants "just grab /sdcard/<something>" that isn't in their saved mappings.
How this skill is triggered — by the user, by Claude, or both
Slash command
/adb-ops:pull-folderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Ad-hoc pull from the phone.
Ad-hoc pull from the phone.
Resolve the phone path from the user's request. Verify it exists: adb shell ls -la <path>.
Resolve the local destination:
~/Downloads/adb-pulls/<basename>-<timestamp>/.Estimate size first: adb shell du -sh <path>. If > 1 GB, show the size and confirm before proceeding.
Run adb pull <phone_path> <local_path>. Preserve directory structure.
Report file count, bytes transferred, destination path. Offer to save this as a new mapping in <workspace>/mappings.yaml if the user might repeat it.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin adb-ops