Back to Compiler
Install on ClawHub (OpenClaw)
Your compiled agent is packaged as an OpenClaw skill with a claw.json manifest and instructions.md entry point.
Step 1
Prepare the skill directory
Your download includes two files. Place them in a skill directory:
# Create a skill directory
mkdir my-compiled-skill
cp compiled-agent/claw.json my-compiled-skill/
cp compiled-agent/instructions.md my-compiled-skill/Step 2
Publish to ClawHub
Use the OpenClaw CLI to validate and publish:
# Validate the skill
openclaw skill validate my-compiled-skill/
# Publish to ClawHub marketplace
openclaw skill publish my-compiled-skill/You'll need an OpenClaw account. Create one at clawhub.dev.
Step 3
Test your skill
Run the skill locally before publishing:
# Run locally
openclaw skill run my-compiled-skill/ --input "test data"
# Or install from ClawHub after publishing
openclaw skill install your-username/your-skill-nameFile structure
my-compiled-skill/
├── claw.json # Skill manifest (name, version, permissions)
├── instructions.md # Agent instructions entry point
└── README.md # Documentationclaw.json manifest
The manifest declares your skill's metadata and permissions:
{
"name": "your-skill-name",
"version": "1.0.0",
"description": "Compiled AI agent skill",
"author": "your-name",
"permissions": ["web_search", "file_read"],
"entry": "instructions.md",
"tags": ["automation", "compiled"],
"models": ["claude-sonnet-4-5"]
}