> ## Documentation Index
> Fetch the complete documentation index at: https://oc-guide.openclaw-korea.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ClawHub — 스킬 마켓플레이스

> OpenClaw의 스킬 생태계 허브

ClawHub은 OpenClaw의 **스킬 마켓플레이스**입니다.
커뮤니티에서 만든 스킬을 설치하고, 자신의 스킬을 공유할 수 있습니다.

## 스킬이란?

스킬은 AI에게 **새로운 능력**을 부여하는 확장 모듈입니다.

<CardGroup cols={2}>
  <Card title="도구 스킬" icon="wrench">
    이메일 전송, 캘린더 접근, 날씨 조회 등 새로운 도구를 추가합니다.
  </Card>

  <Card title="지식 스킬" icon="book">
    특정 도메인의 전문 지식과 규칙을 AI에게 가르칩니다.
  </Card>

  <Card title="워크플로우 스킬" icon="diagram-project">
    복잡한 작업을 자동화하는 절차를 정의합니다.
  </Card>

  <Card title="커넥터 스킬" icon="plug">
    외부 서비스(Notion, Slack, GitHub 등)와 연결합니다.
  </Card>
</CardGroup>

## 스킬 구조

```
skills/
├── weather-alert/
│   ├── SKILL.md       # 스킬 정의 (AI가 읽는 지시서)
│   ├── package.json   # 메타데이터
│   └── scripts/       # 실행 스크립트
├── email-checker/
│   ├── SKILL.md
│   └── ...
└── ...
```

## 스킬의 핵심: SKILL.md

````markdown theme={null}
# weather-alert 스킬

## 기능
이 스킬은 날씨 변화를 감지하고 사용자에게 알립니다.

## 사용법
- `날씨 알려줘` → 현재 날씨 조회
- `비 올 때 알려줘` → 강수 알림 설정

## 도구
- `weather_check`: 현재 날씨 조회
- `weather_alert_set`: 알림 설정

## 설정
TOOLS.md에 다음을 추가하세요:
```yaml
weather:
  location: "Seoul, KR"
  apiKey: "YOUR_OPENWEATHER_KEY"
````

````

<Info>
SKILL.md는 AI가 읽는 설명서입니다. AI는 이 파일을 보고
스킬의 기능과 사용법을 이해합니다.
</Info>

## ClawHub 탐색

```bash
# 인기 스킬 검색
openclaw skills search "email"

# 카테고리별 탐색
openclaw skills browse --category automation

# 스킬 상세 정보
openclaw skills info weather-alert
````

<Tip>
  ClawHub의 스킬은 모두 오픈소스입니다.
  설치 전에 SKILL.md와 코드를 검토하는 것이 좋습니다.
</Tip>
