/ 디렉터리 / 플레이그라운드 / skill-fetch
● 커뮤니티 girofu ⚡ 바로 사용

skill-fetch

제작: girofu · girofu/skill-fetch

Search 9 skill registries at once, score results, and install the winner — a package manager-ish UX for Claude Code skills.

skill-fetch is a meta-skill: it queries multiple community registries for agent skills, ranks matches by relevance and quality signals (stars, recency), and handles the git-clone install step. Saves you from manually browsing nine different 'awesome-claude-skills' lists.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

skill-fetch-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "skill-fetch-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/girofu/skill-fetch",
        "~/.claude/skills/skill-fetch"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "skill-fetch-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/girofu/skill-fetch",
        "~/.claude/skills/skill-fetch"
      ],
      "_inferred": true
    }
  }
}

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "skill-fetch-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/girofu/skill-fetch",
        "~/.claude/skills/skill-fetch"
      ],
      "_inferred": true
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "skill-fetch-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/girofu/skill-fetch",
        "~/.claude/skills/skill-fetch"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "skill-fetch-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/girofu/skill-fetch",
        "~/.claude/skills/skill-fetch"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "skill-fetch-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/girofu/skill-fetch",
          "~/.claude/skills/skill-fetch"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add skill-fetch-skill -- git clone https://github.com/girofu/skill-fetch ~/.claude/skills/skill-fetch

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: skill-fetch

Find and install a skill for a task you're doing right now

👤 Claude Code users who don't know what skills exist ⏱ ~5 min beginner

언제 쓸까: You're about to do X and you suspect someone already built a skill for it.

사전 조건
  • skill-fetch installed — git clone https://github.com/girofu/skill-fetch ~/.claude/skills/skill-fetch
흐름
  1. Describe what you need
    Use skill-fetch. I need a skill for generating OpenAPI specs from existing code. Search and score the top 5.✓ 복사됨
    → Ranked list with repo, stars, last commit, one-line summary per result
  2. Inspect the top pick
    Show me the SKILL.md of the top result without installing.✓ 복사됨
    → Raw SKILL.md content for review
  3. Install
    Install it.✓ 복사됨
    → git clone output; skill now in ~/.claude/skills/

결과: A new skill installed, tested, and ready — 5 minutes from 'I need something' to 'I have it'.

함정
  • Installing a skill without reading SKILL.md first — Always inspect the SKILL.md — skills can include hooks that run arbitrary code

Audit the skills you already have installed

👤 Users with a cluttered ~/.claude/skills/ directory ⏱ ~10 min beginner

언제 쓸까: You installed a bunch of skills months ago and don't remember what they do.

흐름
  1. List installed skills
    Use skill-fetch to list all skills under ~/.claude/skills/ with their current version and last-updated date.✓ 복사됨
    → Table of installed skills
  2. Flag abandoned ones
    Which of these haven't been updated upstream in 6+ months?✓ 복사됨
    → List of stale skills

결과: Knowledge of what's installed, what's active, and what can be removed.

함께 쓰기: filesystem

조합

다른 MCP와 조합해 10배 효율

skill-fetch-skill + woodshed-skill

Find candidate skills with skill-fetch, then iterate on improvements with woodshed

Find a skill for X, install it, then use woodshed to test and refine it for my use case.✓ 복사됨
skill-fetch-skill + filesystem

Batch manage skills directory structure

Archive all skills not used in the last 30 days into ~/.claude/skills-archive/✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
search_registries query, limit Finding skills across multiple sources 9 HTTP requests
inspect_skill repo URL Preview before install 1 HTTP request
install_skill repo URL, local name After inspection, to add the skill locally git clone
list_installed none Auditing what you have local read

비용 및 제한

운영 비용

API 쿼터
Subject to GitHub API limits (60/h unauthenticated, 5000/h with PAT)
호출당 토큰
~500 tokens per search result
금액
Free
Set GITHUB_TOKEN to get 5000 req/h instead of 60.

보안

권한, 시크릿, 파급범위

자격 증명 저장: Optional GITHUB_TOKEN for higher rate limits
데이터 외부 송신: GitHub API and skill registries only

문제 해결

자주 발생하는 오류와 해결

Search returns 0 results for a common query

Hitting rate limits. Set GITHUB_TOKEN env var.

확인: curl -H "Authorization: Bearer $GITHUB_TOKEN" https://api.github.com/rate_limit
Install fails with 'permission denied'

Check ~/.claude/skills/ is writable.

확인: ls -la ~/.claude/skills/
Installed skill doesn't activate

Skills need a valid SKILL.md with YAML frontmatter. Inspect the cloned directory.

확인: head ~/.claude/skills/<name>/SKILL.md

대안

skill-fetch 다른 것과 비교

대안언제 쓰나단점/장점
Manually browsing awesome-claude-skills listsYou only install a skill once in a blue moonSlow, no scoring, no install automation
claude-skills-vault-skillYou want a curated bundle rather than search-and-pickOpinionated; less flexible

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기