clawhub-deployer — Skill Publishing Assistant
/install clawhub-deployer
Publish Skill to ClawHub
Validate, prepare, and publish a skill to the ClawHub registry.
When to Trigger
- User asks to publish / release / deploy a skill to ClawHub
- User mentions
clawhub publishorpublish skill
Workflow
Step 1: Validate SKILL.md
Check that the target folder contains a valid SKILL.md:
ls TARGET_DIR/SKILL.md
head -20 TARGET_DIR/SKILL.md
Required frontmatter fields:
name— lowercase + hyphens, must match^[a-z0-9][a-z0-9-]*$descriptionversion— semver format
Recommended fields for cross-platform compatibility:
allowed-tools— for Claude Codemetadata.openclaw.requires.env— required environment variablesmetadata.openclaw.requires.bins— required binaries
Step 2: Check files
ClawHub only accepts text files: .md, .py, .txt, .json, .yaml, .toml, .js, .ts, .svg.
Must exclude:
- Images:
*.png,*.jpg,*.jpeg,*.gif,*.ico - Git:
.git/,.gitignore - License:
LICENSE(ClawHub enforces MIT-0 for all skills) - Environment:
.env,.DS_Store
Step 3: Prepare publish folder
Create a folder with only text files:
mkdir -p TARGET_DIR/clawhub-publish
cp TARGET_DIR/SKILL.md TARGET_DIR/*.py TARGET_DIR/*.md TARGET_DIR/*.txt clawhub-publish/
cp -r TARGET_DIR/docs clawhub-publish/docs 2>/dev/null || true
Add clawhub-publish/ to .gitignore to keep the GitHub repo clean.
Step 4: Login
npx clawhub@latest whoami 2>&1 || npx clawhub@latest login
Step 5: Publish
npx clawhub@latest publish TARGET_DIR/clawhub-publish/ \
--slug SLUG \
--name "DISPLAY_NAME" \
--version VERSION \
--changelog "CHANGELOG" \
--tags latest
SLUG: globally unique, lowercase + hyphensDISPLAY_NAME: human-readable name, can include spacesVERSION: semver (e.g.1.0.0)CHANGELOG: useInitial release.for first publish
Step 6: Verify
npx clawhub@latest inspect SLUG
Error Handling
| Error | Fix |
|---|---|
Slug is required |
Add --slug parameter |
Taken |
Choose a different slug |
GitHub API rate limit |
Wait for reset (usually 10–60 seconds), then retry |
Remove non-text files |
Go back to Step 3, ensure only text files are included |
SKILL.md is required |
Confirm SKILL.md exists inside the publish folder |
SKILL.md Template
---
name: my-skill
description: One-line description of what this skill does.
version: 1.0.0
allowed-tools: Bash, Write, Read
metadata:
openclaw:
requires:
env: [MY_API_KEY]
bins: [python3]
primaryEnv: MY_API_KEY
emoji: "🔧"
homepage: https://github.com/USER/REPO
os: [macos, linux, windows]
---
# Skill Title
What this skill does.
## When to Trigger
- Trigger condition 1
- Trigger condition 2
## Usage
(Instructions for the AI on how to invoke the skill)
## Environment
(How to obtain and configure required API keys)
## Errors
(Common errors and fixes)
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install clawhub-deployer - After installation, invoke the skill by name or use
/clawhub-deployer - Provide required inputs per the skill's parameter spec and get structured output
What is clawhub-deployer — Skill Publishing Assistant?
Publish a skill to ClawHub registry. Use when user asks to publish, release, or deploy a skill to ClawHub. It is an AI Agent Skill for Claude Code / OpenClaw, with 97 downloads so far.
How do I install clawhub-deployer — Skill Publishing Assistant?
Run "/install clawhub-deployer" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is clawhub-deployer — Skill Publishing Assistant free?
Yes, clawhub-deployer — Skill Publishing Assistant is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does clawhub-deployer — Skill Publishing Assistant support?
clawhub-deployer — Skill Publishing Assistant is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created clawhub-deployer — Skill Publishing Assistant?
It is built and maintained by Futurize Rush (@futurizerush); the current version is v1.0.0.