skill-installer
跨平台智能安装助手:自动检测操作系统,适配Windows/macOS/Linux命令,处理Git/网络/路径问题。当用户说"安装skill"、"帮我安装xxx"、"我下载了skill,路径是xxx"时触发。
npx skills add mingchen666/Reviva --skill skill-installer --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 跨平台智能安装助手 自动检测操作系统,适配各种环境,智能处理安装问题。 ## 工作流程 ### 步骤1: 跨平台环境检测 ```bash # 检测操作系统类型 detect_os() { case "$(uname -s)" in Linux*) OS="Linux";; Darwin*) OS="macOS";; CYGWIN*|MINGW*|MSYS*) OS="Windows";; *) OS="Unknown";; esac echo "操作系统: $OS" } # 检测架构 detect_arch() { case "$(uname -m)" in x86_64*) ARCH="x64";; i686*) ARCH="x86";; arm*) ARCH="arm";; aarch64*) ARCH="arm64";; *) ARCH="unknown";; esac echo
What does the skill-installer skill do?
跨平台智能安装助手:自动检测操作系统,适配Windows/macOS/Linux命令,处理Git/网络/路径问题。当用户说"安装skill"、"帮我安装xxx"、"我下载了skill,路径是xxx"时触发。
How do I install it?
Run `npx skills add mingchen666/Reviva --skill skill-installer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From mingchen666/Reviva, a repository with 181 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.