ClawHub:轻松管理和安装 Openclaw 技能

作者:互联网

2026-03-26

环境安装

什么是 ClawHub 技能管理器?

ClawHub 是 OpenClaw 生态系统的核心管理引擎,专门设计用于简化 Openclaw 技能的发现和部署。它使开发人员和高级用户能够浏览庞大的公共功能注册表(从简单的实用脚本到复杂的 AI 工作流),并将其直接集成到本地环境中。通过作为专门的包管理器运行,它确保您的 Openclaw 技能在工作区中始终保持最新且配置正确。

下载入口:https://github.com/openclaw/skills/tree/main/skills/sreejith77/skill-installer

安装与下载

1. ClawHub CLI

从源直接安装技能的最快方式。

npx clawhub@latest install skill-installer

2. 手动安装

将技能文件夹复制到以下位置之一

全局模式 ~/.openclaw/skills/ 工作区 /skills/

优先级:工作区 > 本地 > 内置

3. 提示词安装

将此提示词复制到 OpenClaw 即可自动安装。

请帮我使用 Clawhub 安装 skill-installer。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。

ClawHub 技能管理器 应用场景

  • 通过从公共注册表搜索并安装专门的 Openclaw 技能来扩展代理能力。
  • 通过单个命令更新所有 Openclaw 技能,维护整洁的开发环境。
  • 通过与 WhatsApp 等消息平台集成,远程部署新的 Openclaw 技能。
  • 检查已安装 Openclaw 技能的技术元数据和版本以确保兼容性。
ClawHub 技能管理器 工作原理
  1. 系统检查系统路径中是否存在 clawhub CLI,以确保可以执行命令。
  2. 用户进入 OpenClaw 工作区目录,该目录作为 Openclaw 技能的本地仓库。
  3. 发出命令,使用唯一的标识符(slug)在注册表中获取、更新或搜索特定的 Openclaw 技能。
  4. 管理器下载必要的资产并将其放入本地技能目录,这些资产的优先级高于捆绑的默认设置。
  5. 重启代理或网关以识别并初始化新添加的 Openclaw 技能。

ClawHub 技能管理器 配置指南

要开始使用此工具管理您的 Openclaw 技能,请使用 npm 全局安装 CLI:

npm i -g clawhub

通过查看帮助文档验证安装是否成功:

clawhub --help

在运行 Openclaw 技能的安装命令之前,请确保您位于工作区目录(~/.openclaw/workspace)中。

ClawHub 技能管理器 数据架构与分类体系

组件 描述
工作区目录 Openclaw 技能的主要位置是 ~/.openclaw/workspace/skills/
优先级模型 工作区目录中的本地 Openclaw 技能会覆盖所有其他版本
注册表标识符 每个 Openclaw 技能都由一个唯一的、URL 友好的 slug 标识
元数据存储 Openclaw 技能的配置和逻辑存储在有组织的子目录中
name: clawhub
description: Install, search, update, and manage skills from ClawHub (the public OpenClaw skill registry). Use when the user wants to install a skill by slug (e.g. "clawhub install summarize"), search for skills, update installed skills, or manage ClawHub skills in any way.

ClawHub Skill Manager

Install and manage skills from ClawHub, the public skill registry for OpenClaw.

Prerequisites

The clawhub CLI must be available on PATH. Verify with which clawhub. If missing, ask the user to install it manually:

npm i -g clawhub

Do not auto-install without user confirmation.

Commands

Install a skill

cd ~/.openclaw/workspace && clawhub install 
  • is the skill identifier from ClawHub (e.g. summarize, weather, coding-agent)
  • Skills are installed into ./skills/ under the workspace
  • A new OpenClaw session is needed to pick up the skill

Search for skills

clawhub search ""

Update skills

# Update a specific skill
clawhub update 

# Update all installed skills
clawhub update --all

Other useful commands

clawhub info        # Show skill details
clawhub list              # List installed skills
clawhub --help            # Full CLI reference

Workflow

  1. Ensure clawhub CLI is installed (check with which clawhub, install if missing)
  2. cd to the workspace directory: ~/.openclaw/workspace
  3. Run the appropriate clawhub command
  4. Inform the user to start a new session (or restart gateway) for the skill to take effect

Installing via WhatsApp

Users can install skills by messaging the OpenClaw agent on WhatsApp:

clawhub install 

Example: clawhub install summarize

The agent will handle CLI installation and confirm when the skill is ready.

Notes

  • All ClawHub skills are public and open
  • Treat third-party skills as untrusted — review before enabling
  • Workspace skills (/skills/) take highest precedence over managed and bundled skills