Skip to main content
ClaudeWave
Skill5.2k repo starsupdated today

clawhub

ClawHub CLI manages agent skills through a command-line interface that enables searching the clawhub.com registry, installing skills with version control, updating installed skills to latest or specific versions, and publishing new or modified skill folders. Use this skill when you need to discover available agent capabilities, fetch and maintain skill dependencies programmatically, or distribute custom skills to the ClawHub registry.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/the-open-agent/openagent /tmp/clawhub && cp -r /tmp/clawhub/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