Help us improve
Share bugs, ideas, or general feedback.
From claudeclaw
Searches skills.sh and GitHub repos for skills, then installs them into the project's skills/ directory. Use when users want to find, browse, or add skills.
npx claudepluginhub moazbuilds/claudeclaw --plugin claudeclawHow this skill is triggered — by the user, by Claude, or both
Slash command
/claudeclaw:install-skillThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search for skills on skills.sh and install them into the project's `skills/` directory. Always project level.
Searches local, marketplace, GitHub, and web skill sources to avoid duplicating existing skills. Indexed results are ranked and presented with fork/extend options.
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.
Searches 9 skill registries including SkillsMP, GitHub, and Anthropic Skills for agent skills. Scores by quality/security, paginates results up to 5, and installs locally/globally. Use on 'fetch/install/search skill' or 'MISSING EXTERNAL SKILL'.
Share bugs, ideas, or general feedback.
Search for skills on skills.sh and install them into the project's skills/ directory. Always project level.
Two scripts are provided in this skill's directory:
search.mjsnode ${SKILL_DIR}/search.mjs "<query>"
Returns JSON array of matching skills:
[{"source": "owner/repo", "id": "skill-name", "name": "skill-name", "installs": 1234}]
install.mjsnode ${SKILL_DIR}/install.mjs <owner/repo> <skill-name> <project-skills-dir>
Downloads all skill files from the GitHub repo into <project-skills-dir>/<skill-name>/. Returns:
{"ok": true, "skill": "name", "source": "owner/repo", "path": "/full/path", "files": ["SKILL.md", ...]}
If the user gives a specific repo and skill name, skip to step 3.
Search: Run search.mjs with the user's query. Show the top results as a numbered list with name, repo, and install count. Ask which one they want.
Install: Run install.mjs with the chosen repo, skill name, and the project's skills/ directory path.
Confirm: Show what was installed — skill name, source, files downloaded, and path.
Replace ${SKILL_DIR} with the actual path to this skill's directory when running the scripts.