Install
openclaw skills install skillscopeAI Agent Skill decision engine. Use when users need to find, evaluate, or install skills — recommends the best skill for any task with quality/safety scoring, personalized to platform/region/budget. Covers 26,000+ skills across ClawHub and GitHub.
openclaw skills install skillscopeWhen a user needs a skill, don't just search — get a personalized recommendation with quality and safety scoring.
install command from the responsehttps://skillscope.cn/api/v1
No API key required (20 req/min, 200 req/day).
When to use: User asks "find me a skill for X", "is there a tool that can Y", "what's the best skill for Z", or describes any task that a skill could help with.
curl -X POST "https://skillscope.cn/api/v1/recommend" \
-H "Content-Type: application/json" \
-d '{"task": "translate a PDF document to Chinese", "explain": true}'
With context for better results:
curl -X POST "https://skillscope.cn/api/v1/recommend" \
-H "Content-Type: application/json" \
-d '{
"task": "translate a PDF document to Chinese",
"context": {"platform": "macos", "region": "cn", "budget": "free"},
"explain": true
}'
Parameters:
task (required): natural language task descriptioncontext.platform: macos / linux / windowscontext.region: cn / us (auto-inferred if omitted)context.budget: free / paid / any (default any)context.skill_level: beginner / intermediate / advancedexplain: include LLM-generated reasons (default true, set false for ~250ms response)Response: recommendation (top pick) + alternatives[], each with skill_id, name, quality, safety, score, reason, install command.
Users can install skills via:
clawhub install <slug> (official ClawHub CLI)skillscope install <slug> (China mirror, pip install skillscope)To get installable files via API:
curl "https://skillscope.cn/api/v1/install/weather/files"
For keyword-based search (when recommend is not appropriate):
curl "https://skillscope.cn/api/v1/search?q=web+scraping"
Full analysis including security profile, quality scores, dependencies:
curl "https://skillscope.cn/api/v1/skills/steipete/weather"
| Endpoint | Description |
|---|---|
GET /categories | List all 30 categories with counts |
GET /categories/{name} | Skills in a category (paginated) |
GET /leaderboard?sort=downloads | Rankings (downloads/stars/installs) |
GET /authors/{handle} | Author profile + their skills |
GET /similar/{skill_id} | Similar skills (vector similarity) |
GET /starter-kits | Curated skill bundles (30 kits) |
GET /articles | Guide articles and top-lists |
author/slug format (e.g. steipete/weather)weather resolves to steipete/weather