/ Verzeichnis / Playground / skill-fetch
● Community girofu ⚡ Sofort

skill-fetch

von 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.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

skill-fetch-skill.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/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
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.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 nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "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
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

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

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

In context_servers hinzufügen. Zed lädt beim Speichern neu.

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

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: 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

Wann einsetzen: You're about to do X and you suspect someone already built a skill for it.

Voraussetzungen
  • skill-fetch installed — git clone https://github.com/girofu/skill-fetch ~/.claude/skills/skill-fetch
Ablauf
  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.✓ Kopiert
    → 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.✓ Kopiert
    → Raw SKILL.md content for review
  3. Install
    Install it.✓ Kopiert
    → git clone output; skill now in ~/.claude/skills/

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

Fallstricke
  • 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

Wann einsetzen: You installed a bunch of skills months ago and don't remember what they do.

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

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

Kombinieren mit: filesystem

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

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.✓ Kopiert
skill-fetch-skill + filesystem

Batch manage skills directory structure

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

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
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

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
Subject to GitHub API limits (60/h unauthenticated, 5000/h with PAT)
Tokens pro Aufruf
~500 tokens per search result
Kosten in €
Free
Tipp
Set GITHUB_TOKEN to get 5000 req/h instead of 60.

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: Optional GITHUB_TOKEN for higher rate limits
Datenabfluss: GitHub API and skill registries only

Fehlerbehebung

Häufige Fehler und Lösungen

Search returns 0 results for a common query

Hitting rate limits. Set GITHUB_TOKEN env var.

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

Check ~/.claude/skills/ is writable.

Prüfen: ls -la ~/.claude/skills/
Installed skill doesn't activate

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

Prüfen: head ~/.claude/skills/<name>/SKILL.md

Alternativen

skill-fetch vs. andere

AlternativeWann stattdessenKompromiss
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

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen