skills/clawhub/SKILL.md
Browse ClawHub for skills, download them, and auto-convert to betaclaw format.
npx skillsauth add Rawknee-69/Beta-Claw clawhubInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
development
Search the web and summarize results
development
Send messages via Telegram Bot API
data-ai
Show system health, active models, channels, and skills
tools
Full betaclaw installation and onboarding wizard