/ 디렉터리 / 플레이그라운드 / Anthropic Skills (Official)
● 공식 anthropics ⚡ 바로 사용

Anthropic Skills (Official)

제작: anthropics · anthropics/skills

Anthropic의 공식 레퍼런스 스킬 컬렉션 — SKILL.md 형식과 모범 사례를 위한 표준 예시.

anthropics/skills는 SKILL.md 형식의 공식 레퍼런스 레포입니다. 표준 예시(document-handling, web-design, slash-creator 등), 스킬 구조를 위한 레퍼런스 패턴, 모범 사례 템플릿을 포함합니다. 자신만의 스킬을 구축할 때 이것을 정답으로 취급하세요.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

준비됨

설치

클라이언트 선택

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

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

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "anthropic-skills-official": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/anthropics/skills",
        "~/.claude/skills/anthropic"
      ],
      "_inferred": true
    }
  }
}

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

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

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

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "anthropic-skills-official": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/anthropics/skills",
        "~/.claude/skills/anthropic"
      ],
      "_inferred": true
    }
  }
}

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

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

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

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

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

claude mcp add anthropic-skills-official -- git clone https://github.com/anthropics/skills ~/.claude/skills/anthropic

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

사용 사례

실전 활용법: Anthropic Skills (Official)

표준 예시를 읽어 SKILL.md 형식 배우기

👤 첫 번째 스킬을 작성하려는 개발자 ⏱ ~30 min beginner

언제 쓸까: 추측이 아닌 완성도 높은 예시를 원할 때.

흐름
  1. 레퍼런스 스킬 선택
    Use anthropics/skills. Show me the document-handling skill in full. Walk me through its structure.✓ 복사됨
    → SKILL.md 필드 설명 — name, description, instructions, resources
  2. 내 도메인에 매핑
    Adapt the structure to my domain (e.g. database-migrations). Show me the SKILL.md skeleton.✓ 복사됨
    → 도메인에 매핑된 스켈레톤
  3. 트리거 테스트
    Add the new skill to ~/.claude/skills. Verify it triggers on the right prompts.✓ 복사됨
    → 스킬이 올바르게 활성화됨

결과: Anthropic이 권장하는 방식으로 구조화된 첫 번째 스킬.

함정
  • 모호한 설명 = 거짓 트리거 — 트리거 신호에 특화된 설명 작성; 적을수록 좋음

PDF/DOCX 작업에 Anthropic의 document-handling 스킬 사용

👤 문서 워크플로우가 있는 모든 사람 ⏱ ~15 min beginner

언제 쓸까: 커뮤니티 포크가 아닌 Anthropic이 유지 관리하는 스킬을 원할 때.

흐름
  1. 설치
    Clone anthropics/skills into ~/.claude/skills/anthropic.✓ 복사됨
    → 스킬 발견 가능
  2. 자연스럽게 트리거
    I have a 200-page PDF I need to summarize and extract tables from. Help.✓ 복사됨
    → doc-handling 스킬이 구조화된 접근법으로 시작

결과: 공식 스킬로 처리된 문서 워크플로우.

함께 쓰기: markitdown-mcp

내부 팀 스킬을 위한 템플릿으로 사용

👤 AI 워크플로우를 표준화하는 플랫폼/DX 팀 ⏱ ~60 min intermediate

언제 쓸까: 팀 모두가 같은 방식으로 스킬을 작성하게 하고 싶을 때.

흐름
  1. 포크 및 커스터마이즈
    Fork anthropics/skills. Add an internal skill following the same structure for our deploy process.✓ 복사됨
    → 스타일이 일치하는 새 스킬이 있는 포크된 레포
  2. 배포
    Document the install path so the team can clone uniformly.✓ 복사됨
    → 내부 문서 준비

결과: 공식 표준에 뿌리를 둔 조직의 스킬 표준.

조합

다른 MCP와 조합해 10배 효율

anthropic-skills-official + markitdown-mcp

종단간 문서를 위한 doc-handling 스킬 + MarkItDown MCP

Use the doc-handling skill from anthropics/skills, with markitdown MCP to convert input PDFs.✓ 복사됨
anthropic-skills-official + wshobson-skills-skill

공식 + 커뮤니티 스킬 적층

Anthropics for baseline, wshobson for breadth.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
(reference skill bundle) trigger via natural language 프롬프트가 설명과 일치할 때 Claude가 자동 트리거 0

비용 및 제한

운영 비용

API 쿼터
해당 없음
호출당 토큰
스킬은 트리거 시 로드됨; 유휴 비용 없음
금액
무료 (Apache 2.0)
팀이 실제로 필요한 스킬만 사용; 트리거 표면을 깔끔하게 유지하기 위해 미사용 스킬 제거

보안

권한, 시크릿, 파급범위

최소 스코프: filesystem-read
자격 증명 저장: 없음
데이터 외부 송신: 없음

문제 해결

자주 발생하는 오류와 해결

스킬이 커스텀 스킬과 충돌

스킬 이름은 고유해야 함; 커스텀 스킬의 이름을 변경하거나 네임스페이스 지정

스킬이 트리거되지 않음

설명이 중요 — Claude가 언제 로드할지 결정하는 방법. 사용자 의도 단어와 일치시키기.

대안

Anthropic Skills (Official) 다른 것과 비교

대안언제 쓰나단점/장점
wshobson/skills더 넓은 커뮤니티 유지 커버리지를 원할 때덜 표준적; 더 다양함
obra/superpowers강한 의견을 가진 더 작은 큐레이션된 세트다른 큐레이터의 관점

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

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