Skip to main content
ClaudeWave
Skill1.3k repo starsupdated today

clawhub

ClawHub CLI manages agent skills through the clawhub.com registry, enabling search, installation, updates, and publishing of skill packages. Use this skill when you need to discover available agent skills, install or upgrade them to specific versions, synchronize your local skill collection, or publish new skills to the shared repository.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/trpc-group/trpc-agent-go /tmp/clawhub && cp -r /tmp/clawhub/openclaw/skills/clawhub ~/.claude/skills/clawhub
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# ClawHub CLI

Install

```bash
npm i -g clawhub
```

Auth (publish)

```bash
clawhub login
clawhub whoami
```

Search

```bash
clawhub search "postgres backups"
```

Install

```bash
clawhub install my-skill
clawhub install my-skill --version 1.2.3
```

Update (hash-based match + upgrade)

```bash
clawhub update my-skill
clawhub update my-skill --version 1.2.3
clawhub update --all
clawhub update my-skill --force
clawhub update --all --no-input --force
```

List

```bash
clawhub list
```

Publish

```bash
clawhub 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