Agent skill · AI & Agents

skill-installer

跨平台智能安装助手:自动检测操作系统,适配Windows/macOS/Linux命令,处理Git/网络/路径问题。当用户说"安装skill"、"帮我安装xxx"、"我下载了skill,路径是xxx"时触发。

mingchen666157★ · +54/wk · 1 repos on radarProfile →
claude-coderead-only
Install
npx skills add mingchen666/Reviva --skill skill-installer --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 13 KB
Bundled scripts: none
Allowed tools: Bash(git*)Bash(curl*)Bash(wget*)Bash(mv*)Bash(cp*)Bash(mkdir*)
Path: electron/builtin-assets/skills/skill-installer/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 181 · +24 this week
Language: HTML
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 跨平台智能安装助手 自动检测操作系统,适配各种环境,智能处理安装问题。 ## 工作流程 ### 步骤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

More from Reviva
All skills →
About this skill
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.

Keep going