
Skill Finder Cn
- 91 installs
- 82 repo stars
- Updated August 2, 2026
- aaaaqwq/claude-code-skills
skill-finder-cn is a bilingual skill that discovers and installs ClawHub skills from natural-language requests via the clawhub CLI.
About
skill-finder-cn is a skill that helps users discover and install skills from the ClawHub registry. When a user asks what skill can do a given task, it extracts keywords, runs clawhub search, and recommends and installs matching skills. It is a bilingual Chinese/English wrapper around the clawhub CLI. It requires the clawhub binary to be available.
- Helps discover and install ClawHub skills from natural-language needs
- Wraps clawhub search, inspect, and install commands
- Bilingual (Chinese/English) skill-finder for 'what skill can do X' queries
Skill Finder Cn by the numbers
- 91 all-time installs (skills.sh)
- Ranked #270 of 781 Skill Development skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
skill-finder-cn capabilities & compatibility
- Capabilities
- skill discovery · skill install · registry search
- Use cases
- research
What skill-finder-cn says it does
帮助发现和安装 ClawHub Skills | Discover and install ClawHub Skills
clawhub search "<用户需求>"
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill skill-finder-cnAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 91 |
|---|---|
| repo stars | ★ 82 |
| Last updated | August 2, 2026 |
| Repository | aaaaqwq/claude-code-skills ↗ |
What it does
Discover and install ClawHub skills from a plain-language description of what you need.
Who is it for?
Finding and installing the right ClawHub skill for a described task
Skip if: Registries other than ClawHub, or authoring skills
When should I use this skill?
A user asks what skill can do X or wants help finding and installing a skill
What you get
A shortlist of relevant ClawHub skills with install commands
By the numbers
- 5-step discovery workflow
- wraps 3 clawhub commands (search, inspect, install)
Files
Skill 查找器
帮助用户发现和安装 ClawHub 上的 Skills。
功能
当用户问:
- "有什么 skill 可以帮我...?"
- "找一个能做 X 的 skill"
- "有没有 skill 可以..."
- "我需要一个能...的 skill"
这个 Skill 会帮助搜索 ClawHub 并推荐相关的 Skills。
使用方法
1. 搜索 Skills
clawhub search "<用户需求>"2. 查看详情
clawhub inspect <skill-name>3. 安装 Skill
clawhub install <skill-name>工作流程
1. 理解用户需求
2. 提取关键词
3. 搜索 ClawHub
4. 列出相关 Skills
5. 提供安装建议示例
用户: "有什么 skill 可以帮我监控加密货币价格?"
搜索: clawhub search "crypto price monitor"
返回: 相关的 Skills 列表
---
帮助用户发现需要的 Skills 🔍
{
"ownerId": "kn71y3mdbcx5dyhwxv1t7sm82x81a168",
"slug": "skill-finder-cn",
"version": "1.0.0",
"publishedAt": 1771323389748
}{
"version": 1,
"registry": "https://clawhub.ai",
"slug": "skill-finder-cn",
"installedVersion": "1.0.0",
"installedAt": 1771857062482
}
{
"name": "skill-finder-cn",
"version": "1.0.0",
"description": "Skill Finder CN | Skill 查找器"
}
#!/bin/bash
# Skill 搜索脚本
QUERY="$1"
LIMIT="${2:-10}"
if [ -z "$QUERY" ]; then
echo "用法: search.sh <关键词> [数量]"
exit 1
fi
echo "🔍 搜索: $QUERY"
echo "================================"
clawhub search "$QUERY" --limit "$LIMIT"