一键导入
setup
Set up claude-cast by installing all required dependencies (mpv, streamlink, tmux) and verifying the installation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Set up claude-cast by installing all required dependencies (mpv, streamlink, tmux) and verifying the installation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Configure claude-cast settings including API keys, default layout, volume, and pane width.
Control a live stream player. Stream Twitch, YouTube, or Kick alongside your code. Triggers on "stream", "watch", "tune in", "twitch", "youtube", "kick", "listen to".
基于 SOC 职业分类
| name | setup |
| description | Set up claude-cast by installing all required dependencies (mpv, streamlink, tmux) and verifying the installation. |
| user-invocable | true |
| argument-hint | ["check"] |
| allowed-tools | ["Bash"] |
Set up claude-cast by installing all required dependencies.
Arguments: $ARGUMENTS
Run each check:
command -v mpv && mpv --version | head -1 || echo "MISSING: mpv"
command -v streamlink && streamlink --version || echo "MISSING: streamlink"
command -v tmux && tmux -V || echo "MISSING: tmux"
command -v bun && bun --version || echo "MISSING: bun"
For each missing dependency on macOS:
# If mpv is missing:
brew install mpv
# If streamlink is missing:
brew install streamlink
# If tmux is missing:
brew install tmux
For Linux:
# Debian/Ubuntu
sudo apt install mpv streamlink tmux
# Fedora
sudo dnf install mpv streamlink tmux
After installing, run all checks again to confirm everything works:
mpv --version | head -1
streamlink --version
tmux -V
If all dependencies are installed, tell the user:
"claude-cast is ready. Start a tmux session and launch Claude Code:
tmux new-session -s dev
claude
Then stream:
/claude-cast shroud
"
$ARGUMENTS is "check"Only run the checks in step 1 without installing anything. Report what's installed and what's missing.