Install
$ agentstack add skill-0oooooooo0-skillless-skill-installer ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
- Conflict detection: Check if a skill with the same name already exists:
`` Glob: ~/.claude/skills/{skill-name}/SKILL.md ``
- If already installed, inform the user and ask if they want to update/overwrite.
- 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:
- Find the SKILL.md path via:
https://api.github.com/repos/{owner}/{repo}/git/trees/main?recursive=1 - Download:
curl -sL https://raw.githubusercontent.com/{owner}/{repo}/refs/heads/main/{path-to-SKILL.md} - 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:
- Confirm with the user.
- Create the skill directory:
``bash mkdir -p ~/.claude/skills/{skill-name} ``
- Download the SKILL.md:
`` WebFetch: {raw-url} ``
- Write the content:
`` Write: ~/.claude/skills/{skill-name}/SKILL.md ``
- If the skill has associated scripts, download those too.
Post-installation Verification
After installation, verify:
- The SKILL.md file exists at the expected path
- The file is valid (non-empty, contains expected headers)
- 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.
- Author: 0oooooooo0
- Source: 0oooooooo0/skillless
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.