Help us improve
Share bugs, ideas, or general feedback.
Guides installation of AVIZ Skills Library skills into Claude Code via user (~/.claude/skills) or project (.claude/skills) directories using git clone/copy, npm deps, and real-time doc fetching.
npx claudepluginhub aviz85/claude-skills-library --plugin aviz-skills-installerHow this skill is triggered — by the user, by Claude, or both
Slash command
/aviz-skills-installer:aviz-skills-installerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A conversational guide to installing skills from the AVIZ Skills Library.
Installs Claude Code skills from skills.sh via npx, GitHub repos, or direct SKILL.md downloads. Detects conflicts, confirms with user, and verifies post-install.
Installs, updates, lists, and removes Claude Code skills from GitHub repos/subdirs or .skill zips. Supports user-global and project-local locations.
Install, list, and remove community skills from GitHub or local paths. Manages SKILL.md files for Claude Code's agent skill system.
Share bugs, ideas, or general feedback.
A conversational guide to installing skills from the AVIZ Skills Library.
DO NOT use hardcoded skill lists. Always fetch current data from these sources:
Use WebFetch or WebSearch to get the latest available skills and their setup instructions.
Ask the user what they want:
Use WebFetch on https://aviz.github.io/claude-skills-library/ to get the current list of skills.
Ask the user:
Where would you like to install this skill?
1. User-based (~/.claude/skills/) - Personal, available everywhere
2. Project-based (.claude/skills/) - Shared with team via git
# Clone and copy
TEMP=$(mktemp -d)
git clone https://github.com/aviz85/claude-skills-library.git "$TEMP/lib" --depth 1
# For user-based:
mkdir -p ~/.claude/skills
cp -r "$TEMP/lib/skills/SKILL_NAME" ~/.claude/skills/
# For project-based:
mkdir -p .claude/skills
cp -r "$TEMP/lib/skills/SKILL_NAME" .claude/skills/
# Cleanup
rm -rf "$TEMP"
cd DESTINATION/SKILL_NAME/scripts
npm install 2>/dev/null || true
Fetch the skill's documentation page and guide the user through any required configuration:
https://aviz.github.io/claude-skills-library/skills/{skill-name}.html
Each skill in the library MUST have:
docs/skills/{skill-name}.htmlSkills requiring API keys should include:
.env.example file with required variables