ソース情報
- リポジトリ
- Rawknee-69/Beta-Claw
- ソースの最終更新活動
- 2026年3月9日 11:54
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Rawknee-69/Beta-Claw --skill clawhubコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
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.