/ Verzeichnis / Playground / awesome-llm-skills
● Community Prat011 ⚡ Sofort

awesome-llm-skills

von Prat011 · Prat011/awesome-llm-skills

A curated catalog of LLM agent skills — part directory, part implementation library — covering docs, dev, data, marketing, security, and more.

Awesome LLM Skills is both a curated list and a working library. Each category folder contains actual runnable skills for Claude Code, Codex, Gemini, and other agents — not just links. Categories span MCP-integrated workflows (Notion, knowledge capture), document processing (Word/PDF/sheets), dev tooling (testing, AWS, git), data analysis, business/marketing, and creative/media.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

awesome-llm-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": {
    "awesome-llm-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Prat011/awesome-llm-skills",
        "~/.claude/skills/awesome-llm-skills"
      ],
      "_inferred": true
    }
  }
}

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

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

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

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

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

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

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

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

claude mcp add awesome-llm-skill -- git clone https://github.com/Prat011/awesome-llm-skills ~/.claude/skills/awesome-llm-skills

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

Anwendungsfälle

Praxisnahe Nutzung: awesome-llm-skills

How to cherry-pick skills you actually need without cloning the whole repo

👤 Developers who want targeted skills without bloating ~/.claude/skills ⏱ ~10 min beginner

Wann einsetzen: The repo has 50+ skills but you only want the 3 that fit your workflow.

Voraussetzungen
  • git with sparse-checkout support — git >= 2.25 — already on any recent install
Ablauf
  1. Clone with sparse-checkout
    Clone awesome-llm-skills with sparse-checkout enabled, cone mode.✓ Kopiert
    → Empty repo with .git/info/sparse-checkout
  2. Pick only your skills
    git sparse-checkout set skills/testing skills/csv-processing skills/git-workflows✓ Kopiert
    → Only those 3 folders materialize
  3. Symlink into ~/.claude/skills
    Symlink the 3 skill folders into ~/.claude/skills so Claude discovers them.✓ Kopiert
    → Skills show up on next /help

Ergebnis: Lean install with only the skills you use.

Fallstricke
  • Skills reference each other across categories — Read each SKILL.md's prerequisites; some assume a sibling skill exists. Add those too.
Kombinieren mit: agent-skills-cli-skill

Browse skills by category to discover new workflows

👤 Practitioners exploring what's possible with agent skills ⏱ ~20 min beginner

Wann einsetzen: You know your domain (marketing, security, etc.) but don't know which skills exist for it.

Ablauf
  1. Ask Claude to summarize a category
    Open awesome-llm-skills, list every skill under 'Business & Marketing' with a one-line what-it-does.✓ Kopiert
    → Table of skills with purpose
  2. Shortlist and try
    Pick the 2 that look most useful for a SaaS founder; walk me through installing and trying each.✓ Kopiert
    → Step-by-step install + first run

Ergebnis: A working shortlist of category-matched skills you've actually tried.

Fallstricke
  • Some skills are stubs or outdated — Check each skill folder's last commit date; skip if stale

Contribute your own skill back to the catalog

👤 Skill authors who want distribution ⏱ ~30 min intermediate

Wann einsetzen: You've built something reusable and want to reach other Claude Code users.

Voraussetzungen
  • A working skill following SKILL.md conventions — Use claude-code-skill-factory-skill to scaffold if starting fresh
Ablauf
  1. Match the repo's category layout
    Which category in awesome-llm-skills best fits a skill that audits Rails migrations?✓ Kopiert
    → Category recommendation + folder pattern
  2. Open PR
    Prepare a fork, add the skill under that category, write a README entry, and draft the PR body.✓ Kopiert
    → PR opens with README updated

Ergebnis: Skill merged into the catalog with its own category row.

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

awesome-llm-skill + agent-skills-cli-skill

Use the CLI to install individual skills from this catalog without cloning the whole repo

Use agent-skills-cli to install just 'lead-research' and 'meeting-notes' from awesome-llm-skills.✓ Kopiert

Factory scaffolds new skills; Awesome list hosts them for others to discover

Build a new skill with the Factory, then prepare a PR against awesome-llm-skills to add it under Dev Tools.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
Skills with MCP - Notion + knowledge capture workflows 0
Document Processing - Word, PDF, spreadsheet handling 0
Development & Code Tools - Testing, AWS, git workflows 0
Data & Analysis - CSV, DB queries 0
Business & Marketing - Lead research, competitive analysis 0
Communication & Writing - Content creation, meeting notes 0
Creative & Media - Design, video, GIF creation 0
Productivity & Organization - File mgmt, invoicing 0
Security & Systems - Deepfake detection, forensics 0

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
Depends on each individual skill
Tokens pro Aufruf
Varies per skill
Kosten in €
Free catalog; individual skills may require API keys
Tipp
Read each skill's README for its own cost section before installing many.

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: No credentials at the catalog level. Each skill declares its own.
Datenabfluss: Determined per skill — audit before running any that touch external APIs.

Fehlerbehebung

Häufige Fehler und Lösungen

Skill from the catalog isn't discovered by Claude Code

Each skill must sit at ~/.claude/skills/<name>/SKILL.md. If you cloned the whole repo, the SKILL.md files are nested — symlink each one up.

Prüfen: find ~/.claude/skills -name SKILL.md -maxdepth 3
Conflicting skills with same trigger description

Edit the description frontmatter in one of them to be more specific.

Alternativen

awesome-llm-skills vs. andere

AlternativeWann stattdessenKompromiss
agent-skills-cli-skillYou want programmatic install across multiple toolsRequires CLI setup
marketplace-skillYou want security-audited skillsSmaller catalog

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen