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

awesome-claude-code

제작: Hesreallyhim · Hesreallyhim/awesome-claude-code

Claude Code를 위한 가장 많은 스타의 awesome 목록 — 슬래시 명령, 에이전트, 스킬, 훅, MCP, 모두 하나의 큐레이션된 인덱스.

Hesreallyhim/awesome-claude-code는 Claude Code 생태계의 중앙 카탈로그입니다. 슬래시 명령, 서브에이전트, 스킬, 훅, 커스텀 MCP, 상태 표시줄, 설정 예시를 찾을 수 있습니다. 커뮤니티 PR로 거의 매일 업데이트됩니다. gitmcp를 통해 사용하면 Claude가 전체 목록을 컨텍스트에 덤프하지 않고 인덱스를 검색할 수 있습니다.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

준비됨

설치

클라이언트 선택

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

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

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

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

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

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

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

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

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

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

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

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

claude mcp add awesome-claude-code-skill -- git clone https://github.com/Hesreallyhim/awesome-claude-code ~/awesome-claude-code

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

사용 사례

실전 활용법: awesome-claude-code

기본값을 넘어 Claude Code로 무엇이 가능한지 발견하기

👤 신규 Claude Code 사용자 ⏱ ~30 min beginner

언제 쓸까: 방금 Claude Code를 설치하고 무엇을 추가해야 하는지 알고 싶을 때.

흐름
  1. 카테고리별 탐색
    Use awesome-claude-code. List categories and 3 top picks per category by stars.✓ 복사됨
    → 간결한 생태계 개요
  2. 스타터 팩 선택
    What 5-item starter pack gives me the highest leverage today?✓ 복사됨
    → 큐레이션된 스타터 추천
  3. 설치
    Install those 5. Tell me where each lives and what it does.✓ 복사됨
    → 설정된 로컬 환경

결과: 큐레이션된 커뮤니티 도구 기반이 있는 Claude Code.

직접 만들기 전에 특정 틈새를 위한 스킬 찾기

👤 스킬을 작성하려는 개발자 ⏱ ~15 min beginner

언제 쓸까: 스킬이 필요하다고 생각하지만 이미 존재할 수 있을 때.

흐름
  1. 검색
    Search awesome-claude-code for 'database migration' skills.✓ 복사됨
    → 레포 링크가 있는 히트
  2. 비교
    Compare the top 2 — which is more current and trustworthy?✓ 복사됨
    → 후보별 노트

결과: 기존 옵션에서 선택된 스킬, 또는 틈새가 열려있다는 확인.

월별 생태계 트렌드 추적

👤 기술 리드와 콘텐츠 제작자 ⏱ ~20 min intermediate

언제 쓸까: AI 도구에 대해 글을 쓰거나 회사 AI 전략을 수립할 때.

흐름
  1. 지난달과 비교
    What's been added since last month? Which categories are growing fastest?✓ 복사됨
    → 트렌드 분석

결과: Claude Code 커뮤니티가 향하는 방향에 대한 데이터 기반 관점.

조합

다른 MCP와 조합해 10배 효율

awesome-claude-code-skill + awesome-mcp-servers-appcypher

두 생태계를 위한 두 가지 awesome 목록 (Claude Code + MCP)

Find slash commands in awesome-claude-code; find matching MCP in appcypher's list.✓ 복사됨
awesome-claude-code-skill + git-mcp-idosal

발견 즉시 후보 레포 검사

From awesome-claude-code, pick top hook; pull repo via gitmcp to read source.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
search_documentation query 대상 조회 1 GitHub API call
fetch_documentation () 전체 카탈로그 탐색 1 API call

비용 및 제한

운영 비용

API 쿼터
모든 gitmcp 사용과 동일한 GitHub 제한
호출당 토큰
비용을 낮추기 위해 fetch보다 search 사용
금액
무료
전체 README를 덤프하는 대신 특정 카테고리 섹션만 고정

보안

권한, 시크릿, 파급범위

자격 증명 저장: GITHUB_TOKEN 선택적
데이터 외부 송신: gitmcp.io

문제 해결

자주 발생하는 오류와 해결

오래된 항목 링크

목록은 커뮤니티 유지; 채택 전 각 레포의 마지막 커밋 확인

검색이 퍼지 매칭을 놓침

여러 동의어 시도; 검색은 정확한 부분 문자열

대안

awesome-claude-code 다른 것과 비교

대안언제 쓰나단점/장점
appcypher/awesome-mcp-serversMCP 서버를 특별히 원할 때다른 범위 (MCP, Claude Code 표면이 아님)
FreeMCPLab큐레이션된 가이드와 라이브 데모를 원할 때다른 형태 — 플레이그라운드 vs 인덱스

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

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