Install
$ agentstack add skill-0oooooooo0-skillless-skill-search ✓ 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 No
- ✓ 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-search
Search for Claude Code skills across multiple sources.
user-invocable: false description: Searches for relevant skills across local installation, skills.sh directory, and GitHub. Called by other skills or commands. allowed-tools: [Read, Glob, Grep, Bash, WebSearch]
Instructions
When called with a search query, search these 3 sources and return consolidated results.
Source 1: Local Installed Skills
Search already-installed skills:
Glob: ~/.claude/skills/*/SKILL.md
Grep: search for the query keywords in matched files
Mark these as installed: true.
Source 2: skills.sh Directory
Search the skills.sh open skill directory using the CLI:
npx skills find {query}
Parse the output to extract matching skills. Each line follows the format:
owner/repo@skill-name installs
└ https://skills.sh/owner/repo/skill-name
Extract from the output:
- Skill name and exact owner/repo@skill-name path
- Install count (popularity indicator)
- Install command:
npx skills add -y -g
IMPORTANT: Always use the exact owner/repo path from the CLI output. Do NOT guess or modify the path.
Source 3: GitHub (Fallback)
Only if Sources 1-2 return fewer than 3 results total:
WebSearch: site:github.com "SKILL.md" claude {query}
Parse results to extract skill repositories.
Output Format
Return results as a markdown table:
| # | Name | Source | Description | Installed | |---|------|--------|-------------|-----------| | 1 | skill-name | local/skills.sh/github | Short description | Yes/No |
Sort order: local first, then skills.sh, github.
Also return a structured JSON block for programmatic use:
{
"results": [
{
"name": "skill-name",
"source": "local|skills.sh|github",
"description": "...",
"installed": true,
"install_info": {
"type": "skills-add|github-plugin|skill-md|installed",
"url_or_name": "..."
}
}
],
"query": "original query",
"total": 5
}
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.