Openclaw Skills Setup Cn
v1.0.0ClawHub 安装与配置 | ClawHub setup. 帮助中文用户安装 ClawHub、配置镜像(如阿里云)、 找技能(发现/推荐)、以及技能的安装/更新/启用/禁用。 Use when: 安装 clawhub, clawhub 怎么用, 找技能/找 skill, 有什么技能可以/有什么 skill 可以...
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
The name/description state ClawHub installation, mirror configuration, skill discovery and management; the SKILL.md contains exactly those npm/pnpm and clawhub/openclaw commands and no unrelated requirements.
Instruction Scope
Instructions only tell the agent to run package installs (npm/pnpm) and clawhub/openclaw CLI commands (search, install, update, enable/disable). They do not instruct reading arbitrary system files, exporting environment variables, or sending data to unexpected endpoints.
Install Mechanism
This is an instruction-only skill with no install spec. The recommended install methods (npm/pnpm -g) are standard for a CLI tool and match the claimed purpose; no downloads from obscure URLs or archive extraction are present.
Credentials
The skill declares no required env vars, credentials, or config paths. The only configuration shown is setting a mirror URL for package downloads — which is proportionate to helping domestic users speed up installs.
Persistence & Privilege
always is false and the skill is user-invocable. It does not request persistent system privileges or modify other skills' configurations beyond normal enable/disable commands described.
Assessment
This skill is a short, instruction-only helper for installing and managing ClawHub and appears internally consistent. Before running its commands: 1) verify the origin and maintainer of the npm package 'clawhub' (npm packages run code on install); 2) prefer non-root installs or use a container/VM if you want to limit impact of global npm installs; 3) ensure any mirror URL you set (e.g., Alibaba mirror) is trustworthy — mirrors can serve arbitrary packages; 4) when using clawhub to install other skills, review those skills' provenance and permissions because installing a skill pulls code from external sources. No credentials are requested by this skill itself.Like a lobster shell, security has layers — review code before you run it.
latest
ClawHub 安装和使用
本技能覆盖:ClawHub 安装与镜像配置、找技能(发现/推荐)、以及技能的安装/更新/启用/禁用。
安装 ClawHub
# npm 安装
npm install -g clawhub
# 或 pnpm 安装
pnpm add -g clawhub
初始化:
clawhub init
配置阿里云镜像(推荐国内用户):
clawhub config set clawhub.mirror "https://mirror.aliyun.com/clawhub/"
安装核心技能
批量安装新手必备技能(等待 5–10 分钟):
clawhub install tavily-search find-skills proactive-agent-1-2-4 pdf-chat file-organizer
验证安装状态:
openclaw skills list
技能管理
找技能(发现与推荐)
当用户问「有什么技能可以…」「找一个技能」「搜索技能」时:
- 理解需求:从自然语言中提取关键词(例如:PDF、Excel、翻译、写代码)。
- 搜索:
clawhub search "<关键词>"。 - 查看详情:对感兴趣的结果执行
clawhub inspect <技能名称>。 - 推荐并安装:给出推荐列表,并提供安装命令
clawhub install <技能名称>。
# 搜索技能
clawhub search "<关键词>"
# 查看技能详情
clawhub inspect <技能名称>
# 安装技能
clawhub install <技能名称>
# 安装指定版本
clawhub install <技能名称>@<版本号>
更新
# 更新单个技能
clawhub update <技能名称>
# 更新所有技能(推荐定期执行)
clawhub update --all
启用与禁用
# 查看技能状态
openclaw skills list --status
# 禁用技能
openclaw skills disable <技能名称>
# 启用技能
openclaw skills enable <技能名称>
Comments
Loading comments...
