Skill

규칙 파일(Rule)이 항상 로딩되는 프롬프트라면, 스킬은 필요할 때만 로딩되는 프롬프트입니다. description 을 보고 모델이 스스로 "지금 이게 필요하다"고 판단해 그때 본문을 읽습니다.

덕분에 규칙 파일에 다 넣으면 터질 분량(특정 시나리오 전용 절차, 참고 문서, 실행 스크립트)을 컨텍스트를 낭비하지 않고 둘 수 있습니다.

구조

my-awesome-skill/     # .claude/skills/ 아래에 둡니다
├── SKILL.md          # 스킬 정의 문서 (필수)
├── references/       # 참고 자료 및 템플릿
├── scripts/          # 실행 로직
└── assets/           # 이미지, 데이터 파일 등

SKILL.md 하나만 있어도 동작합니다. 나머지는 필요할 때 추가합니다.

SKILL.md 템플릿

---
name: my-skill-name
description: A clear description of what this skill does and when to use it
---

# My Skill Name

[Add your instructions here that Claude will follow when this skill is active]

## Examples

- Example usage 1
- Example usage 2

## Guidelines

- Guideline 1
- Guideline 2

⚠️ description 이 곧 라우팅입니다. 모델은 스킬을 열어보기 전에 description 만 보고 쓸지 말지 정합니다. 여기가 부실하면 아무리 본문을 잘 써도 호출되지 않습니다. "무엇을 하는지" 뿐 아니라 "언제 쓰는지" 를 반드시 적으세요.

리소스 추가

단일 SKILL.md 에 담을 정보가 너무 많은 경우(예: 특정 시나리오에만 적용되는 섹션), 스킬 디렉터리 안에 파일을 추가해 내용을 나눌 수 있습니다. 예를 들어 보충·참조 정보를 담은 REFERENCE.md 를 두고 SKILL.md 에서 가리킵니다.

이렇게 하면 SKILL.md 는 짧게 유지되고, 모델은 정말 필요할 때만 참조 파일을 읽습니다.

실행 스크립트

절차를 글로 설명하는 대신 스크립트로 주면 모델이 매번 다시 구현하지 않아도 됩니다. 결과도 결정적입니다.

#!/usr/bin/env node

// 필요: node 18+ (fetch 내장)
// 실행: node weather.js Seoul

const city = process.argv[2];

if (!city) {
  console.error("사용법: node weather.js <city>");
  process.exit(1);
}

async function getWeather(city) {
  try {
    const res = await fetch(`https://wttr.in/${city}?format=j1`);
    const data = await res.json();

    const current = data.current_condition[0];

    console.log(`📍 도시: ${city}`);
    console.log(`🌡️ 온도: ${current.temp_C}°C`);
    console.log(`💧 습도: ${current.humidity}%`);
    console.log(`🌥️ 날씨: ${current.weatherDesc[0].value}`);
  } catch (err) {
    console.error("에러 발생:", err.message);
  }
}

getWeather(city);

가이드라인

스킬 저장소

추천 스킬

스킬용도
anthropics/skills — frontend-design프론트엔드 디자인
cathrynlavery/diagram-design다이어그램 디자인
Leonxlnx/taste-skill디자인 감각
nextlevelbuilder/ui-ux-pro-max-skillUI/UX
VoltAgent/awesome-design-md디자인 문서
remotion-dev/skills영상 생성
PleasePrompto/notebooklm-skillNotebookLM
obra/superpowers범용 모음
othmanadi/planning-with-files파일 기반 계획
Fission-AI/openspec스펙 주도 개발
garrytan/gstack스택 모음
code-yeongyu/oh-my-openagent에이전트 설정
yizhiyanhua-ai/fireworks-tech-graph기술 그래프
rpamis/comet범용
nutlope/hallmark디자인
vercel-labs/agent-skills — composition-patternsReact 합성 패턴 (boolean prop 남발 대신 compound component)
vercel-labs/agent-skills — web-design-guidelinesVercel Web Interface Guidelines 기준 UI·접근성 감사
mattpocock/skills — improve-codebase-architecture코드베이스 아키텍처 개선 (deep module 관점 리팩터링 RFC)
mattpocock/skills — prototype설계 질문 검증용 일회성 프로토타입
mattpocock/skills — to-spec대화 내용을 스펙(PRD)으로 정리해 이슈 트래커에 발행 (구 to-prd)
mattpocock/skills — to-tickets스펙·계획을 tracer-bullet 티켓으로 분해 (구 to-issues)
browser-use/browser-use브라우저 자동화 (browser-use skill install 로 등록)
DietrichGebert/ponytail최소한의 코드만 작성하도록 강제
iOfficeAI/OfficeCLIWord·Excel·PowerPoint 문서 읽기/편집 (Office 설치 불필요)
emilkowalski/skillsSkills For Designers and Engineers