用 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.