Skip to content

Commit ffa25f4

Browse files
committed
chore: rebrand user-facing to OpenClaw
1 parent f866dc0 commit ffa25f4

File tree

29 files changed

+58
-58
lines changed

29 files changed

+58
-58
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
- CLI: support OpenClaw configuration files (`OPENCLAW_CONFIG_PATH` / `OPENCLAW_STATE_DIR`).
1717

1818
### Changed
19-
- Brand: rebrand to ClawHub and publish CLI as `clawhub` (legacy `clawdhub` supported).
19+
- Brand: rebrand to OpenClaw and publish CLI as `clawhub` (legacy `clawdhub` supported).
2020
- Domain: default site/registry now `https://clawhub.ai`; `.well-known/clawhub.json` preferred.
2121
- Theme: persist theme under `clawhub-theme` (legacy key still read).
2222

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# ClawHub
1+
# OpenClaw
22

33
<p align="center">
4-
<a href="https://github.com/clawdbot/clawhub/actions/workflows/ci.yml?branch=main"><img src="https://img.shields.io/github/actions/workflow/status/clawdbot/clawhub/ci.yml?branch=main&style=for-the-badge" alt="CI status"></a>
4+
<a href="https://github.com/openclaw/clawhub/actions/workflows/ci.yml?branch=main"><img src="https://img.shields.io/github/actions/workflow/status/openclaw/clawhub/ci.yml?branch=main&style=for-the-badge" alt="CI status"></a>
55
<a href="https://discord.gg/clawd"><img src="https://img.shields.io/discord/1456350064065904867?label=Discord&logo=discord&logoColor=white&color=5865F2&style=for-the-badge" alt="Discord"></a>
66
<a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg?style=for-the-badge" alt="MIT License"></a>
77
</p>
88

9-
ClawHub is the **public skill registry for Clawdbot**: publish, version, and search text-based agent skills (a `SKILL.md` plus supporting files).
9+
OpenClaw is the **public skill registry for Clawdbot**: publish, version, and search text-based agent skills (a `SKILL.md` plus supporting files).
1010
It’s designed for fast browsing + a CLI-friendly API, with moderation hooks and vector search.
1111

1212
onlycrabs.ai is the **SOUL.md registry**: publish and share system lore the same way you publish skills.
@@ -27,7 +27,7 @@ onlycrabs.ai: `https://onlycrabs.ai`
2727

2828
- Entry point is host-based: `onlycrabs.ai`.
2929
- On the onlycrabs.ai host, the home page and nav default to souls.
30-
- On ClawHub, souls live under `/souls`.
30+
- On OpenClaw, souls live under `/souls`.
3131
- Soul bundles only accept `SOUL.md` for now (no extra files).
3232

3333
## How it works (high level)
@@ -39,7 +39,7 @@ onlycrabs.ai: `https://onlycrabs.ai`
3939

4040
## Telemetry
4141

42-
ClawHub tracks minimal **install telemetry** (to compute install counts) when you run `clawhub sync` while logged in.
42+
OpenClaw tracks minimal **install telemetry** (to compute install counts) when you run `clawhub sync` while logged in.
4343
Disable via:
4444

4545
```bash
@@ -95,7 +95,7 @@ This writes `JWT_PRIVATE_KEY` + `JWKS` to the deployment and prints values for y
9595

9696
## Nix plugins (nixmode skills)
9797

98-
ClawHub can store a nix-clawdbot plugin pointer in SKILL frontmatter so the registry knows which
98+
OpenClaw can store a nix-clawdbot plugin pointer in SKILL frontmatter so the registry knows which
9999
Nix package bundle to install. A nix plugin is different from a regular skill pack: it bundles the
100100
skill pack, the CLI binary, and its config flags/requirements together.
101101

convex/lib/webhooks.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export function buildDiscordPayload(
7272
},
7373
],
7474
footer: {
75-
text: 'ClawHub',
75+
text: 'OpenClaw',
7676
},
7777
timestamp: new Date().toISOString(),
7878
},
@@ -89,9 +89,9 @@ export function buildSkillUrl(skill: WebhookSkillPayload, siteUrl: string) {
8989
function buildDescription(event: WebhookEvent, skill: WebhookSkillPayload) {
9090
const summary = (skill.summary ?? '').trim()
9191
if (summary) return truncate(summary, 200)
92-
if (event === 'skill.highlighted') return 'Newly highlighted skill on ClawHub.'
93-
if (skill.version) return `New version v${skill.version} published on ClawHub.`
94-
return 'New skill published on ClawHub.'
92+
if (event === 'skill.highlighted') return 'Newly highlighted skill on OpenClaw.'
93+
if (skill.version) return `New version v${skill.version} published on OpenClaw.`
94+
return 'New skill published on OpenClaw.'
9595
}
9696

9797
function parseBoolean(value?: string) {

convex/seedSouls.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export type SoulSeed = {
77
}
88

99
export const SOUL_SEED_HANDLE = 'seed'
10-
export const SOUL_SEED_DISPLAY_NAME = 'ClawHub Seed'
10+
export const SOUL_SEED_DISPLAY_NAME = 'OpenClaw Seed'
1111
export const SOUL_SEED_KEY = 'seed:souls-v1'
1212

1313
// biome-ignore format: seed payload

docs/deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ read_when:
77

88
# Deploy
99

10-
ClawHub is two deployables:
10+
OpenClaw is two deployables:
1111

1212
- Web app (TanStack Start) → typically Vercel.
1313
- Convex backend → Convex deployment (serves `/api/...` routes).

docs/diffing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ read_when:
1010
## Goals
1111
- Compare any file between two versions.
1212
- Default compare: `latest` vs `previous` (SemVer precedence).
13-
- UX feels native to ClawHub (theme + typography + motion).
13+
- UX feels native to OpenClaw (theme + typography + motion).
1414
- Inline or side-by-side toggle.
1515
- Public access.
1616

docs/mintlify.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Example (starter):
2020

2121
```json
2222
{
23-
"name": "ClawHub",
23+
"name": "OpenClaw",
2424
"logo": "public/logo.svg",
2525
"navigation": [
2626
{ "group": "Start", "pages": ["docs/README", "docs/quickstart"] },

docs/spec.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
summary: "ClawHub spec: skills registry, versioning, vector search, moderation"
2+
summary: "OpenClaw spec: skills registry, versioning, vector search, moderation"
33
read_when:
4-
- Bootstrapping ClawHub
4+
- Bootstrapping OpenClaw
55
- Implementing schema/auth/search/versioning
66
- Reviewing API and upload/download flows
77
---
88

9-
# ClawHub — product + implementation spec (v1)
9+
# OpenClaw — product + implementation spec (v1)
1010

1111
## Goals
1212
- onlycrabs.ai mode for sharing `SOUL.md` bundles (host-based entry point).

docs/telemetry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ read_when:
77

88
# Telemetry
99

10-
ClawHub uses **minimal telemetry** to compute **install counts** (what’s actually in use) and to power better sorting/filtering.
10+
OpenClaw uses **minimal telemetry** to compute **install counts** (what’s actually in use) and to power better sorting/filtering.
1111
This is based on the CLI `clawhub sync` command.
1212

1313
## When telemetry is collected
@@ -70,7 +70,7 @@ This is evaluated lazily (on the next telemetry report) to avoid background jobs
7070

7171
## Transparency + user controls
7272

73-
ClawHub provides a private “Installed” tab on your own profile:
73+
OpenClaw provides a private “Installed” tab on your own profile:
7474

7575
- Shows the exact roots + installed skills we store.
7676
- Includes a **JSON export** view.

docs/webhook.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ read_when:
66

77
# Webhooks (Discord)
88

9-
ClawHub can post Discord embeds when skills are published or highlighted.
9+
OpenClaw can post Discord embeds when skills are published or highlighted.
1010

1111
## Setup
1212

@@ -44,7 +44,7 @@ Discord receives a JSON payload with a single embed:
4444
{ "name": "Owner", "value": "@owner", "inline": true },
4545
{ "name": "Tags", "value": "latest, discord", "inline": false }
4646
],
47-
"footer": { "text": "ClawHub" }
47+
"footer": { "text": "OpenClaw" }
4848
}
4949
]
5050
}

0 commit comments

Comments
 (0)