> ## 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에서 스킬을 설치하고 관리하는 방법

## CLI로 설치

```bash theme={null}
# 스킬 설치
openclaw skills install weather-alert

# 특정 버전
openclaw skills install email-checker@1.2.0

# 설치된 스킬 목록
openclaw skills list

# 스킬 업데이트
openclaw skills update weather-alert

# 스킬 제거
openclaw skills remove weather-alert
```

## 대화로 설치

AI에게 직접 요청할 수도 있습니다:

```
"날씨 알림 스킬 설치해줘"
"이메일 체크 스킬 있어? 설치해줘"
```

<Steps>
  <Step title="스킬 검색">
    AI가 ClawHub에서 관련 스킬을 찾습니다.
  </Step>

  <Step title="확인">
    스킬 정보를 보여주고 설치 여부를 물어봅니다.
  </Step>

  <Step title="설치">
    `skills/` 폴더에 다운로드합니다.
  </Step>

  <Step title="설정">
    필요한 API 키나 설정을 안내합니다.
  </Step>
</Steps>

## 설치 후 설정

대부분의 스킬은 추가 설정이 필요합니다:

```markdown theme={null}
# TOOLS.md에 추가

## Weather Alert
- API Key: YOUR_OPENWEATHER_KEY
- Location: Seoul, KR
- Alert threshold: rain > 50%
```

<Warning>
  스킬이 외부 API를 사용하는 경우 해당 API의 키가 필요합니다.
  SKILL.md의 설정 섹션을 반드시 확인하세요.
</Warning>

## 스킬 충돌 해결

여러 스킬이 같은 기능을 제공할 때:

```bash theme={null}
# 활성 스킬 우선순위 확인
openclaw skills list --priority

# 특정 스킬 비활성화
openclaw skills disable old-weather-skill
```

<Tip>
  AI에게 "설치된 스킬 뭐 있어?"라고 물어보면 목록과 상태를 알려줍니다.
</Tip>
