From claude-cast
Installs and verifies claude-cast dependencies (mpv, streamlink, tmux, bun) on macOS via brew or Linux via apt/dnf. Includes check-only mode ($ARGUMENTS=check). Use before streaming Claude Code in tmux.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-cast:setupThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up claude-cast by installing all required dependencies.
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.
npx claudepluginhub kvreem/claude-cast --plugin claude-castInstalls or checks cc-dm-stream, live TUI viewer for cc-dm messages, using shell, cargo, npm, or brew methods. Triggers on install stream viewer requests.
Detects Python environment and guides through installing plugin dependencies for bitwize-music. Use on first-time setup or when MCP server fails to start.
Prepares local development environment for Claude Code usage: detects OS, installs Git and GitHub CLI, and guides through optional installation phases for design and development workflows.