用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Demerzels-lab/elsamultiskillagent --skill google-tv命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
The philosophical layer for AI agents.
Agents can sign plugins, rotate credentials without losing identity, and publicly attest to behavior.
A relaxing resource-gathering RPG where AI agents collect resources, trade with NPCs, and manage and build their world at their own pace.
基于 SOC 职业分类
正在显示 SKILL.md
| name | google_tv |
| description | Control the Living Room Chromecast with Google TV via ADB |
| author | Anthony |
Use this skill when I ask to control the TV, play shows, or check if the TV is online.
This skill uses a local Python virtual environment to communicate with the TV via ADB.
./.venv/bin/python3 (not the workspace venv folder). Activate or call that python explicitly when running the script.requests and beautifulsoup4 (bs4). To install into the skill venv run:./.venv/bin/python3 -m pip install -r requirements.txt
(See requirements.txt in the skill folder.)
This skill provides a small CLI wrapper around ADB to control a Google TV device. It exposes the following subcommands:
./.venv/bin/python3 google_tv_skill.py status --device 192.168.4.64 --port 5555
./.venv/bin/python3 google_tv_skill.py play "7m714Ls29ZA" --device 192.168.4.64 --port 5555
./.venv/bin/python3 google_tv_skill.py 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) and falls back to /Users/anthony/go/bin/yt-api if needed. If ID resolution fails, the skill will report failure rather than attempting UI search.YOUTUBE_TV_PACKAGE (default com.google.android.youtube.tv).TUBI_PACKAGE (default com.tubitv)../.venv/bin/python3 google_tv_skill.py pause
./.venv/bin/python3 google_tv_skill.py resume
./.venv.adb to be on PATH and yt-api to be available on PATH or at /Users/anthony/go/bin/yt-api..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.yt-api is installed or accessible at /Users/anthony/go/bin/yt-api.google_tv_skill.py in this folder. It uses subprocess calls to adb and to yt-api when needed.