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.
install
source · Clone the upstream repo
git clone https://github.com/wuhonglei/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/wuhonglei/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/find-skills-in-tencent-skillhub" ~/.claude/skills/wuhonglei-skills-find-skills-in-tencent-skillhub && rm -rf "$T"
manifest:
skills/find-skills-in-tencent-skillhub/SKILL.mdsource content
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 skills in the store | (string), (number, default: 20), (boolean) |
| Install a skill by slug | (string, required), (boolean) |
| Upgrade installed skills | (string, optional), (boolean) |
| List locally installed skills | none |
| Self-upgrade the skillhub CLI | (boolean), (string) |
Search Options
: Search query words (space-separated)query
: Max results (default: 20)limit
: Search timeout in seconds (default: 6)timeout
: Return results as JSON (default: false)json
Install Options
: Skill identifier to install (required)slug
: Overwrite existing directory (default: false)force
: Base URI for local archivesfiles_base_uri
: Custom download URL templatedownload_url_template
Upgrade Options
: Specific skill to upgrade (optional, upgrades all if omitted)slug
: Only check available upgrades without installingcheck_only
: Timeout for manifest fetch (default: 20)timeout
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
by default~/.openclaw/skills/ - The CLI auto-checks for self-upgrades on startup unless
is used--skip-self-upgrade - Use
to preview upgrades before applyingcheck_only: true