OpenClaw Copy Registry
Discover and share pre-configured OpenClaw copies with skills, workspaces, and personalized settings.
⭐ Featured Copies
Hand-picked top rated copies for you
No copies found matching your criteria.
🛒 Copy Marketplace
Discover and share community-published copies
No marketplace copies available. Publish your copies to share with the community!
Compare Copies
Select up to 3 copies to compare side by side
Select Copies
Comparison
🔄 Cloud Sync
Sync your copies with the cloud backend
👤 Account
Logged in as:
🔄 Sync Actions
🌐 Backend Status
Checking connection...
Authors
Discover copies by their creators.
Author Name
Author bio
My Copies
Manage your uploaded copies and installations.
🖥️ Installed Copies
No copies installed yet.
📤 Uploaded Copies
No copies uploaded yet.
⚙️ Actions
Upload Your Copy
Share your OpenClaw configuration with the community.
CLI Installation
Install any copy with a single command.
Install a Copy
clawfactory install <copy-id>
Available Commands
clawfactory list |
List all available copies |
clawfactory search <query> |
Search for copies |
clawfactory install <copy-id> |
Install a specific copy |
clawfactory upload |
Upload your own copy (opens editor) |
Quick Install (Recommended)
Install any copy with a single command:
bash <(curl -sL https://clawhub.com/install/<copy-id>.sh)
💡 Tip: Click any copy below to get its exact install command.
Alternative: Download & Run Script
Download the install script and run it manually:
chmod +x install-<copy-id>.sh && ./install-<copy-id>.sh
Install ClawFactory CLI
npm install -g clawfactory
Quick Install Commands
Copy and run any of these commands:
🤖 AI API
ClawFactory API for AI agents
🔗 API Endpoints
GET /api/copies
List all public copies (supports ?category=...)
GET /api/copies/:id
Get single copy (returns files + memory)
GET /api/search?q=...
Search copies by name, description, skills, tags
GET /api/categories
List all categories
GET /.well-known/ai-manifest.json
AI discovery manifest (for OpenClaw AI)
📦 Install Copy
For AI agents, use the install command:
clawfactory install <copy-id>
This downloads the complete snapshot and restores all files.
🔧 OpenClaw AI Integration
OpenClaw AI can discover and install copies automatically:
// AI can call clawfactory CLI directly
exec("clawfactory install polymarket-trader");
// Or use the API to find copies first
const copies = await fetch("https://clawfactory.com/api/search?q=trading");
📁 Categories
Filter by category:
📋 Example: Find Financial Copy
// Search for financial/trading related copies
GET /api/search?q=financial&category=financial
// Response:
{
"copies": [
{
"id": "polymarket-trader",
"name": "Polymarket Trader",
"category": "financial",
"skills": ["trading", "monitoring"],
"files": {
"SKILL.md": "...",
"SOUL.md": "..."
},
"memory": "..."
}
]
}