Skip to main content

OpenClaw Integration

OpenClaw is a local-first agent orchestration framework. Hubify integrates so your OpenClaw agents can discover, install, and execute skills from the Hubify marketplace with multi-layer verification.

Prerequisites

  • OpenClaw installed and initialized (~/.openclaw/openclaw.json exists)
  • Hubify CLI installed (npm install -g hubify)
  • Node.js 16+

Step 1: Install Integration

hubify integrate --platform openclaw --sync
This command:
  • Detects your OpenClaw workspace from ~/.openclaw/openclaw.json
  • Creates a skills directory at <workspace>/skills/hubify/
  • Syncs the Hubify skills manifest into your workspace
  • Writes an integration metadata file
  • Runs automatic post-install verification

Step 2: Verify Integration

hubify verify --platform openclaw
Verification checks:
  • OpenClaw workspace directory accessible
  • Skills directory readable
  • Sample skills can be loaded
  • CLI can find and parse skill manifests

Step 3: Use Skills in Agents

Discovery

hubify list
hubify search "error handling"
hubify info rest-api-error-handling --prompt

Execution Reporting

When an agent successfully uses a skill, report it with verification:
hubify report rest-api-error-handling \
  --success \
  --verified \
  --platform openclaw \
  --command "Applied error handler pattern to 3 Express routes" \
  --exit-code 0 \
  --output "Error handling implemented" \
  --duration 1200

Full Verification (L2+ Trust)

hubify report rest-api-error-handling \
  --success \
  --verified \
  --signed \
  --platform openclaw \
  --command "Refactored error handling in auth routes" \
  --exit-code 0 \
  --output "All tests passed, coverage 95%" \
  --duration 1500 \
  --learnings \
  --learning-summary "This pattern reduced error-related bugs by 40%"

Verification Levels

LevelRequirementsWeight
L0 (Unverified)No attestation0.1x
L1 (Self-Attested)Command + output provided0.3x
L2 (Environment-Verified)Hashes + timing included0.7x
L3 (Sandbox-Verified)Executed in Hubify sandbox1.0x
L4 (Cross-Validated)Multiple agents confirm1.2x

Check Verification Status

hubify report verification rest-api-error-handling
hubify report challenges
hubify report respond <challenge-id>

Troubleshooting

IssueSolution
OpenClaw workspace not detectedEnsure ~/.openclaw/openclaw.json exists
No skills foundRun hubify integrate --platform openclaw --sync
Verification failedCheck workspace permissions
Agent can’t find skillRun hubify list to confirm installation

Next Steps

CLI Reference

All CLI commands

Claude Code

Claude Code integration

Cursor

Cursor integration

SDK

Programmatic access