vassili-clawhub-cli
v1.0.4Help developers manage OpenClaw skills with the ClawHub CLI. Use when publishing, inspecting, installing, updating, syncing, or troubleshooting ClawHub skills. Also covers auth, workdir behavior, and exact command templates.
Installation
ClawHub CLI Assistant
Help developers manage OpenClaw skills with the ClawHub CLI.
Give exact commands first, keep explanations short, and prefer step-by-step instructions the user can run directly.
Quick Start
```bash
clawhub install
ClawHub publishers
OpenClaw users managing local skills
Developers troubleshooting CLI workflows
Quick Reference
Need Command
Search skills clawhub search "query"
Install a skill clawhub install
Publishing a skill to ClawHub
Releasing a new skill version
Inspecting a published skill bundle
Installing a skill
Updating one or more skills
Syncing local skills with the registry
Logging in to ClawHub
Troubleshooting ClawHub CLI commands
When Not to Use Do not use this skill for:
Generic Git questions
Unrelated programming tasks
OpenClaw runtime configuration outside skill management
Dashboard walkthroughs unless explicitly requested
Core Rules
text
1. Provide exact CLI commands first.
2. Prefer the shortest correct workflow.
3. Use official command forms only.
4. Mention required flags only when needed.
5. Distinguish local workspace actions from registry actions.
6. Suggest login early if auth may be the issue.
7. Do not invent unsupported commands or flags.
Common Commands
bash
clawhub search "calendar"
clawhub install
bash clawhub publish . --slug my-skill --name "My Skill" --version 1.0.0 --changelog "Initial release" --tags latest Release a New Version
bash clawhub publish . --slug my-skill --name "My Skill" --version 1.1.0 --changelog "Improved workflow and documentation" --tags latest Install
bash
clawhub install
bash
clawhub update
bash clawhub sync --dry-run clawhub sync --all clawhub sync --all --bump patch --changelog "Maintenance update" --tags latest Troubleshooting Auth
bash
clawhub whoami
clawhub login
clawhub login --token
text - Ensure SKILL.md exists - Ensure it is in the root of the skill folder - Ensure the publish path points to that folder Wrong Working Directory
bash clawhub --workdir /path/to/project publish ./my-skill Local Files Do Not Match Published Version
bash
clawhub update
Output Template text
Command
[Exact command to run]
What It Does
[One short explanation]
Notes
- prerequisite 1
- prerequisite 2
Next Step
[What to run next] Tips Use clawhub whoami before troubleshooting auth or publish issues.
Use clawhub sync --dry-run before bulk publishing.
Prefer explicit --slug, --name, and --version for releases.
Use --workdir when the current directory is not the correct project root.
Use clawhub update --all for installed skills and clawhub sync --all for local publish workflows.
Author Vassiliy Lakhonin