用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/duclm1x1/Dive-Ai --skill google-tv命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | google-tv |
| description | Play YouTube/Tubi content and fallback to Google TV global search for other streaming apps via ADB |
| metadata | {"openclaw":{"os":["darwin","linux"],"requires":{"bins":["adb","uv"]},"install":[{"id":"brew-adb","kind":"brew","cask":"android-platform-tools","bins":["adb"],"label":"Install adb (android-platform-tools)"},{"id":"brew-uv","kind":"brew","formula":"uv","bins":["uv"],"label":"Install uv"}]}} |
Use this skill when I ask to cast YouTube or Tubi video content, play or pause Chromecast media playback, check if the Chromecast is online, or launch episodic content in another streaming app via global search fallback.
This skill runs with uv and adb on PATH. No venv required.
uv and adb are available on PATH../run as a convenience wrapper around uv run google_tv_skill.py.This skill provides a small CLI wrapper around ADB to control a Google TV device. It exposes the following subcommands:
./run status --device 192.168.4.64 --port 5555
./run play "7m714Ls29ZA" --device 192.168.4.64 --port 5555
./run play "family guy" --app hulu --season 3 --episode 4 --device 192.168.4.64 --port 5555
./run pause --device 192.168.4.64 --port 5555
.last_device.json in the skill folder and will use that cache if no explicit device is provided.yt-api CLI (on PATH). If ID resolution fails, the skill will report failure.YOUTUBE_PACKAGE (default com.google.android.youtube.tv).TUBI_PACKAGE (default com.tubitv).--app with another provider (for example hulu, max, disney+), the skill uses a Google TV global-search fallback.--app, --season, and --episode.android.search.action.GLOBAL_SEARCH, waits for the Series Overview UI, opens Seasons, picks season/episode, then confirms Open in <app> when available../run pause
./run resume
uv to avoid PEP 668/system package constraints.adb, uv, and yt-api to be installed and available on PATH..last_device.json in the skill folder.adb connect IP:PORT manually from your host to verify the current port..last_device.json on success.google_tv_skill.py in this folder. It uses subprocess calls to adb and yt-api, plus an internal global-search helper for fallback playback.