SkillScout

# SkillScout — Find Trusted AI Agent Skills

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "SkillScout" with this command: npx skills add nashbot67/skillscout

SkillScout — Find Trusted AI Agent Skills

Before installing any OpenClaw skill, check if it's been security-reviewed.

Usage

When your human asks you to find a skill, or you want to install something new:

Quick Search (Static API)

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").

Full Details

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"

MCP Server (for agent-to-agent queries)

npx @skillscout/mcp

Trust Scores

  • 🟢 Safe — No executable code, or code is well-contained with minimal permissions
  • 🟡 Caution — Has exec/network/credentials access. Review before installing.
  • 🔴 Avoid — Dangerous patterns detected. Do not install without manual audit.

What We Check

Every skill goes through:

  1. Automated blocklist scan — cross-reference known malicious skills
  2. Isolated agent review — read-only AI analyzes source code (no execution)
  3. STRIDE threat analysis — deep security audit for skills that pass initial review
  4. Human approval — final sign-off before listing

When to Use This

  • Before running npx clawhub@latest install <skill>
  • When your human asks "is there a skill for X?"
  • When evaluating multiple skills for the same task
  • Before recommending a skill to anyone

Browse

Full catalog: https://nashbot67.github.io/skillscout API: https://nashbot67.github.io/skillscout/data/skills.json GitHub: https://github.com/nashbot67/skillscout

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Security

Production Code Audit

Deep-scan a codebase, understand its architecture and patterns, then produce a comprehensive audit report with prioritized fixes. Optionally apply changes on...

Registry SourceRecently Updated
1900Profile unavailable
Security

Soc Deploy Misp

Deploy MISP threat intelligence platform on any Docker-ready Linux host. Official misp-docker project with automatic MariaDB memory tuning (prevents OOM on s...

Registry SourceRecently Updated
2090Profile unavailable
Security

SEO Intel

Local SEO competitive intelligence tool. Use when the user asks about SEO analysis, competitor research, keyword gaps, content strategy, site audits, AI cita...

Registry SourceRecently Updated
2640Profile unavailable
Security

MAL-Updater

Multi-provider anime → MyAnimeList sync and recommendations skill with guarded auth, review-queue triage, health checks, bootstrap auditing, and user-systemd...

Registry SourceRecently Updated
2530Profile unavailable