A third-party Skill can be installed globally without content review or confirmation
Source references: 3The workflow bases recommendations on install count, publisher reputation, and GitHub stars, then proposes `npx skills add` for packages from GitHub or other sources. `-g` installs at user-wide scope and `-y` suppresses confirmation; popularity signals do not establish that a Skill's instructions, scripts, or dependencies are safe.
If a recommended package is impersonated, compromised, or contains dangerous instructions or install code, untrusted behavior could run during installation or later Skill use and persist across that user's agent sessions. The evidence does not establish that any particular candidate package is malicious.
The stated verification checks only install counts, publisher reputation, and stars; it does not require reviewing skill instructions, scripts, or dependencies. The workflow then permits installation from GitHub or other sources in user-global scope with confirmation skipped. Once a user agrees, this increases exposure to unreviewed content. Users can require a pinned commit, full file review, restricted permissions, local installation, and confirmation.
The Skills CLI (`npx skills`) is the package manager for the open agent skills ecosystem. Skills are modular packages that extend agent capabilities with specialized knowledge, workflows, and tools.**Key commands:**- `npx skills find [query] [--owner <owner>]` - Search for skills interactively or by keyword, optionally scoped to a GitHub owner- `npx skills add <package>` - Install a skill from GitHub or other sources- `npx skills update` - Update all installed skillsShow 2 other places
### Step 4: Verify Quality Before Recommending**Do not recommend a skill based solely on search results.** Always verify:1. **Install count** — Prefer skills with 1K+ installs. Be cautious with anything under 100.2. **Source reputation** — Official sources (`vercel-labs`, `anthropics`, `microsoft`) are more trustworthy than unknown authors.3. **GitHub stars** — Check the source repository. A skill from a repo with <100 stars should be treated with skepticism.### Step 6: Offer to InstallIf the user wants to proceed, you can install the skill for them:```bashnpx skills add <owner/repo@skill> -g -y```The `-g` flag installs globally (user-level) and `-y` skips confirmation prompts.