用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/archibate/dotfiles-codex --skill adb-wireless命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Inspect or debug web pages in a headless browser — fill forms, click buttons, take screenshots, test web apps, review frontend UI/UX aesthetics. Use for headless browser automation. This skill should be used when user says "test web app interactively", "use a headless browser", "browser automation", "headless web test", "review frontend layout", "screenshot of this page", "frontend UI polish".
Guide for writing ast-grep rules to perform structural code search and analysis. TRIGGER when a text-only grep would need 2+ alternations, regex capture groups, multi-line patterns, or filtering by syntactic role (call vs. import vs. definition). Also TRIGGER when renaming a symbol across call sites + definitions, finding all callers of a method on a specific type, matching code shapes, or writing codemods.
Peer-to-peer messaging between Claude Code sessions sharing a tmux server. Use when coordinating multiple simultaneous Claude sessions — e.g. "dm another claude", "list claude sessions", "peek peer claude", "spawn claude in tmux", "monitor remote claude", "orchestrate claude sessions".
基于 SOC 职业分类
正在显示 SKILL.md
| name | adb-wireless |
| description | Connect to an Android phone via wireless ADB over Wi-Fi |
| allowed-tools | ["Bash(adb *)"] |
| when_to_use | Use when the user asks to "connect adb wireless", "adb wifi", "wireless adb", "connect phone wirelessly", or wants to set up ADB over Wi-Fi. TRIGGER when user mentions wireless/adb together. |
| disable-model-invocation | true |
Connect to an Android phone via ADB over Wi-Fi, eliminating the need for a USB cable after initial setup.
Establish a working wireless ADB connection. Success: adb devices shows a connection with an IP:port entry.
Run adb devices and inspect the output:
Run:
adb shell sh -c "ip a | grep 192.168"
Parse the output to extract the phone's IP (e.g. 192.168.71.6 from inet 192.168.71.6/24 ...).
Artifacts: The phone's Wi-Fi IP address.
Run these two commands:
adb tcpip 5555
adb connect <phone_ip>
Replace <phone_ip> with the IP from step 2.
Run adb devices to confirm the wireless connection appears. Tell the user they can now disconnect the USB cable and use adb shell to connect over Wi-Fi.