Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计提醒

skillinstallskillinstall 搜索

Agent Skill

skillinstall 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,656

周安装

569

GitHub Stars

公开资料未说明

下载量

4,552
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skillinstall(skillinstall 搜索)
来源仓库:https://github.com/otho2966-ai/skillinstall
安装命令:
openclaw skills install skillinstall
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skillinstall

简介

skillinstall 从 clawhub.ai 的 ZIP 文件安装 OpenClaw 技能,具备自动检测、验证和更新功能。

  • 适用于 OpenClaw 中需要批量安装或更新技能的部署环境。
  • 核心能力包括文件搜索、重复检查和网关级更新管理。
  • 安装命令为 openclaw skills install skillinstall,需确认本地存储与网络权限。
  • 使用前建议核实是否会执行文件写入或系统级操作。

SKILL.md

name
skill-installer
description
Install OpenClaw skills from clawhub.ai ZIP files with automatic detection, validation, and Gateway updates. Supports file search, duplicate checking, and interactive selection when multiple files are found.
metadata

Skill Installer

Install OpenClaw skills from clawhub.ai ZIP files with automatic detection, validation, and Gateway updates.

Features

  • Automatic Detection: Finds OpenClaw installation location automatically
  • File Search: Search for ZIP files in current directory when filename is not specified
  • Duplicate Check: Verifies if a skill is already installed before proceeding
  • Interactive Selection: Prompts user to choose when multiple matching files are found
  • Validation: Validates skill structure (SKILL.md, _meta.json)
  • Gateway Update: Automatically restarts Gateway to make new skills available
  • Progress Feedback: Detailed status messages throughout the installation process

Usage

Basic Installation

# Install from a specific ZIP file
python3 scripts/skill_install.py my-skill.zip

# Search for ZIP files in current directory
python3 scripts/skill_install.py

# List all installed skills
python3 scripts/skill_install.py --list

# Show help
python3 scripts/skill_install.py --help

Workflow

  1. File Detection:

- If filename is provided: Use that file directly - If no filename: Search for *.zip files in current directory - If multiple files found: Display list and ask user to choose

  1. Validation:

- Check if OpenClaw is installed - Validate ZIP file structure - Verify SKILL.md and _meta.json exist

  1. Duplicate Check:

- Extract skill name from SKILL.md - Check if skill already exists in skills directory - Prompt for confirmation if duplicate found

  1. Installation:

- Extract ZIP file to skills directory - Verify extracted files - Restart OpenClaw Gateway

  1. Completion:

- Display success message - Show skill path - Confirm Gateway restart

File Structure

The script expects skills to have the following structure:

skill-name.zip
├── SKILL.md          # Required: Skill metadata and documentation
├── _meta.json        # Required: Additional metadata
├── scripts/          # Optional: Python/Node scripts
│   └── *.py/*.mjs
├── references/       # Optional: Reference documentation
└── README.md         # Optional: Extended documentation

Examples

Install from Current Directory

# List all ZIP files in current directory
python3 scripts/skill_install.py

# Output:
# Found 3 ZIP files:
# 1. github-skill.zip
# 2. weather-skill.zip
# 3. notion-skill.zip
#
# Select a file (1-3) or 'q' to quit: 1
#
# Installing: github-skill.zip
# ...

Install Specific File

python3 scripts/skill_install.py github-skill.zip

# Output:
# ============================================================
# 📦 OpenClaw Skill Installer
# ============================================================
#
# 🔍 正在搜索 OpenClaw 安装位置...
# ✅ 找到 OpenClaw: /home/user/.nvm/versions/node/v22.22.0/lib/node_modules/openclaw
#
# 📂 正在解析 ZIP 文件...
# ✅ 找到 SKILL.md
# ✅ Skill 名称: github
# ✅ Skill 描述: GitHub operations via gh CLI
#
# 🔍 检查是否已安装...
# ℹ️  Skill 'github' 未安装
#
# 📦 正在安装 skill...
# ✅ 安装成功!
#
# 🔄 正在重启 Gateway...
# ✅ Gateway 已重启
#
# 🎉 安装完成!
# Skill 路径: /home/user/.nvm/versions/node/v22.22.0/lib/node_modules/openclaw/skills/github
#
# 现在可以在 OpenClaw 中使用 'github' skill 了!

List Installed Skills

python3 scripts/skill_install.py --list

# Output:
# ============================================================
# 📋 已安装的 Skills
# ============================================================
#
# 1. github
#    📁 文件夹: github
#    📝 描述: GitHub operations via gh CLI
#    📍 路径: /home/user/.nvm/versions/node/v22.22.0/lib/node_modules/openclaw/skills/github
#
# 2. weather
#    📁 文件夹: weather
#    📝 描述: Get current weather and forecasts
#    📍 路径: /home/user/.nvm/versions/node/v22.22.0/lib/node_modules/openclaw/skills/weather
#
# ...

Requirements

  • Python 3.6 or higher
  • OpenClaw installed (via npm or nvm)
  • Sufficient permissions to write to OpenClaw skills directory

Error Handling

Common Errors

Error: ❌ 未找到 OpenClaw 安装位置

  • Solution: Install OpenClaw first using npm install -g openclaw

Error: ❌ ZIP 文件不存在

  • Solution: Check the filename and path

Error: ❌ ZIP 文件不包含 SKILL.md

  • Solution: Ensure the ZIP file is a valid skill from clawhub.ai

Error: ⚠️ Skill 已存在

  • Solution: Confirm if you want to overwrite or use a different skill

Error: ❌ Gateway 重启失败

  • Solution: Manually restart Gateway using openclaw daemon restart

Advanced Usage

Custom OpenClaw Path

If the script cannot find OpenClaw automatically, you can modify the OPENCLAW_PATH variable in the script:

OPENCLAW_PATH = "/custom/path/to/openclaw"

Skip Gateway Restart

To restart Gateway manually, comment out the restart call:

# restart_gateway(openclaw_root)

Troubleshooting

Permission Denied

If you encounter permission errors:

# Fix permissions
chmod 755 ~/.nvm/versions/node/*/lib/node_modules/openclaw/skills

Skill Not Appearing in OpenClaw

After installation, if the skill doesn't appear:

  1. Restart Gateway manually:
   openclaw daemon restart
  1. Check OpenClaw logs:
   openclaw logs --follow
  1. Verify skill structure:
   ls -la ~/.nvm/versions/node/*/lib/node_modules/openclaw/skills/your-skill/

Changelog

Version 1.0.0 (2025-02-26)

Initial Release

Features:

  • Automatic OpenClaw detection
  • ZIP file installation from clawhub.ai
  • File search and interactive selection
  • Duplicate checking
  • Gateway auto-restart
  • Progress feedback
  • List installed skills command

Enhancements:

  • Support for multiple ZIP file selection
  • Detailed error messages
  • Skill validation (SKILL.md, _meta.json)
  • Cross-platform compatibility (Linux, macOS, Windows)

Bug Fixes:

  • Fixed path resolution on different Node.js installations
  • Improved ZIP extraction handling
  • Better error recovery

Known Issues:

  • May require manual Gateway restart on some systems
  • Limited to single skill installation per run

Notes

  • The script searches for OpenClaw in common locations:

- ~/.nvm/versions/node/*/lib/node_modules/openclaw - /usr/local/lib/node_modules/openclaw - /opt/node_modules/openclaw

  • Skills are installed to:

- <OpenClaw Root>/skills/<skill-name>/

  • Gateway restart requires systemd support (Linux) or manual restart (other platforms)
  • For development or testing, use --list to verify skills before installation

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.22%
按下载量换算4,198

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills