C.W.K.
Stream
Lesson 01 of 07 · published

Skill 이 뭔지

~14 min · skills, skill-md, open-standard, portable

Level 0🌱 입문자
0 XP0/70 lessons0/11 achievements
0/120 XP to next level120 XP to go0% complete

Claude 가 정밀해야 할 때 읽는 폴더

Skill 이 SKILL.md (instruction + frontmatter), 옵션 보조 파일 (template, 체크리스트, schema), 옵션 스크립트 가진 폴더. Host AI 가 관련 시 동적 로드 — /skill-name 으로 명시적, description 기반 자동, Skill config 별 always-on. 모든 호환 도구에서 같은 모양.

왜 존재: prompt drift. 같은 작업을 다섯 가지로 물어보면 다섯 가지 output. Skill 이 canonical instruction 을 대화 메모리 밖, 버전 관리 파일로 옮겨. 에이전트가 매번 같은 instruction 읽고; output 이 user, 세션, 머신 간 일관.

Skill 이 open Agent Skills standard 따라. 잘 작성된 Skill 이 Claude Code, Cowork, spec 구현하는 third-party 도구에서 작동 — 한 번 작성, 에이전트 풍경 가로질러 배포. 그 portability 가 standard 존재 이유 전부.

Code

Minimum viable Skill·markdown
---
name: pr-summary
description: |
  Summarize a GitHub pull request: changed files, intent, risks.
invocation: explicit
arguments:
  - name: pr_url
    required: true
---

You are reviewing a GitHub pull request at {{pr_url}}.

Produce:
1. One-sentence intent ("what does this PR want to change?")
2. Files changed, grouped by purpose
3. Risk callouts (auth, payments, schema, public API)
4. Two questions you'd ask the author
Skill folder layout·text
.claude/skills/pr-summary/
├── SKILL.md           ← frontmatter + body
├── templates/
│   └── summary.md     ← output template
└── checklists/
    └── risks.md       ← reference loaded via paths:

External links

Exercise

재입력하는 prompt 1개 골라. Skill 로 변환 — frontmatter (description + arguments), body (canonical instruction). 다른 input 두 개에 돌려. 일관성 dividend 적어.

Progress

Progress is local-only — sign in to sync across devices.
이 페이지에서 버그를 발견하셨거나 피드백이 있으세요?문제 신고

댓글 0

🔔 답글 알림 (로그인 필요)
로그인댓글을 남기려면 로그인해 주세요.

아직 댓글이 없어요. 첫 댓글을 남겨보세요.