Install
openclaw skills install clawstoreSearch, install, and publish OpenClaw agent packages from the Clawstore registry. Use when the user wants to find agents, install them, or publish their own.
openclaw skills install clawstoreClawstore is the package manager for OpenClaw agents. Use the clawstore CLI to search, install, and publish agent packages from the registry at useclawstore.com.
The CLI must be installed globally:
npm install -g clawstore
Verify with clawstore --version.
clawstore search "productivity"
clawstore search "code review"
Returns a list of matching agents with scope, name, and description.
clawstore info @scope/agent-name
Shows the full description, version, download count, rating, and category.
# Latest version
clawstore install @scope/agent-name
# Specific version
clawstore install @scope/agent-name@1.2.0
Downloads the agent package and sets it up in the local OpenClaw workspace.
clawstore list
Shows all locally installed agents with their versions and update policies.
clawstore update
Checks the registry for newer versions of installed agents.
clawstore login
Opens a browser-based GitHub OAuth flow. Required before publishing.
clawstore init
Scaffolds agent.json and the recommended directory structure:
my-agent/
├── agent.json # Package manifest
├── app/
│ ├── IDENTITY.md # Agent persona
│ ├── AGENTS.md # Capabilities
│ ├── SOUL.md # Personality
│ └── knowledge/ # Reference files
└── store/
├── icon.png # Store icon (256x256 PNG)
└── screenshots/ # Store listing images
clawstore validate
Checks that agent.json is valid and the package structure is correct. Always run before publishing.
clawstore pack
Builds the tarball without publishing. Useful for inspecting what will be uploaded.
clawstore publish
# or from a specific directory
clawstore publish ./path/to/agent
Uploads the agent package to the Clawstore registry. Requires clawstore login first.
clawstore yank @scope/agent-name@1.0.0 --reason "critical bug"
Marks a published version as yanked. It won't be installed by default but remains downloadable for existing users.
clawstore info to verify an agent's quality (downloads, rating) before installing.clawstore validate before clawstore publish to catch issues early.agent.json — use clawstore init to get the correct structure.clawstore login if the user hasn't authenticated yet.