This document explains how to configure OpenClaw CLI to connect to a SkillHub private registry for publishing, searching, and downloading skills.
SkillHub provides a ClawHub-compatible API layer, allowing OpenClaw CLI to seamlessly integrate with private registries. With simple configuration, you can:
Set the SkillHub registry address in your OpenClaw configuration:
# Via environment variable
export CLAWHUB_REGISTRY_URL=https://skillhub.your-company.com
For global namespace (@global) PUBLIC skills, no login is required to download. Authentication is required for:
# Using API Token
export CLAWHUB_API_TOKEN=YOUR_API_TOKEN
# Search for skills
npx clawhub search email
# View skill details
npx clawhub info my-skill
# Install latest published version
npx clawhub install my-skill
# Install specific version
npx clawhub install my-skill@1.2.0
# Install skill from team namespace
npx clawhub install my-namespace--my-skill
# Publish a skill (requires appropriate permissions)
npx clawhub publish ./my-skill
SkillHub compatibility layer provides the following endpoints:
| Endpoint | Method | Description | Auth Required |
|---|---|---|---|
/api/v1/whoami |
GET | Get current user info | Yes |
/api/v1/search |
GET | Search skills | Optional |
/api/v1/resolve |
GET | Resolve skill version | Optional |
/api/v1/download/{slug} |
GET | Download skill (redirect) | Optional* |
/api/v1/download |
GET | Download skill (query params) | Optional* |
/api/v1/skills/{slug} |
GET | Get skill details | Optional |
/api/v1/skills/{slug}/star |
POST | Star a skill | Yes |
/api/v1/skills/{slug}/unstar |
DELETE | Unstar a skill | Yes |
/api/v1/publish |
POST | Publish a skill | Yes |
Notes:
publishedVersion rather than inferring an ad hoc "current version"* Download endpoint authentication requirements:
SkillHub supports three visibility levels with the following download permission rules:
Important Notes:
@global) PUBLIC skills support anonymous downloads for wide distribution within the organizationSkillHub internally uses @{namespace}/{skill} format, but the compatibility layer automatically converts to ClawHub-style canonical slugs:
| SkillHub Internal | Canonical Slug | Description |
|---|---|---|
@global/my-skill |
my-skill |
Global namespace skill |
@my-team/my-skill |
my-team--my-skill |
Team namespace skill |
OpenClaw CLI uses canonical slug format, and SkillHub handles the conversion automatically.
ClawHub CLI is configured via environment variables:
# Registry configuration
export CLAWHUB_REGISTRY_URL=https://skillhub.your-company.com
export CLAWHUB_API_TOKEN=sk_your_api_token_here
# Registry configuration
export CLAWHUB_REGISTRY_URL=https://skillhub.your-company.com
export CLAWHUB_API_TOKEN=sk_your_api_token_here
# Optional: Skip SSL verification (development only)
export CLAWHUB_SKIP_SSL_VERIFY=false
# Unset custom registry
unset CLAWHUB_REGISTRY_URL
# ClawHub CLI will use the default public registry
Possible causes:
Solution:
# Set new token
export CLAWHUB_API_TOKEN=YOUR_NEW_TOKEN
# Test connection
curl https://skillhub.your-company.com/api/v1/whoami \
-H "Authorization: Bearer $CLAWHUB_API_TOKEN"
Tip: Global namespace (@global) PUBLIC skills can be downloaded anonymously without authentication.
# Search all skills (filtered by permissions)
npx clawhub search ""
@global) requires SUPER_ADMIN permissionSkillHub compatibility layer is designed to work with tools using ClawHub CLI. ClawHub CLI is distributed via npm:
# Install ClawHub CLI
npm install -g clawhub
# Or use npx directly
npx clawhub install my-skill
If you encounter compatibility issues, please file an issue.
{
"results": [
{
"slug": "my-team--email-sender",
"name": "Email Sender",
"description": "Send emails via SMTP",
"author": {
"handle": "user123",
"displayName": "John Doe"
},
"version": "1.2.0",
"downloadCount": 150,
"starCount": 25,
"createdAt": "2026-01-15T10:00:00Z",
"updatedAt": "2026-03-10T14:30:00Z"
}
],
"total": 1,
"page": 1,
"limit": 20
}
{
"slug": "my-skill",
"version": "1.2.0",
"downloadUrl": "/api/v1/skills/global/my-skill/versions/1.2.0/download"
}
{
"id": "12345",
"version": {
"id": "67890"
}
}
# View detailed request logs
DEBUG=clawhub:* npx clawhub search my-skill
# Or use verbose mode
npx clawhub --verbose install my-skill
# Test registry connection
curl https://skillhub.your-company.com/api/v1/whoami \
-H "Authorization: Bearer YOUR_TOKEN"
# Test search
curl "https://skillhub.your-company.com/api/v1/search?q=test"
For questions or suggestions: