🦀 ClawHub
Skill Recommender
by @harrylabsj
Find, filter, cluster, and recommend similar OpenClaw skills by intent, function, or use case. Use when the user wants to find同类 skill、比较多个相近 skill、判断哪个 skil...
TERMINAL
clawhub install skill-recommender📖 About This Skill
name: skill-recommender description: Find, filter, cluster, and recommend similar OpenClaw skills by intent, function, or use case. Use when the user wants to find同类 skill、比较多个相近 skill、判断哪个 skill 更适合当前任务、给出技能推荐清单、避免重复开发、或梳理已有 skill 版图。
Skill Recommender
Use this skill to recommend the best matching skills from an existing skill collection.
Default workflow
1. Identify the user's target intent: - exact function - adjacent use case - duplicate/overlap check - best skill recommendation 2. Scan available skills from a given directory. 3. Match by: - name - description - keywords - domain words 4. Group similar skills into clusters when needed. 5. Return a ranked recommendation with reasons.
Use the bundled scripts
1. Recommend similar skills
Usescripts/recommend_skills.js when the user gives a query such as:
Example:
node scripts/recommend_skills.js '{
"query": "家庭采购 库存 提醒",
"skills_dir": "/Users/jianghaidong/.openclaw/workspace/skills",
"limit": 8
}'
2. Cluster related skills
Usescripts/cluster_skills.js when the user wants a grouped view of similar skills, duplicates, or overlapping categories.3. Avoid duplicate skill development
Usescripts/check_skill_dedup.js when the user is about to build a new skill and wants to know:
Typical triggers:
Output contract
Default output sections:
Recommendation rules
Read references as needed
references/recommendation-rules.md for ranking heuristics.references/output-schema.md for the output schema.references/dedup-mode.md when the user wants to avoid duplicate skill development.