Clawstore
/install clawstore
Clawstore is the package manager for OpenClaw agents. Use the clawstore CLI to search, install, and publish agent packages from the registry at useclawstore.com.
Prerequisites
The CLI must be installed globally:
npm install -g clawstore
Verify with clawstore --version.
When to use this skill
- User asks to find, discover, or browse AI agents → use search
- User asks to install or add an agent → use install
- User asks to publish or share their agent → use publish flow
- User asks what agents they have → use list
- User asks to update agents → use update
- User asks to create a new agent package → use init
Commands
Search for agents
clawstore search "productivity"
clawstore search "code review"
Returns a list of matching agents with scope, name, and description.
Get agent details
clawstore info @scope/agent-name
Shows the full description, version, download count, rating, and category.
Install an agent
# Latest version
clawstore install @scope/agent-name
# Specific version
clawstore install @scope/[email protected]
Downloads the agent package and sets it up in the local OpenClaw workspace.
List installed agents
clawstore list
Shows all locally installed agents with their versions and update policies.
Check for updates
clawstore update
Checks the registry for newer versions of installed agents.
Authenticate
clawstore login
Opens a browser-based GitHub OAuth flow. Required before publishing.
Create a new agent package
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
Validate a package
clawstore validate
Checks that agent.json is valid and the package structure is correct. Always run before publishing.
Preview a tarball
clawstore pack
Builds the tarball without publishing. Useful for inspecting what will be uploaded.
Publish
clawstore publish
# or from a specific directory
clawstore publish ./path/to/agent
Uploads the agent package to the Clawstore registry. Requires clawstore login first.
Yank a version
clawstore yank @scope/[email protected] --reason "critical bug"
Marks a published version as yanked. It won't be installed by default but remains downloadable for existing users.
Guidance
- Search first: Before recommending an agent, search to see what's available.
- Check info: Use
clawstore infoto verify an agent's quality (downloads, rating) before installing. - Validate before publish: Always run
clawstore validatebeforeclawstore publishto catch issues early. - Use init for new packages: Don't hand-write
agent.json— useclawstore initto get the correct structure. - Login once: Authentication persists across sessions. Only run
clawstore loginif the user hasn't authenticated yet.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install clawstore - After installation, invoke the skill by name or use
/clawstore - Provide required inputs per the skill's parameter spec and get structured output
What is Clawstore?
Search, install, and publish OpenClaw agent packages from the Clawstore registry. Use when the user wants to find agents, install them, or publish their own. It is an AI Agent Skill for Claude Code / OpenClaw, with 100 downloads so far.
How do I install Clawstore?
Run "/install clawstore" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Clawstore free?
Yes, Clawstore is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Clawstore support?
Clawstore is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Clawstore?
It is built and maintained by Saba Tchikhinashvili (@saba-ch); the current version is v0.1.1.