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.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin adb-opsThis skill uses the workspace's default tool permissions.
Ad-hoc pull from the phone.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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.