Claude Agent Skill · by Steipete

Clawhub

Install Clawhub skill for Claude Code from steipete/clawdis.

Install
Terminal · npx
$npx skills add https://github.com/steipete/clawdis --skill clawhub
Works with Paperclip

How Clawhub fits into a Paperclip company.

Clawhub drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

S
SaaS FactoryPaired

Pre-configured AI company — 18 agents, 18 skills, one-time purchase.

$27$59
Explore pack
Source file
SKILL.md77 lines
Expand
---name: clawhubdescription: Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawhub CLI.metadata:  {    "openclaw":      {        "requires": { "bins": ["clawhub"] },        "install":          [            {              "id": "node",              "kind": "node",              "package": "clawhub",              "bins": ["clawhub"],              "label": "Install ClawHub CLI (npm)",            },          ],      },  }--- # ClawHub CLI Install ```bashnpm i -g clawhub``` Auth (publish) ```bashclawhub loginclawhub whoami``` Search ```bashclawhub search "postgres backups"``` Install ```bashclawhub install my-skillclawhub install my-skill --version 1.2.3``` Update (hash-based match + upgrade) ```bashclawhub update my-skillclawhub update my-skill --version 1.2.3clawhub update --allclawhub update my-skill --forceclawhub update --all --no-input --force``` List ```bashclawhub list``` Publish ```bashclawhub publish ./my-skill --slug my-skill --name "My Skill" --version 1.2.0 --changelog "Fixes + docs"``` Notes - Default registry: https://clawhub.com (override with CLAWHUB_REGISTRY or --registry)- Default workdir: cwd (falls back to OpenClaw workspace); install dir: ./skills (override with --workdir / --dir / CLAWHUB_WORKDIR)- Update command hashes local files, resolves matching version, and upgrades to latest unless --version is set