π¦ ClawHub
Hermes Skill Publishing Guide
by @xuxuclassmate
Guide to publishing and sharing Hermes skills through ClawHub, including safe login practices, release hygiene, and security scan preparation.
TERMINAL
clawhub install skill-publishingπ About This Skill
name: skill-publishing description: Guide to publishing and sharing Hermes skills through ClawHub, including safe login practices, release hygiene, and security scan preparation. tags: [publish, clawhub, github, skills, community, devops] version: 1.1.1
Hermes Skill Publishing Guide
When to use
Safe login
Prefer reading the token privately instead of pasting it directly into a shared command line history.
read -s CLAWHUB_TOKEN
clawhub login --token "$CLAWHUB_TOKEN" --no-browser
unset CLAWHUB_TOKEN
Publish a skill
clawhub publish /path/to/skill-folder \
--slug "skill-slug" \
--name "Display Name" \
--version "1.0.0" \
--changelog "What changed in this release" \
--tags "latest,tag1,tag2"
Useful commands
clawhub whoamiclawhub inspect clawhub search clawhub delete clawhub skill merge Security scan checklist
Before publishing: