repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | --- |
| #2 | name: clawdhub |
| #3 | description: Use the ClawdHub CLI to search, install, update, and publish agent skills from clawdhub.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 clawdhub CLI. |
| #4 | metadata: {"clawdbot":{"requires":{"bins":["clawdhub"]},"install":[{"id":"node","kind":"node","package":"clawdhub","bins":["clawdhub"],"label":"Install ClawdHub CLI (npm)"}]}} |
| #5 | --- |
| #6 | |
| #7 | # ClawdHub CLI |
| #8 | |
| #9 | Install |
| #10 | ```bash |
| #11 | npm i -g clawdhub |
| #12 | ``` |
| #13 | |
| #14 | Auth (publish) |
| #15 | ```bash |
| #16 | clawdhub login |
| #17 | clawdhub whoami |
| #18 | ``` |
| #19 | |
| #20 | Search |
| #21 | ```bash |
| #22 | clawdhub search "postgres backups" |
| #23 | ``` |
| #24 | |
| #25 | Install |
| #26 | ```bash |
| #27 | clawdhub install my-skill |
| #28 | clawdhub install my-skill --version 1.2.3 |
| #29 | ``` |
| #30 | |
| #31 | Update (hash-based match + upgrade) |
| #32 | ```bash |
| #33 | clawdhub update my-skill |
| #34 | clawdhub update my-skill --version 1.2.3 |
| #35 | clawdhub update --all |
| #36 | clawdhub update my-skill --force |
| #37 | clawdhub update --all --no-input --force |
| #38 | ``` |
| #39 | |
| #40 | List |
| #41 | ```bash |
| #42 | clawdhub list |
| #43 | ``` |
| #44 | |
| #45 | Publish |
| #46 | ```bash |
| #47 | clawdhub publish ./my-skill --slug my-skill --name "My Skill" --version 1.2.0 --changelog "Fixes + docs" |
| #48 | ``` |
| #49 | |
| #50 | Notes |
| #51 | - Default registry: https://clawdhub.com (override with CLAWDHUB_REGISTRY or --registry) |
| #52 | - Default workdir: cwd (falls back to Clawdbot workspace); install dir: ./skills (override with --workdir / --dir / CLAWDHUB_WORKDIR) |
| #53 | - Update command hashes local files, resolves matching version, and upgrades to latest unless --version is set |
| #54 |