Find skills in tencent skillhub
Skill wuhonglei/skills/skills/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 skills, list available skills, or self-upgrade the skillhub CLI.From its SKILL.md
npx -y skills add wuhonglei/skills --skill find-skills-in-tencent-skillhubAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.3 KB, 730 tokens by cl100k_base, as published. Nobody here has run it
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 '<json>'
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 archivesdownload_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 installingtimeout: 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-upgradeis used - Use
check_only: trueto preview upgrades before applying
What ships with it: 1 file
3.8 KB alongside SKILL.md, 1 of them executable
scripts/
- usage.shruns3.8 KB