Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

skills-discovery技能发现

Agent Skill

skills-discovery 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,198

周安装

48

GitHub Stars

512

下载量

388
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skills-discovery(技能发现)
来源仓库:https://github.com/kamalnrf/claude-plugins
仓库路径:skills/skills-discovery
安装命令:
npx skills add https://github.com/kamalnrf/claude-plugins --skill skills-discovery
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/kamalnrf/claude-plugins --skill skills-discovery

简介

用于查找、检索和筛选相关信息。

  • 适合在技能发现或插件集成场景中使用。
  • 可通过来源仓库和 README 核验具体用法。
  • 安装命令:npx skills add https://github.com/kamalnrf/claude-plugins --skill skills-discovery。
  • 建议确认权限范围及是否会触发联网或文件读写。

SKILL.md

Skills Discovery

You can extend your capabilities by discovering and installing Agent Skills from the claude-plugins.dev registry. Skills provide specialized knowledge, tools, and techniques for specific technologies, frameworks, and domains.

When to search for skills

First, check if an installed skill matches the task. If not, search the registry—specialized skills may exist that you haven't installed yet.

Before starting any non-trivial task, ask yourself:

  1. Do I have a skill for this? → Use it
  2. Might one exist that I don't have? → Search the registry

Search proactively when:

  • The task involves specific technologies, frameworks, or file formats
  • You're about to do something where best practices matter (testing, deployment, APIs, documentation)
  • The domain is specialized (PDF processing, data pipelines, ML workflows)
  • You notice yourself about to give generic advice where expert patterns would help

Also search when users explicitly ask to find, install, or manage skills.

Discovery workflow

Use the registry API for search (the CLI's search command is interactive and not suitable for programmatic use):

curl "https://claude-plugins.dev/api/skills?q=QUERY&limit=20&offset=0"

Parameters:

  • q: Search query (e.g., "frontend", "python", "pdf")
  • limit: Results per page (max 100)
  • offset: Pagination offset

Response structure:

{
  "skills": [
    {
      "id": "...",
      "name": "skill-name",
      "namespace": "@owner/repo/skill-name",
      "sourceUrl": "https://github.com/...",
      "description": "...",
      "author": "...",
      "installs": 123,
      "stars": 45
    }
  ],
  "total": 100,
  "limit": 10,
  "offset": 0
}

Search strategies

The registry indexes skill names, descriptions, and tags. Construct queries that match how skill authors describe their work.

Query construction:

  • Use 1-3 specific terms (too broad = noise, too narrow = misses)
  • Prefer widely-used terminology over project-specific jargon
  • Technology + task often outperforms either alone
  • If results are poor, broaden or try synonyms

Installation

Determine which client the user is working in before installing. If unclear, ask.

Supported clients:

  • claude-code — Claude Code CLI
  • codex — Codex
  • cursor — Cursor editor
  • amp - amp CLI
  • opencode - OpenCode CLI
  • goose - Goose CLI
  • github — VSCode/ github
  • vscode — VS Code
  • letta — Letta CLI
  • gemini - Gemini CLI
  • windsurf - Windsurf editor
  • antigravity - Antigravity
  • trae - Trae
  • qoder - Qoder
  • codebuddy - CodeBuddy
  • Client selection:
npx skills-installer install @owner/repo/skill-name --client claude-code  # default
npx skills-installer install @owner/repo/skill-name --client cursor
npx skills-installer install @owner/repo/skill-name --client vscode

Scope selection:

npx skills-installer install @owner/repo/skill-name  # global (default)
npx skills-installer install @owner/repo/skill-name --local  # project-specific

Combined:

npx skills-installer install @owner/repo/skill-name --client cursor --local

Defaults:

  • Client: claude-code
  • Scope: global

Management

# List installed skills
npx skills-installer list

# Uninstall a skill
npx skills-installer uninstall @owner/repo/skill-name

Presenting results to users

When you find relevant skills:

  1. Show 3-5 most relevant results maximum
  2. Include: name, namespace, description, stars, installs
  3. Explain how each skill helps with their *specific* task
  4. Prioritize those with high installs
  5. Always ask for confirmation before installing
  6. Offer to help directly if no good skill exists or user declines

Examples

Example: Proactive suggestion

User: "I need to create a Django REST API"

curl "https://claude-plugins.dev/api/skills?q=django&limit=10"

Present suggestion:

I found some skills that could help:

1. django-rest-framework-expert (@anthropics/claude-code/django-rest-framework-expert)
   Description: Django REST API development with best practices
   ⭐ 234 stars • 1,567 installs

Would you like me to install this, or help you directly without installing a skill?

Example: Explicit search request

User: "find skills for Python"

curl "https://claude-plugins.dev/api/skills?q=python&limit=10"

Present results and ask which to install.

API reference

EndpointDescription
GET /api/skills/search?q=QUERYSearch skills
GET /api/skills/@owner/repo/skill-nameGet skill details

Web registry: https://claude-plugins.dev/skills

Troubleshooting

No results found:

Installation fails:

  • Verify namespace format: @owner/repo/skill-name
  • Check skill exists in registry
  • Verify directory permissions

Skill not activating:

  • User may need to restart their client
  • Verify correct installation directory
  • Confirm SKILL.md exists in installation path

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

30.23%
按下载量换算117

Antigravity

23.45%
按下载量换算91

Gemini CLI

19.29%
按下载量换算75

OpenCode

11.26%
按下载量换算44

trae

7.95%
按下载量换算31

Codex

3.19%
按下载量换算12

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills