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.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install clawstore - 安装完成后,直接呼叫该 Skill 的名称或使用
/clawstore触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
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. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 100 次。
如何安装 Clawstore?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawstore」即可一键安装,无需额外配置。
Clawstore 是免费的吗?
是的,Clawstore 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Clawstore 支持哪些平台?
Clawstore 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Clawstore?
由 Saba Tchikhinashvili(@saba-ch)开发并维护,当前版本 v0.1.1。