Skip to content
OpenSmartRoute
Skillv1.0.0

aviz-skills-installer

Install skills from the AVIZ Skills Library. Use when user wants to install a skill, browse available skills, set up Claude Code skills, or asks about skill installation. Triggers on "install skill",

by aviz85(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from aviz85/claude-skills-library (skills/aviz-skills-installer/SKILL.md). Install upstream with npx skills add aviz85/claude-skills-library --skill aviz-skills-installer. Copyright stays with the author.

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

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/aviz85-claude-skills-library-aviz-skills-installer/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

aviz85-claude-skills-library-aviz-skills-installer.ocm.jsonjson
{
  "ocm": "1",
  "id": "aviz85-claude-skills-library-aviz-skills-installer",
  "kind": "skill",
  "name": "aviz-skills-installer",
  "description": "Install skills from the AVIZ Skills Library. Use when user wants to install a skill, browse available skills, set up Claude Code skills, or asks about skill installation. Triggers on \"install skill\", \"add skill\", \"setup skill\", \"available skills\", \"skill library\", \"browse skills\".",
  "publisher": "aviz85",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "installer",
      "setup",
      "claude-code",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Install skills from the AVIZ Skills Library. Use when user wants to install a skill, browse available skills, set up Claude Code skills, or asks about skill installation. Triggers on \"install skill\", \"add skill\", \"setup skill\", \"available skills\", \"skill library\", \"browse skills\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/aviz85/claude-skills-library",
      "path": "skills/aviz-skills-installer/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/aviz85/claude-skills-library/blob/HEAD/skills/aviz-skills-installer/SKILL.md",
      "key": "aviz85/claude-skills-library/skills/aviz-skills-installer/SKILL.md"
    }
  },
  "instructions": "# AVIZ Skills Installer\n\nA conversational guide to installing skills from the AVIZ Skills Library.\n\n## Important: Fetch Real-Time Data\n\n**DO NOT use hardcoded skill lists.** Always fetch current data from these sources:\n\n1. **Skills List & Setup Guides**: https://aviz.github.io/claude-skills-library/\n2. **GitHub Repository**: https://github.com/aviz85/claude-skills-library\n3. **Individual Skill Pages**: https://aviz.github.io/claude-skills-library/skills/{skill-name}.html\n\nUse WebFetch or WebSearch to get the latest available skills and their setup instructions.\n\n## Conversational Flow\n\n### St",
  "cost": {
    "context_tokens": 591
  }
}

Fetch it by URL: GET /api/v1/registry/aviz85-claude-skills-library-aviz-skills-installer/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.