/ Annuaire / Playground / awesome-llm-skills
● Communauté Prat011 ⚡ Instantané

awesome-llm-skills

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

Pourquoi l'utiliser

Fonctionnalités clés

Démo en direct

Aperçu en pratique

awesome-llm-skill.replay ▶ prêt
0/0

Installer

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

Ouvrez Claude Desktop → Settings → Developer → Edit Config. Redémarrez après avoir enregistré.

~/.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 utilise le même schéma mcpServers que Claude Desktop. La config projet l'emporte sur la 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
    }
  }
}

Cliquez sur l'icône MCP Servers dans la barre latérale Cline, puis "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
    }
  }
}

Même format que Claude Desktop. Redémarrez Windsurf pour appliquer.

~/.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 utilise un tableau d'objets serveur plutôt qu'une 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"
        ]
      }
    }
  }
}

Ajoutez dans context_servers. Zed recharge à chaud à la sauvegarde.

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

Une seule ligne. Vérifiez avec claude mcp list. Supprimez avec claude mcp remove.

Cas d'usage

Usages concrets : 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

Quand l'utiliser : The repo has 50+ skills but you only want the 3 that fit your workflow.

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

Résultat : Lean install with only the skills you use.

Pièges
  • Skills reference each other across categories — Read each SKILL.md's prerequisites; some assume a sibling skill exists. Add those too.
Combiner avec : agent-skills-cli-skill

Browse skills by category to discover new workflows

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

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

Déroulement
  1. Ask Claude to summarize a category
    Open awesome-llm-skills, list every skill under 'Business & Marketing' with a one-line what-it-does.✓ Copié
    → 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.✓ Copié
    → Step-by-step install + first run

Résultat : A working shortlist of category-matched skills you've actually tried.

Pièges
  • 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

Quand l'utiliser : You've built something reusable and want to reach other Claude Code users.

Prérequis
  • A working skill following SKILL.md conventions — Use claude-code-skill-factory-skill to scaffold if starting fresh
Déroulement
  1. Match the repo's category layout
    Which category in awesome-llm-skills best fits a skill that audits Rails migrations?✓ Copié
    → 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.✓ Copié
    → PR opens with README updated

Résultat : Skill merged into the catalog with its own category row.

Combinaisons

Associez-le à d'autres MCPs pour un effet X10

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.✓ Copié

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.✓ Copié

Outils

Ce que ce MCP expose

OutilEntréesQuand appelerCoût
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

Coût et limites

Coût d'exécution

Quota d'API
Depends on each individual skill
Tokens par appel
Varies per skill
Monétaire
Free catalog; individual skills may require API keys
Astuce
Read each skill's README for its own cost section before installing many.

Sécurité

Permissions, secrets, portée

Stockage des identifiants : No credentials at the catalog level. Each skill declares its own.
Sortie de données : Determined per skill — audit before running any that touch external APIs.

Dépannage

Erreurs courantes et correctifs

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.

Vérifier : 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.

Alternatives

awesome-llm-skills vs autres

AlternativeQuand l'utiliserCompromis
agent-skills-cli-skillYou want programmatic install across multiple toolsRequires CLI setup
marketplace-skillYou want security-audited skillsSmaller catalog

Plus

Ressources

📖 Lire le README officiel sur GitHub

🐙 Voir les issues ouvertes

🔍 Parcourir les 400+ serveurs MCP et Skills