← 返回
AI智能

skillscope

AI 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...
AI 代理技能决策引擎。用于在用户需要查找、评估或安装技能时——根据质量和安全评分推荐任何任务的最佳技能。
smilelight
AI智能 clawhub v1.0.1 2 版本 99860.7 Key: 无需
★ 1
Stars
📥 697
下载
💾 33
安装
2
版本
#latest

概述

SkillScope — Skill Decision Engine

When a user needs a skill, don't just search — get a personalized recommendation with quality and safety scoring.

Core Workflow

  1. User describes a task → call recommend → get best skill + alternatives with reasons
  2. User wants to install → provide the install command from the response
  3. User wants details → call detail for full analysis

Base URL

https://skillscope.cn/api/v1

No API key required (20 req/min, 200 req/day).

Recommend (Primary Tool)

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 description
  • context.platform: macos / linux / windows
  • context.region: cn / us (auto-inferred if omitted)
  • context.budget: free / paid / any (default any)
  • context.skill_level: beginner / intermediate / advanced
  • explain: 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.

Install

Users can install skills via:

  • clawhub install (official ClawHub CLI)
  • skillscope install (China mirror, pip install skillscope)

To get installable files via API:

curl "https://skillscope.cn/api/v1/install/weather/files"

Search

For keyword-based search (when recommend is not appropriate):

curl "https://skillscope.cn/api/v1/search?q=web+scraping"

Skill Detail

Full analysis including security profile, quality scores, dependencies:

curl "https://skillscope.cn/api/v1/skills/steipete/weather"

Other Endpoints

EndpointDescription
-----------------------
GET /categoriesList all 30 categories with counts
GET /categories/{name}Skills in a category (paginated)
GET /leaderboard?sort=downloadsRankings (downloads/stars/installs)
GET /authors/{handle}Author profile + their skills
GET /similar/{skill_id}Similar skills (vector similarity)
GET /starter-kitsCurated skill bundles (30 kits)
GET /articlesGuide articles and top-lists

Notes

  • Security grades: A (safe) / B (limited access) / C (review needed) / D (risky)
  • Quality scores: 0-10
  • Skill IDs: author/slug format (e.g. steipete/weather)
  • Slugs work too: weather resolves to steipete/weather
  • Rate limits: anonymous 20/min + 200/day, API key 60/min + 5000/day
  • Recommend has separate limits: 5/min, 10/day (anonymous) or 100/day (API key)

版本历史

共 2 个版本

  • v1.0.0
    2026-03-31 07:27 安全 安全
  • v1.0.1 当前
    2026-03-19 02:54 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,353 📥 317,888
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,058 📥 797,394
productivity

memory-to-notion

smilelight
将对话记忆总结并归档至 Notion。当用户说“总结记忆”、“归档对话”、“保存记忆”、“同步记忆”等时触发。
★ 0 📥 663