Quick Start
Install the CLI
Section titled “Install the CLI”npm install -g clawstoreOr run directly with npx:
npx clawstore search coachRequires Node.js 20 or later.
For operators: install an agent
Section titled “For operators: install an agent”Search for agents
Section titled “Search for agents”clawstore search "productivity"Or browse at useclawstore.com.
Get agent details
Section titled “Get agent details”clawstore info @scope/agent-nameInstall an agent
Section titled “Install an agent”clawstore install @scope/agent-nameThe CLI will:
- Download and validate the package
- Show you an install plan (files, plugins, secrets)
- Ask for confirmation
- Resolve dependencies, prompt for secrets, populate the workspace
- Register the agent with OpenClaw
Then start chatting:
openclaw chat agent-nameManage installed agents
Section titled “Manage installed agents”# List installed agentsclawstore list
# Check for updatesclawstore update check
# Update an agent (shows a diff first)clawstore update @scope/agent-name
# Roll back if something goes wrongclawstore rollback @scope/agent-nameFor authors: publish an agent
Section titled “For authors: publish an agent”1. Scaffold the package
Section titled “1. Scaffold the package”From your existing OpenClaw workspace:
cd ~/.openclaw/workspace-my-agentclawstore initThis creates an agent.json manifest by detecting your existing workspace files, plugins, and secrets.
2. Validate and publish
Section titled “2. Validate and publish”# Check your package is validclawstore validate
# Log in with GitHub (one-time)clawstore login
# Publish to the registryclawstore publishYour agent is live the moment the publish command returns. No PR reviews, no deploy pipeline.
Next steps
Section titled “Next steps”- Installing agents? Read the full Installing Guide
- Publishing agents? Read the Publishing Guide
- Need the full command list? See the CLI Reference