This skill should be used when the user wants to "create a skill", "add a skill", "make a new skill", or needs guidance on skill structure for Claude Code plugins.
/plugin marketplace add wonjiko/claude-toymarket/plugin install matryoshka-plugin@claude-toymarketThis skill inherits all available tools. When active, it can use any tool Claude has access to.
새로운 Claude Code skill을 생성하는 skill.
Skill은 Claude의 특정 도메인 지식과 워크플로우를 확장하는 모듈.
~/.claude/plugins/marketplaces/claude-plugins-official/plugins/*/skills/ 에서 기존 skill 예시 확인skills/[skill-name]/SKILL.md 생성skill-name/
├── SKILL.md # 필수 - 메인 skill 파일
├── scripts/ # 선택 - 실행 스크립트
├── references/ # 선택 - 참조 문서
└── assets/ # 선택 - 템플릿, 이미지 등
---
name: [Skill Name]
description: This skill should be used when [트리거 조건]...
version: 0.1.0
---
# [Skill Name]
[상세 설명]
## [핵심 섹션들]
[도메인 지식, 워크플로우, 가이드라인 등]
| 필드 | 설명 |
|---|---|
| name | skill 이름 |
| description | 트리거 조건 ("This skill should be used when...") |
| version | 버전 |
Skill은 3단계로 로딩됨:
SKILL.md는 간결하게 유지하고, 상세 내용은 references/에 분리.