Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

skill-finder技能查找器

Agent Skill

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

总安装

372

周安装

16

GitHub Stars

5

下载量

131
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ckorhonen/claude-skills --skill skill-finder

简介

动态发现、安装和创建新技能以扩展 Agent 能力。

  • 在遇到不熟悉的技术、专用 API 或领域知识缺口时主动激活。
  • 通过提问引导用户明确需求,再调用对应技能完成具体任务。
  • 使用前建议核实技能来源可靠性,避免引入未经测试的功能模块。
  • skill-finder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Skill Finder

Dynamically discover, install, and create skills to expand Claude's capabilities on-demand.

When to Activate

PROACTIVELY use this skill when:

  1. User requests new capability

- "I want to know kung-fu" - "Help me learn about [topic]" - "I need to work with [unfamiliar technology]"

  1. Specialized domain encountered

- Niche APIs (NFT marketplaces, proprietary systems) - Domain-specific formats/protocols - Industry-specific tooling

  1. Knowledge gap recognized

- Task requires expertise you're uncertain about - Unfamiliar tools, frameworks, or services - User asks about something highly specialized

  1. Recurring specialized need

- Pattern suggests ongoing work in specialized area - Multiple related requests in same domain

DO NOT activate for:

  • General programming tasks (algorithms, data structures)
  • Common frameworks (React, Express, Django) - base model handles these
  • One-off simple queries
  • Tasks you can handle confidently

Instructions

Phase 1: Extract Search Keywords

Interpret the user's request and extract relevant search terms:

  • "I want to know kung-fu" → search: martial arts combat self-defense
  • "Help with Stripe billing" → search: stripe payments billing api
  • "Work with NFTs on OpenSea" → search: opensea nft marketplace api

Use multiple related keywords to maximize match potential.

Phase 2: Search the Registry

Query the skills API:

https://claude-plugins.dev/api/skills?q=<keywords>

Use WebFetch to retrieve results. The API returns:

{
  "skills": [{
    "name": "skill-name",
    "namespace": "@author/repo/skill-name",
    "description": "What the skill does...",
    "stars": 12345,
    "installs": 678,
    "metadata": {
      "rawFileUrl": "https://raw.githubusercontent.com/..."
    }
  }],
  "total": 100
}

Phase 3: Evaluate Results

Rank by:

  1. Relevance - Does description match the actual need?
  2. Quality - Star count as credibility signal:

- 1000 stars: High confidence - 100 stars: Moderate confidence - < 100 stars: Review carefully

  1. Specificity - Prefer targeted skills over broad ones

Credible match criteria:

  • Description clearly addresses the task
  • AND (stars > 500 OR installs > 50)
  • No obvious security concerns

Phase 4a: Auto-Install (if credible match found)

Run the install command:

npx claude-plugins skills install <namespace> --local

Where <namespace> is the full namespace from the API (e.g., @anthropics/claude-code/frontend-design).

The --local flag installs to the project's .claude/skills/ directory.

After installation, inform the user:

I've learned <skill-name> - [brief description of capability]. Let me apply this to your task.

Then immediately use the new skill to address the user's original request.

Phase 4b: Create Skill (if no credible match)

Only create a skill if:

  • No good matches in the registry
  • Task is genuinely specialized (not just complex)
  • Would provide reusable capability for this domain
  • Base Claude genuinely needs augmentation

Do NOT create if:

  • Task is complex but not specialized
  • One-off operation unlikely to recur
  • Base model can handle it reasonably
  • Similar capability already exists locally

Creation process:

  1. Research the domain

- Use WebSearch to understand the technology/domain - Read official documentation - Identify key concepts, APIs, patterns

  1. Design the skill

- Determine what instructions Claude needs - Identify any scripts or references required - Plan the skill structure

  1. Create the skill files Create directory: .claude/skills/<skill-name>/ Create SKILL.md with: --- name: skill-name description: Clear description of what it does and when to use it. --- Add body with:

- When to use - Step-by-step instructions - Examples - Any required setup

  1. Add supporting files if needed

- scripts/ for automation - references/ for documentation - templates/ for boilerplate

  1. Inform the user
I've created a custom skill for [domain] based on my research. I can now [list capabilities]. Let me help with your task.

Examples

Example 1: Skill exists in registry

User: "I want to build beautiful frontend interfaces"

Claude thinking:
- This is a specialized design skill request
- Search: "frontend design ui interface"
- Found: frontend-design with 45k stars
- High relevance + high quality = credible match

Claude action:
npx claude-plugins skills install @anthropics/claude-code/frontend-design --local

Claude response:
"I've learned frontend-design - expertise in creating distinctive, production-grade interfaces. Let me help you build something beautiful..."

Example 2: Proactive discovery

User: "Help me integrate OpenSea's API to list NFTs"

Claude thinking:
- NFT marketplace API = specialized domain
- I should check for existing skills
- Search: "opensea nft api marketplace"
- Found: opensea-api with good ratings

Claude action:
npx claude-plugins skills install @creator/skills/opensea-api --local

Claude response:
"I've equipped myself with OpenSea API expertise. I can now help you authenticate, list items, fetch collections, and handle marketplace transactions. Let's set up your NFT listing..."

Example 3: No match - create skill

User: "I need to work with Acme Corp's proprietary data format"

Claude thinking:
- Very specialized/proprietary domain
- Search: "acme corp data format"
- No credible matches found
- This is genuinely specialized, not just complex
- User likely needs this repeatedly
- I should create a skill

Claude action:
1. WebSearch for Acme Corp documentation
2. Research the data format specification
3. Create .claude/skills/acme-data-handler/SKILL.md

Claude response:
"I've created a custom skill for Acme Corp data formats based on their documentation. I can now parse, validate, and transform Acme data files. Let me help with your specific task..."

Example 4: Don't over-activate

User: "Write a binary search implementation"

Claude thinking:
- This is a standard algorithm
- Base model handles this perfectly
- Not specialized, just programming
- No skill needed

Claude action:
Proceed directly with the task without skill search.

Troubleshooting

npx command fails

If npx claude-plugins isn't available, fall back to manual installation:

  1. Fetch the skill's rawFileUrl from the API response
  2. Use WebFetch to get the SKILL.md content
  3. Check for references to scripts/ or other files
  4. Manually create the skill directory and files in .claude/skills/

No search results

  1. Try broader keywords
  2. Try synonyms or related terms
  3. If still no results, consider creating a custom skill

Multiple good matches

Prefer:

  1. Higher star count
  2. More specific description
  3. More recent updates (check updatedAt)

Install the best match and mention alternatives exist if user wants different approach.

Quality Checklist

Before auto-installing, verify:

  • Description clearly matches user's need
  • No security red flags in description
  • Reasonable popularity (stars/installs)
  • Source is from GitHub (trusted platform)

Before creating a skill, verify:

  • No existing skill covers this
  • Task is genuinely specialized
  • Skill would be reusable
  • I have enough information to create useful instructions

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.1%
按下载量换算49

Claude

31.29%
按下载量换算41

Cursor

16.16%
按下载量换算21

Gemini CLI

9.08%
按下载量换算12

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills