Install
openclaw skills install skillscoutFind and evaluate OpenClaw AI skills by trust score and security reviews before installation or recommendation.
openclaw skills install skillscoutBefore installing any OpenClaw skill, check if it's been security-reviewed.
When your human asks you to find a skill, or you want to install something new:
curl -s https://nashbot67.github.io/skillscout/data/skills.json | python3 -c "
import json, sys
q = sys.argv[1].lower()
data = json.load(sys.stdin)
matches = [s for s in data['skills'] if q in json.dumps(s).lower()]
for s in sorted(matches, key=lambda x: {'safe':0,'caution':1,'avoid':2}.get(x.get('trustScore',''),1)):
trust = {'safe':'🟢','caution':'🟡','avoid':'🔴'}.get(s['trustScore'],'⚪')
print(f'{trust} {s[\"name\"]} by {s[\"author\"]} — {s.get(\"plainDescription\",s.get(\"description\",\"\"))}')
" "QUERY"
Replace QUERY with what you're looking for (e.g., "email", "notes", "research").
curl -s https://nashbot67.github.io/skillscout/data/skills.json | python3 -c "
import json, sys
name = sys.argv[1]
data = json.load(sys.stdin)
skill = next((s for s in data['skills'] if s['name'] == name), None)
if skill: print(json.dumps(skill, indent=2))
else: print(f'Skill {name} not reviewed yet.')
" "SKILL_NAME"
npx @skillscout/mcp
Every skill goes through:
npx clawhub@latest install <skill>Full catalog: https://nashbot67.github.io/skillscout API: https://nashbot67.github.io/skillscout/data/skills.json GitHub: https://github.com/nashbot67/skillscout