Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
OpenClaw의 스킬 생태계 허브
skills/ ├── weather-alert/ │ ├── SKILL.md # 스킬 정의 (AI가 읽는 지시서) │ ├── package.json # 메타데이터 │ └── scripts/ # 실행 스크립트 ├── email-checker/ │ ├── SKILL.md │ └── ... └── ...
# 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