/ 디렉터리 / 플레이그라운드 / awesome-llm-skills
● 커뮤니티 Prat011 ⚡ 바로 사용

awesome-llm-skills

제작: 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.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

awesome-llm-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

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

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

~/.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는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

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

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "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
    }
  }
}

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

~/.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는 맵이 아닌 서버 오브젝트 배열 사용.

~/.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"
        ]
      }
    }
  }
}

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

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

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

사용 사례

실전 활용법: 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

언제 쓸까: The repo has 50+ skills but you only want the 3 that fit your workflow.

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

결과: Lean install with only the skills you use.

함정
  • Skills reference each other across categories — Read each SKILL.md's prerequisites; some assume a sibling skill exists. Add those too.
함께 쓰기: agent-skills-cli-skill

Browse skills by category to discover new workflows

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

언제 쓸까: You know your domain (marketing, security, etc.) but don't know which skills exist for it.

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

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

함정
  • 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

언제 쓸까: You've built something reusable and want to reach other Claude Code users.

사전 조건
  • A working skill following SKILL.md conventions — Use claude-code-skill-factory-skill to scaffold if starting fresh
흐름
  1. Match the repo's category layout
    Which category in awesome-llm-skills best fits a skill that audits Rails migrations?✓ 복사됨
    → 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.✓ 복사됨
    → PR opens with README updated

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

조합

다른 MCP와 조합해 10배 효율

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.✓ 복사됨

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.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
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

비용 및 제한

운영 비용

API 쿼터
Depends on each individual skill
호출당 토큰
Varies per skill
금액
Free catalog; individual skills may require API keys
Read each skill's README for its own cost section before installing many.

보안

권한, 시크릿, 파급범위

자격 증명 저장: No credentials at the catalog level. Each skill declares its own.
데이터 외부 송신: Determined per skill — audit before running any that touch external APIs.

문제 해결

자주 발생하는 오류와 해결

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.

확인: 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.

대안

awesome-llm-skills 다른 것과 비교

대안언제 쓰나단점/장점
agent-skills-cli-skillYou want programmatic install across multiple toolsRequires CLI setup
marketplace-skillYou want security-audited skillsSmaller catalog

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

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