SKILL LAYER · AGENT 注册表 · 自动安装

AI Agent 的 技能层。

让你的 AI Agent 自动发现、比较并安装正确的可复用 Skill。

已收录技能21,471
已验证安装34
Agent 运行结果55
有实证的技能47

为什么是 OpenAgentSkill

别再把 Agent 扔进随机目录里。

Skill 注册表只有在 Agent 可以信任它时才真正有用。OpenAgentSkill 把分散的 GitHub 项目变成可排序、可审计、可安装的能力,供 Codex、Claude Code、Cursor、MCP 兼容 Agent 和自定义运行时调用。

  • 01

    从任务解析到 Skill

    Agent 从意图出发,而不是从分类页出发。注册表把任务映射成首选 Skill、备选项和匹配理由。

  • 02

    安装前先看安全

    Stars、更新、质量分、权限提示、风险和就绪说明,会和 Agent 将执行的命令一起返回。

  • 03

    人类浏览,Agent 调用 API

    人可以浏览索引;Agent 可以通过解析、推荐和 Skill 端点调用同一套注册表。

注册表响应

一次调用,得到排序后的安装路径。

{
  "task": "analyze stock news",
  "agent_decision": {
    "recommended_skill": "Last30days Skill",
    "install_command": "npx skills add ...",
    "why_recommended": [
      "matches research workflow",
      "strong Trust Score",
      "audit warnings included"
    ],
    "risk_summary": {
      "safety": "review before install",
      "notes": ["network access", "verify sources"]
    }
  }
}

架构

从意图到安装之间的四层。

OpenAgentSkill 不是另一个静态列表,而是 Agent 在写文件、打开浏览器或安装第三方代码前可以调用的注册表循环。

Indexed

21,471

Signals

Fit · Risk

Surface

API · UI

  1. 01

    Intent capture

    A human or upstream agent describes the job in natural language.

    Task · Agent · ContextIntent
  2. 02

    Recommendation engine

    ranker

    Skills are ranked by workflow fit, maintenance, stars, and audit signals.

    Fit · Quality · FreshnessRank
  3. 03

    Skill trust profile

    Each candidate gets readiness notes, install commands, and review prompts.

    Risk · Install · EvidenceAudit
  4. 04

    Agent install path

    The registry returns the next action an agent can safely execute.

    Codex · Claude Code · CursorInstall

Quickstart

From task description to install command.

  1. 01

    Ask for a skill path

    Resolve the task into one selected skill, alternatives, safety score, and install plan.

    POST /api/agent/resolve
  2. 02

    Inspect the trust profile

    Review fit, repository health, risks, and install readiness.

    GET /api/agent/skills/crawl4ai
  3. 03

    Install in an agent workflow

    Copy the command or hand it to Codex, Claude Code, Cursor, or a custom agent.

    GET /api/skills/crawl4ai/install?format=text
  4. 04

    Automate discovery

    Use the API as the registry layer behind your own agent runtime.

    curl "https://www.openagentskill.com/api/agent/resolve?task=review+pull+requests&agent=codex"
Agent surfacesCodex, Claude Code, Cursor, MCP-compatible agents, and custom internal runners.

对比

OpenAgentSkill 与其他 Skill 平台的区别。

核心判断很简单:普通目录是给人浏览的。OpenAgentSkill 是为了让 AI Agent 自动发现、比较并安装正确 Skill 而构建。

FeatureOpenAgentSkillskills.shagentskills.ioNative docs
Primary jobRecommend, compare, and install skills from one registryBrowse and install reusable agent skillsDefine the open skill format and learning pathExplain skills inside each native agent platform
Agent-facing APIYes - task-to-skill recommendations for agentsDirectory and install workflowSpec and documentation firstPlatform-specific APIs and docs
Cross-agent positioningCodex, Claude Code, Cursor, MCP-compatible agents, and custom toolsOpen agent skills ecosystemOpen format for extending agentsBest for the vendor platform
Trust and audit signalsStars, quality score, readiness notes, install reviewDirectory metadataMetadata guidance in SKILL.mdNative platform controls
Best forLetting an agent find the right skill automaticallyFinding installable skills quicklyLearning or authoring the standardUsing skills in one product

Comparison is based on each project's public positioning and documentation. The point is not that one project replaces another; OpenAgentSkill focuses on the registry and recommendation layer agents can call.

Skill layer

Registry for humans. Skill layer for agents.

Browse when you are exploring. Call the recommendation API when your agent needs to pick, compare, and install a skill automatically.