← Back to Skills Marketplace
122
Downloads
0
Stars
0
Active Installs
5
Versions
Install in OpenClaw
/install openclaw-skill-manager
Description
管理 OpenClaw 技能安装、查询、更新和自定义空间。支持多空间架构,使用 CLI 查看技能。触发词:管理技能、安装skill、查询skill、更新skill、移动skill、添加skill空间、/skill
Usage Guidance
这个技能看起来确实是用来管理 OpenClaw 技能空间和安装流程的,但在决定安装/使用前请注意:
- SKILL.md 会修改 ~/.openclaw/openclaw.json 并重启 gateway — 这会影响你的 agent 运行环境;在继续前请备份该文件并确认你愿意接受重启。
- 手动安装流程允许从任意 URL 下载并直接用 tar 解包(curl | tar -xz),没有提供完整性校验(如 SHA256 或签名)。尽量使用受信任来源(clawhub)优先,避免从不明/未经验证的 URL 安装技能。
- 元数据没有声明需要的本地工具。确保你的环境中有 openclaw、clawhub(可选)、curl、tar、jq、grep、sed、awk 等工具;如果这些工具缺失,SKILL.md 的步骤会失败或产生意外行为。
- 没有请求任何环境凭据,这一点是好的;但技能会读写用户配置目录并可能创建目录/文件 — 请确认路径和权限。
建议措施:
1) 若来源未知或不可信:不要直接运行自动化安装命令,改为手动下载并人工审查 SKILL.md 与技能包内容。
2) 要求作者/发布者在元数据中补充必需的二进制依赖和对下载来源的完整性校验说明(签名或哈希)。
3) 备份 ~/.openclaw/openclaw.json 与相关 workspace,在测试环境中先运行安装流程验证无异常再在生产环境使用。
如果你想让我进一步降低不确定性,请提供:技能将要安装的实际 clawhub 包或目标 URL 的示例,我可以检查那些包/URL 是否包含可执行脚本或可疑行为。
Capability Analysis
Type: OpenClaw Skill
Name: openclaw-skill-manager
Version: 3.1.3
The skill bundle functions as a meta-manager for the OpenClaw environment, possessing high-risk capabilities such as modifying core configuration files (~/.openclaw/openclaw.json), restarting the system gateway, and installing code from arbitrary remote URLs via 'curl | tar' (SKILL.md). While these actions align with the stated purpose of managing skills, the instructions rely heavily on shell command templates with unvalidated placeholders (e.g., <source>, <用户输入路径>), which creates a significant surface for command injection and unauthorized code execution. The ability to download and extract remote payloads into the skill directory is a high-risk pattern that warrants caution.
Capability Assessment
Purpose & Capability
名称和描述与 SKILL.md 中的行为(列出/安装/管理技能、修改 ~/.openclaw/openclaw.json、重启 gateway、在多空间间安装)总体一致. 但 SKILL.md 依赖多个本地工具(openclaw, clawhub, curl, tar, jq, grep, sed, awk 等)而 registry metadata lists no required binaries — 这是不一致(声明缺失),应在元数据中列出这些依赖。
Instruction Scope
运行时指令留在技能管理的范围(读取/写入 openclaw 配置、列出/安装技能、扫描技能目录)。值得注意的是:手动安装路径支持使用任意 URL,然后执行 curl -L "<source>" | tar -xz -C "<target>"(或等价下载并解压),且文档没有要求进行校验(签名或哈希)。此外指令将修改用户配置文件并重启 gateway — 这是需要用户授权的高影响操作,但符合管理器功能。
Install Mechanism
这是一个 instruction-only 技能(没有 install spec,也没有代码文件),因此不会在安装阶段写入额外二进制。低级别的安装风险来自 SKILL.md 中建议执行的命令(如 curl|tar 的手动安装流程),而非安装器本身。
Credentials
没有要求环境变量或凭据,且指令没有读取除 openclaw 配置文件(~/.openclaw/openclaw.json)以外的敏感系统凭据。需求与技能目的相称。
Persistence & Privilege
flags show always:false,技能不是强制常驻。SKILL.md 会修改自身平台配置(添加 extraDirs 到 ~/.openclaw/openclaw.json)并重启 gateway,这属于该技能的管理范围且与其目的相符 — 但这些都是高影响操作,用户应确认后授权。
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install openclaw-skill-manager - After installation, invoke the skill by name or use
/openclaw-skill-manager - Provide required inputs per the skill's parameter spec and get structured output
Version History
v3.1.3
No file changes detected for version 3.1.3. No updates were made in this release.
v3.1.2
**openclaw-skill-manager 3.1.2**
- 移除了 `.clawhub/origin.json` 和 `_meta.json` 文件。
- 无功能或文档变更。
v3.1.1
No changes detected in this version.
- Version bumped to 3.1.1 with no file or documentation updates.
- All skill features and documentation remain unchanged from the previous release.
v3.1.0
openclaw-skill-manager v3.1.0
- 新增自定义技能空间支持,可通过 CLI 添加、管理和扫描任意技能目录
- 所有技能操作(安装、查询、更新、移动)支持多空间和自定义目录
- 命令行交互流程整体改进,CLI 输出解析及 fallback 更健壮
- 技能分类更加清晰,增加扩展/自定义空间类型和识别逻辑
- SKILL.md 结构调整,标签和描述覆盖最新的功能范围
v1.0.0
**Initial release of openclaw-skill-manager (v1.0.0):**
- Provides management for OpenClaw skills, supporting installation, query, update, and relocation.
- Supports multi-space architecture: system built-in, global, main, and shared/expert agent spaces.
- Dynamically detects current Agent configuration and skill distribution.
- Includes robust command workflows and error handling for common scenarios (installation failures, duplicates, missing files, etc.).
- Skills usage, workspace mapping, and commands are fully documented in Chinese.
- User-oriented, offering helpful prompts and status displays for each operation.
Metadata
Frequently Asked Questions
What is openclaw-skill-manager?
管理 OpenClaw 技能安装、查询、更新和自定义空间。支持多空间架构,使用 CLI 查看技能。触发词:管理技能、安装skill、查询skill、更新skill、移动skill、添加skill空间、/skill. It is an AI Agent Skill for Claude Code / OpenClaw, with 122 downloads so far.
How do I install openclaw-skill-manager?
Run "/install openclaw-skill-manager" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is openclaw-skill-manager free?
Yes, openclaw-skill-manager is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does openclaw-skill-manager support?
openclaw-skill-manager is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created openclaw-skill-manager?
It is built and maintained by chang (@liberalchang); the current version is v3.1.3.
More Skills