Skip to main content

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", "add skill", "setup skill", "available skills", "skill library", "browse skills".

설치로 이동

소스 정보

저장소
aviz85/claude-skills-library
최근 소스 활동
2026년 1월 20일 18:30
감지된 SKILL.md 언어
영어
스타
49
포크
14

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
4 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
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".
version
1.0.0
author
aviz85
tags
["installer","setup","claude-code"]
# 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 ```bash # 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) ```bash 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
GitHub에서 보기