Install
openclaw skills install clawhub-skill-publisherTrusted publish assistant for bot and agent teams. Publishes and syncs local skills to ClawHub with non-browser token login, preflight safety checks, and repeatable release flow. Use when users ask to upload, publish, sync, or release skills to clawhub.ai.
openclaw skills install clawhub-skill-publisherCLAWHUB_TOKEN from env or .env.clawhub CLI is installed.CLAWHUB_TOKEN~/.openclaw/.envSKILL.md (or skill.md).Run:
bash scripts/publish_skill.sh \
--path "$HOME/.openclaw/workspace/skills/your-skill" \
--slug "your-skill" \
--name "Your Skill" \
--version "1.0.0" \
--changelog "Initial publish" \
--tags "latest"
Notes:
--slug, --name, and --version are optional. The script tries to infer them from package.json and _meta.json.--registry https://clawhub.ai or https://www.clawhub.ai.--dry-run to only print the final command.--allow-cjk only when your registry policy allows non-English text.Run:
bash scripts/sync_skills.sh \
--root "$HOME/.openclaw/workspace/skills" \
--bump patch \
--changelog "Automated sync" \
--tags "latest"
Notes:
clawhub sync --all for non-interactive upload.--dry-run to preview without uploading..env or token files.scripts/publish_skill.shscripts/sync_skills.sh