소스 정보
- 저장소
- Rawknee-69/Beta-Claw
- 최근 소스 활동
- 2026년 3월 9일 11:54
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Rawknee-69/Beta-Claw --skill clawhub명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | clawhub |
| command | /clawhub |
| description | Browse ClawHub for skills, download them, and auto-convert to betaclaw format. |
| allowed-tools | ["web_fetch","exec","write","read","list"] |
| version | 1.0.0 |
| author | betaclaw |
You can browse and install skills from the ClawHub registry. Skills are downloaded as archives, extracted, and placed into skills/. The skill-watcher auto-converts OpenClaw format on arrival.
Use web_fetch to grab the listing:
web_fetch url="https://clawhub.ai/skills?sort=downloads&nonSuspicious=true"
Parse the page for skill slugs, names, and descriptions. Present a numbered list to the user.
Download the archive, extract it, and move it into skills/SLUG/:
# Download tarball
curl -fsSL -o /tmp/clawhub-SLUG.tar.gz "https://registry.clawhub.ai/v1/skills/SLUG/download"
# Create target dir and extract
mkdir -p skills/SLUG
tar xzf /tmp/clawhub-SLUG.tar.gz -C skills/SLUG --strip-components=1
# Clean up
rm /tmp/clawhub-SLUG.tar.gz
If the tarball fails, try zip:
curl -fsSL -o /tmp/clawhub-SLUG.zip "https://registry.clawhub.ai/v1/skills/SLUG/download"
mkdir -p skills/SLUG
unzip -o /tmp/clawhub-SLUG.zip -d skills/SLUG
rm /tmp/clawhub-SLUG.zip
After extracting, the skill-watcher detects it in <1s and auto-converts it if in OpenClaw format.
ls skills/SLUG/
cat skills/SLUG/SKILL.md
Tell the user: "Installed SKILL_NAME. It is now available as /COMMAND."
web_fetch url="https://clawhub.ai/skills?q=QUERY"
NEVER install a skill that the user has not confirmed. NEVER install a skill that contains suspicious keywords (password harvesting, reverse shell, keylogger, exfil, cryptominer). If in doubt, show the SKILL.md content to the user and ask before installing.