AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Skill Installer

skill-0oooooooo0-skillless-skill-installer · by 0oooooooo0

A Claude skill from 0oooooooo0/skillless.

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-0oooooooo0-skillless-skill-installer

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-0oooooooo0-skillless-skill-installer)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Skill Installer? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill: skill-installer

Install Claude Code skills from various sources.

user-invocable: false description: Handles skill installation from skills.sh, GitHub, or direct SKILL.md download. Always confirms with user before installing. allowed-tools: [Read, Write, Bash, WebFetch, Glob, AskUserQuestion]

Instructions

When called with a skill to install, determine the source type and follow the appropriate flow.

Pre-installation Checks

  1. Conflict detection: Check if a skill with the same name already exists:

`` Glob: ~/.claude/skills/{skill-name}/SKILL.md ``

  1. If already installed, inform the user and ask if they want to update/overwrite.
  2. Always confirm with the user before proceeding with installation.

Installation by Source Type

Type: installed

The skill is already installed locally. Inform the user: > "This skill is already available on your system. You can use it right away."

Type: skills-add

The skill is listed on skills.sh and can be installed via npx. Run:

npx skills add -y -g {owner/repo}
  • -y: skip confirmation prompts
  • -g: install globally to ~/.claude/skills/
  • Format: {owner/repo} (e.g., vercel-labs/agent-skills)
  • To install a specific skill from a multi-skill repo: {owner/repo}/{skill-name}

IMPORTANT: The old npx skillsadd package is deprecated and no longer works. Always use npx skills add.

If npx skills add fails (e.g., "No valid skills found"), fall back to direct GitHub download:

  1. Find the SKILL.md path via: https://api.github.com/repos/{owner}/{repo}/git/trees/main?recursive=1
  2. Download: curl -sL https://raw.githubusercontent.com/{owner}/{repo}/refs/heads/main/{path-to-SKILL.md}
  3. Save to ~/.claude/skills/{skill-name}/SKILL.md
Type: github-plugin

The skill is part of a GitHub-hosted plugin. Guide the user: > "This skill is available as a GitHub plugin. To install, run: > `` > /plugin install {github-url} > ``"

Type: skill-md

A standalone SKILL.md file that can be downloaded directly:

  1. Confirm with the user.
  2. Create the skill directory:

``bash mkdir -p ~/.claude/skills/{skill-name} ``

  1. Download the SKILL.md:

`` WebFetch: {raw-url} ``

  1. Write the content:

`` Write: ~/.claude/skills/{skill-name}/SKILL.md ``

  1. If the skill has associated scripts, download those too.

Post-installation Verification

After installation, verify:

  1. The SKILL.md file exists at the expected path
  2. The file is valid (non-empty, contains expected headers)
  3. Report success or failure to the user

Output

Provide a clear summary:

  • What was installed
  • Where it was installed
  • How to use it (if applicable)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.