Help us improve
Share bugs, ideas, or general feedback.
From skillless
Searches Claude Code skills across local ~/.claude/skills, skills.sh CLI directory, and GitHub fallback. Outputs markdown table and JSON with install info, sorted by source.
npx claudepluginhub 0oooooooo0/skilllessHow this skill is triggered — by the user, by Claude, or both
Slash command
/skillless:skill-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search for Claude Code skills across multiple sources.
Searches tiered sources like Anthropic repos and GitHub for Claude Code skills matching a query, fetches SKILL.md files, applies toothbrush filter for quality, and outputs comparison tables with verdicts.
Searches local, marketplace, GitHub, and web sources for existing skills before creating a new one. Helps avoid duplication and vets external skills for safety.
Search skills on skills.sh, list top GitHub repo matches by install count, and install selected ones into your project's skills/ directory.
Share bugs, ideas, or general feedback.
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]
When called with a search query, search these 3 sources and return consolidated results.
Search already-installed skills:
Glob: ~/.claude/skills/*/SKILL.md
Grep: search for the query keywords in matched files
Mark these as installed: true.
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 <N> installs
└ https://skills.sh/owner/repo/skill-name
Extract from the output:
npx skills add -y -g <owner/repo@skill-name>IMPORTANT: Always use the exact owner/repo path from the CLI output. Do NOT guess or modify the path.
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.
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
}