← 返回 Skills 市场
wuhonglei

find-skills-in-tencent-skillhub

作者 吴洪磊 · GitHub ↗ · v1.0.4 · MIT-0
cross-platform ⚠ suspicious
926
总下载
1
收藏
3
当前安装
5
版本数
在 OpenClaw 中安装
/install find-skills-in-tencent-skillhub
功能描述
Search, install, upgrade, and manage agent skills using skillhub CLI. Use when you need to discover new skills, install skills by slug, upgrade installed ski...
使用说明 (SKILL.md)

Find Skills

Manage agent skills using the skillhub CLI — search the skill store, install new skills, upgrade existing ones, and list what's available. AI Skills Community download speed optimized for Chinese users. Skill data sourced from ClawHub.

Pre-Requirements

Install skillhub CLI

Follow skillhub.md to install Skillhub CLI.

Quick Start

Using the Script

./scripts/usage.sh '\x3Cjson>'

Examples:

# Search for skills
./scripts/usage.sh '{"action": "search", "query": "weather"}'

# Install a skill by slug
./scripts/usage.sh '{"action": "install", "slug": "weather"}'

# Upgrade all installed skills
./scripts/usage.sh '{"action": "upgrade"}'

# Check for upgrades without installing
./scripts/usage.sh '{"action": "upgrade", "check_only": true}'

# Upgrade a specific skill
./scripts/usage.sh '{"action": "upgrade", "slug": "search"}'

# List installed skills
./scripts/usage.sh '{"action": "list"}'

# Self-upgrade skillhub CLI
./scripts/usage.sh '{"action": "self-upgrade"}'

# Check for CLI upgrade without installing
./scripts/usage.sh '{"action": "self-upgrade", "check_only": true}'

Actions

Action Description Parameters
search Search skills in the store query (string), limit (number, default: 20), json (boolean)
install Install a skill by slug slug (string, required), force (boolean)
upgrade Upgrade installed skills slug (string, optional), check_only (boolean)
list List locally installed skills none
self-upgrade Self-upgrade the skillhub CLI check_only (boolean), current_version (string)

Search Options

  • query: Search query words (space-separated)
  • limit: Max results (default: 20)
  • timeout: Search timeout in seconds (default: 6)
  • json: Return results as JSON (default: false)

Install Options

  • slug: Skill identifier to install (required)
  • force: Overwrite existing directory (default: false)
  • files_base_uri: Base URI for local archives
  • download_url_template: Custom download URL template

Upgrade Options

  • slug: Specific skill to upgrade (optional, upgrades all if omitted)
  • check_only: Only check available upgrades without installing
  • timeout: Timeout for manifest fetch (default: 20)

Output Format

  • search: Returns skill metadata (name, description, slug, version)
  • install: Returns installation status and target path
  • upgrade: Returns upgrade results per skill
  • list: Returns array of installed skills with paths
  • self-upgrade: Returns CLI version info and upgrade status

Notes

  • Skills are installed to ~/.openclaw/skills/ by default
  • The CLI auto-checks for self-upgrades on startup unless --skip-self-upgrade is used
  • Use check_only: true to preview upgrades before applying
安全使用建议
This skill is a safe, well-scoped wrapper around the 'skillhub' CLI and uses jq for JSON handling. Before installing/using it: (1) confirm you trust the skillhub installer linked in SKILL.md (the link points to a Tencent COS URL) — prefer official project releases or GitHub releases if available; (2) understand that the underlying skillhub CLI will access the network and will download/install code into ~/.openclaw/skills (installed skills can contain arbitrary code), so only install skills from sources you trust; (3) avoid passing untrusted JSON input to the wrapper; (4) if you want a higher-assurance review, provide the upstream skillhub binary/source or the installer URL contents so they can be inspected.
功能分析
Type: OpenClaw Skill Name: find-skills-in-tencent-skillhub Version: 1.0.4 The skill acts as a package manager for OpenClaw skills, providing capabilities to search, install, and upgrade external code via the 'skillhub' CLI. While the wrapper script 'scripts/usage.sh' implements defensive coding practices like input validation and safe command execution to prevent shell injection, the inherent nature of a tool that manages and executes third-party code is a high-risk capability. Additionally, the 'SKILL.md' documentation directs users to download the core CLI binary from an external Tencent Cloud bucket (skillhub-1388575217.cos.ap-guangzhou.myqcloud.com).
能力评估
Purpose & Capability
The skill's name/description say it manages skills via the skillhub CLI and the only required binaries are 'skillhub' and 'jq', which is exactly what you'd expect. The script invokes skillhub subcommands and writes installed skills to ~/.openclaw/skills per the README.
Instruction Scope
SKILL.md and scripts/usage.sh instruct only to parse a JSON argument and call the skillhub CLI. The script validates JSON, sanitizes inputs to reject shell metacharacters, uses safe array-based exec (no eval), and does not read unrelated files or environment variables. Note: the invoked skillhub CLI will perform network operations and write files when installing/upgrading skills, which is expected for this purpose.
Install Mechanism
There is no packaged install spec (instruction-only), which is low-risk. However, SKILL.md directs users to an install guide hosted on a Tencent COS URL; you should verify that installer URL and the upstream skillhub distribution are trustworthy and official before running it.
Credentials
The skill requests no environment variables or credentials, which is proportionate for a CLI wrapper. The script itself does not access hidden env vars or secret paths.
Persistence & Privilege
always:false and no code requests elevated privileges or modifies other skills' configs. The skill will call skillhub which installs skills into ~/.openclaw/skills — that is expected and scoped to the user's profile.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install find-skills-in-tencent-skillhub
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /find-skills-in-tencent-skillhub 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.4
- Removed the scripts/install.sh file and related installation instructions. - Updated installation guidance to reference an external Skillhub CLI guide. - Added version and source metadata to SKILL.md.
v1.0.3
- Initial release of the skill. - Added support for searching, installing, upgrading, and managing agent skills via the skillhub CLI. - Provided a custom install script (scripts/install.sh) for setting up the CLI. - Updated installation instructions to use the local install script instead of fetching a remote script.
v1.0.2
- Added a security note advising users to download and inspect the install script before running it with bash. - No other functional or interface changes detected.
v1.0.1
- Added metadata specifying required binaries: "skillhub" and "jq" - Introduced an emoji identifier to the metadata for better visual identification
v1.0.0
- Initial release of find-skills-in-tencent-skillhub. - Enables searching, installing, upgrading, and managing agent skills via skillhub CLI. - Provides optimized download speeds for Chinese users with skill data from ClawHub. - Supports skill search by keywords, installation by slug, upgrading (all or specific skills), listing installed skills, and self-upgrading the CLI. - Includes command usage examples and details on available actions and parameters.
元数据
Slug find-skills-in-tencent-skillhub
版本 1.0.4
许可证 MIT-0
累计安装 3
当前安装数 3
历史版本数 5
常见问题

find-skills-in-tencent-skillhub 是什么?

Search, install, upgrade, and manage agent skills using skillhub CLI. Use when you need to discover new skills, install skills by slug, upgrade installed ski... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 926 次。

如何安装 find-skills-in-tencent-skillhub?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install find-skills-in-tencent-skillhub」即可一键安装,无需额外配置。

find-skills-in-tencent-skillhub 是免费的吗?

是的,find-skills-in-tencent-skillhub 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

find-skills-in-tencent-skillhub 支持哪些平台?

find-skills-in-tencent-skillhub 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 find-skills-in-tencent-skillhub?

由 吴洪磊(@wuhonglei)开发并维护,当前版本 v1.0.4。

💬 留言讨论