Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aviz85 avatar

Aviz Skills Installer

  • 74 installs
  • 44 repo stars
  • Updated July 8, 2026
  • aviz85/claude-skills-library

aviz-skills-installer is a Claude Code skill that guides installing skills from the AVIZ Skills Library into the user or project scope.

About

A Claude Code skill that walks a user through installing skills from the AVIZ Skills Library. It fetches the current skill list from the library site, asks whether to install user-wide or per-project, clones the repo, copies the chosen skill, and runs any needed npm install. It is a meta-skill for discovering and installing other Claude Code skills.

  • Conversational guide to installing skills from the AVIZ Skills Library
  • Clones the library repo and copies a skill to user or project scope
  • Fetches live skill lists and setup guides instead of hardcoded data

Aviz Skills Installer by the numbers

  • 74 all-time installs (skills.sh)
  • Ranked #287 of 779 Skill Development skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

aviz-skills-installer capabilities & compatibility

Free; clones a public GitHub repo, no API keys.

Capabilities
skill development
Works with
github
Pricing
Free
From the docs

What aviz-skills-installer says it does

A conversational guide to installing skills from the AVIZ Skills Library.
SKILL.md
**DO NOT use hardcoded skill lists.** Always fetch current data from these sources
SKILL.md
npx skills add https://github.com/aviz85/claude-skills-library --skill aviz-skills-installer

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs74
repo stars44
Last updatedJuly 8, 2026
Repositoryaviz85/claude-skills-library

What it does

Discover and install a skill from the AVIZ Skills Library into the user or project skills directory.

Who is it for?

Browsing and installing AVIZ Skills Library skills into ~/.claude/skills or a project's .claude/skills.

Skip if: Installing skills from sources other than the AVIZ Skills Library.

When should I use this skill?

A user wants to install a skill, browse available skills, or set up Claude Code skills.

What you get

A chosen skill installed to the user or project skills directory, with dependencies and setup guidance.

  • A skill installed to the chosen skills directory

By the numbers

  • 6-step conversational flow
  • 2 install scopes (user/project)

Files

SKILL.mdMarkdownGitHub ↗

AVIZ Skills Installer

A conversational guide to installing skills from the AVIZ Skills Library.

Important: Fetch Real-Time Data

DO NOT use hardcoded skill lists. Always fetch current data from these sources:

1. Skills List & Setup Guides: https://aviz.github.io/claude-skills-library/ 2. GitHub Repository: https://github.com/aviz85/claude-skills-library 3. Individual Skill Pages: https://aviz.github.io/claude-skills-library/skills/{skill-name}.html

Use WebFetch or WebSearch to get the latest available skills and their setup instructions.

Conversational Flow

Step 1: Discover Intent

Ask the user what they want:

  • See available skills → Fetch from site
  • Install a specific skill → Proceed to installation
  • Learn about a skill → Fetch its documentation page

Step 2: Fetch Available Skills

Use WebFetch on https://aviz.github.io/claude-skills-library/ to get the current list of skills.

Step 3: Choose Installation Scope

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

Step 4: Install the Skill

# 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"

Step 5: Install Dependencies (if needed)

cd DESTINATION/SKILL_NAME/scripts
npm install 2>/dev/null || true

Step 6: Provide Setup Guide

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

Conventions for Skill Documentation

Each skill in the library MUST have: 1. SKILL.md - Main skill file with YAML frontmatter 2. Setup page on GitHub Pages - At docs/skills/{skill-name}.html

Skills requiring API keys should include:

  • .env.example file with required variables
  • Setup instructions on their documentation page

See Also

  • Library Website: https://aviz.github.io/claude-skills-library/
  • GitHub Repository: https://github.com/aviz85/claude-skills-library

Related skills

FAQ

Where can skills be installed?

User-based in ~/.claude/skills for all projects, or project-based in .claude/skills shared via git.

Does it use a hardcoded skill list?

No, it fetches the current list from the AVIZ Skills Library site rather than hardcoding it.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.