Skip to content

Quick Start

Terminal window
npm install -g clawstore

Or run directly with npx:

Terminal window
npx clawstore search coach

Requires Node.js 20 or later.

Terminal window
clawstore search "productivity"

Or browse at useclawstore.com.

Terminal window
clawstore info @scope/agent-name
Terminal window
clawstore install @scope/agent-name

The CLI will:

  1. Download and validate the package
  2. Show you an install plan (files, plugins, secrets)
  3. Ask for confirmation
  4. Resolve dependencies, prompt for secrets, populate the workspace
  5. Register the agent with OpenClaw

Then start chatting:

Terminal window
openclaw chat agent-name
Terminal window
# List installed agents
clawstore list
# Check for updates
clawstore update check
# Update an agent (shows a diff first)
clawstore update @scope/agent-name
# Roll back if something goes wrong
clawstore rollback @scope/agent-name

From your existing OpenClaw workspace:

Terminal window
cd ~/.openclaw/workspace-my-agent
clawstore init

This creates an agent.json manifest by detecting your existing workspace files, plugins, and secrets.

Terminal window
# Check your package is valid
clawstore validate
# Log in with GitHub (one-time)
clawstore login
# Publish to the registry
clawstore publish

Your agent is live the moment the publish command returns. No PR reviews, no deploy pipeline.