Install
openclaw skills install skill-explorerSystematically discover, evaluate, compare, and assess OpenClaw skills to find the right, safe, and high-quality option for your specific task.
openclaw skills install skill-explorerA systematic framework for discovering, evaluating, and comparing OpenClaw skills. Use when you need to find the right skill for a specific task, compare multiple options, or assess skill quality and safety.
This skill provides a battle-tested workflow for skill exploration:
Use skill-explorer when:
Clarify the requirements:
What task does the user need to accomplish?
What are the must-have vs nice-to-have features?
Any constraints (budget, platform, language)?
What's the priority: functionality, popularity, or safety?
Document the search criteria:
Primary search:
clawhub search <primary-keyword>
clawhub search <related-term-1> <related-term-2>
Capture initial results: Record top 5-10 results with:
For each promising skill, collect:
clawhub inspect <skill-name> --json
Extract key metrics:
| Metric | Why It Matters |
|---|---|
stats.stars | Community quality indicator |
stats.downloads | Popularity/visibility |
stats.installsAllTime | Actual adoption |
stats.installsCurrent | Active usage (low churn = good) |
stats.versions | Maintenance activity |
owner.handle | Developer reputation |
updatedAt | Freshness |
Read SKILL.md:
Find alternatives and complements:
# Search with related keywords
clawhub search <alternative-keyword-1>
clawhub search <alternative-keyword-2>
# Look for broader/narrower skills
clawhub search <broader-category>
clawhub search <specific-subtask>
Expand the candidate pool:
Download and inspect promising skills:
# Install to temp directory for inspection
cd /tmp && mkdir skill-check
cd skill-check && clawhub install <skill-name>
File structure analysis:
find . -type f | sort
Look for:
SKILL.md - Main documentationscripts/ - Executable codepackage.json / requirements.txt - Dependencies_meta.json - MetadataStatic code analysis:
# Check for suspicious patterns
grep -r -E "(eval\(|exec\(|Function\(|atob\(|btoa\()" .
grep -r -E "(crypto|encrypt|decrypt|base64|0x[0-9a-f]{20,})" .
# Check for network/API calls
grep -r -E "(https?://|api\.|token|key|secret|password)" .
# Check for file system operations
grep -r -E "(fs\.|writeFile|readFile|unlink|chmod)" .
Risk classification:
| Level | Indicators |
|---|---|
| 🟢 Low | Pure documentation, no scripts, no network |
| 🟡 Medium | Scripts but official APIs only, read-only ops |
| 🔴 High | Obfuscated code, unknown network endpoints, write operations |
Special checks:
Create comparison table:
| Skill | Stars | Installs | Safety | Best For |
|-------|-------|----------|--------|----------|
| skill-a | ⭐⭐ 25 | 45 | 🟢 | General use |
| skill-b | ⭐ 8 | 12 | 🟢 | Specific niche |
| skill-c | ⭐⭐⭐ 60 | 120 | 🟡 | Power users |
Write detailed analysis:
Present clear options:
## Recommendation
### Option A: Best Overall → [skill-name]
- Why: Highest quality + safety
- Trade-off: May lack advanced features
### Option B: Most Popular → [skill-name]
- Why: Community validated
- Trade-off: Higher complexity
### Option C: Specific Need → [skill-name]
- Why: Perfect fit for [specific use case]
- Trade-off: Less generalizable
Get user approval:
After completing an exploration:
Update EVOLUTION.md:
Create exploration report:
reports/skill-exploration-{topic}.mdTrack decisions:
# Skill Exploration Report: [Topic]
## Executive Summary
Recommended: [skill-name] (⭐⭐ 50 stars, 80 installs, 🟢 safe)
## Skills Discovered
### Tier 1: Strong Candidates
| Skill | Stars | Installs | Safety | Verdict |
|-------|-------|----------|--------|---------|
| ... | ... | ... | ... | ... |
### Tier 2: Alternatives
...
## Detailed Analysis
### [skill-name]
**Overview:** ...
**Strengths:** ...
**Weaknesses:** ...
**Safety Review:** ...
**Best For:** ...
## Recommendations
1. **Install:** [skill] - [reason]
2. **Consider:** [skill] - [reason]
3. **Skip:** [skill] - [reason]
## Next Steps
- [ ] User approval for recommended skills
- [ ] Security review for approved skills
- [ ] Installation and testing
- [ ] Update EVOLUTION.md
This skill helps you make informed decisions about skill adoption, ensuring you find the right tool for the job while maintaining security standards.