Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

find-skill-dual找到双技能

Agent Skill

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

总安装

353

周安装

15

GitHub Stars

公开资料未说明

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/susu81184/find-skill-dual --skill find-skill-dual

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • find-skill-dual 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

find-skill-dual · 最全 skill 中英搜索工具

Searches OpenClaw skills across ClawHub, AgentSkill.work (330+ curated repos, bilingual), and GitHub; optionally Smithery MCP for MCP servers. Presents merged deduplicated results (sorted by score/stars), with related-skill suggestions and inspect-before-install.

When to Use

  • "找 skill"、"搜索技能"、"搜索工具"、"安装 skill"
  • "有什么技能可以 X"、"找一个技能"
  • "find a skill for X", "search skills", "how do I do X", "extend capabilities"
  • ClawHub results insufficient, need "全网搜索" or "GitHub 上的 skill"
  • User wants to browse trending skills ("看看热门 skill"、"有什么新 skill")
  • User asks for "MCP 工具" or "MCP server" (optional Smithery search)

Workflow

Step 0: Intent Check

  • Browse/Explore → User says "热门"、"trending"、"有什么新"、"explore" → skip to Step 0b
  • Search → User has a topic/keyword → proceed to Step 1

Step 0b: Browse Trending (optional)

When user wants to explore without a specific query:

clawhub explore --sort trending --limit 10 2>&1
# or: clawhub explore --sort downloads --limit 10

AgentSkill.work topics (discover by topic):

curl -s "https://agentskill.work/api/facets/topics?limit=20" 2>&1
# then: curl -s "https://agentskill.work/api/skills?topic=<topic>&limit=10&sort=stars"

Present results in table, then offer to search by keyword if they want more specific results.


Step 1: Get Search Query

Extract topic/keyword from user. Examples: "pdf", "github", "weather", "翻译", "笔记".

If not specified, use broad query like "openclaw skill".

Step 2: Search ClawHub

clawhub search "<query>" 2>&1

Note: ClawHub returns vector similarity scores. Limit to top 10–15 results.

Step 3a: Search AgentSkill.work

No API key needed. Returns 330+ curated GitHub repos with bilingual metadata (description_zh):

curl -s "https://agentskill.work/api/skills?q=<query>&limit=10&sort=stars" 2>&1

Parse JSON: full_name, description or description_zh, stars, html_url. Prefer description_zh when user speaks Chinese.

Step 3b: Search GitHub

gh search repos "openclaw skill <query>" --limit 15 --json name,fullName,description,url,stargazersCount 2>&1

If gh fails (not installed or not authenticated):

gh auth status 2>&1

Use web_search: "openclaw" "skill" "<query>" site:github.com — summarize top 5–10 repos.

Step 3c (Optional): Search Smithery MCP

When user asks for "MCP 工具" or "MCP server" or wants MCP discovery. Requires SMITHERY_API_KEY in env:

curl -s -H "Authorization: Bearer $SMITHERY_API_KEY" "https://registry.smithery.ai/servers?q=<query>&pageSize=10" 2>&1

If no key, skip and mention: "Smithery MCP 搜索需要 API key,可在 smithery.ai/account/api-keys 创建"

Step 4: Merge, Deduplicate, Sort, Present

  • Deduplicate: Same skill in multiple sources (e.g. slug ≈ owner/repo) → merge into one row, mark "ClawHub + AgentSkill.work" or "ClawHub + GitHub" etc.
  • Sort: ClawHub by score; AgentSkill.work/GitHub by stars. Present: ClawHub first, then AgentSkill.work/GitHub (merged, deduped by full_name).
  • Format:
## ClawHub 结果 (按评分)
| slug | 评分 | 描述 |
|------|------|------|
| xxx | 3.6 | ... |

## AgentSkill.work / GitHub 结果 (按 Stars)
| 仓库 | Stars | 描述 |
|------|-------|------|
| owner/repo | ⭐N | ... (优先用 description_zh) |

安装 ClawHub: `clawhub install <slug> --workdir ~/.openclaw/workspace`
安装 GitHub: `git clone <html_url> ~/.openclaw/workspace/skills/<skill名>`
多 skill 仓库: `npx skills add <html_url> --skill <skill-folder>`

Step 5: Inspect Before Install

When user wants to install a specific skill, offer to inspect first:

# ClawHub
clawhub inspect <slug> 2>&1
clawhub inspect <slug> --files 2>&1

For GitHub repos: fetch README or SKILL.md URL for user to review.

Step 5b: Related Skills (AgentSkill.work)

When user shows interest in a skill that has owner/repo (from AgentSkill.work or GitHub), offer related skills:

curl -s "https://agentskill.work/api/skills/<owner>/<repo>/related" 2>&1

Parse JSON and present 3–6 related skills in a compact table. Use description_zh when user speaks Chinese.

Step 6: Install

ClawHub: clawhub install <slug> --workdir ~/.openclaw/workspace GitHub: git clone https://github.com/owner/repo ~/.openclaw/workspace/skills/<name> Multi-skill repo: npx skills add https://github.com/owner/repo --skill <folder>


When No Skills Found

If ClawHub, AgentSkill.work, and GitHub all return no relevant results:

  1. Acknowledge — "没有找到与「X」相关的 skill"
  2. Offer direct help — "我可以直接帮你解决这个问题"
  3. Suggest creating — "如果经常用到,可以自己发布: clawhub publish"

Prerequisites

  • ClawHub: clawhub (via npm i -g clawhub)
  • AgentSkill.work: no key, public REST API
  • GitHub CLI (optional): gh auth login; if unavailable, fallback to web_search
  • Smithery MCP (optional): SMITHERY_API_KEY for MCP server search; create at smithery.ai/account/api-keys

Example

User: "帮我找 pdf 相关的 skill"

  1. clawhub search pdf
  2. curl -s "https://agentskill.work/api/skills?q=pdf&limit=10&sort=stars"
  3. gh search repos "openclaw skill pdf" --limit 10 --json name,fullName,description,url,stargazersCount
  4. Merge, deduplicate, sort; show tables (use description_zh for Chinese)
  5. User picks one → offer inspect → optionally fetch related → provide install command

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.08%
按下载量换算45

Claude

28.78%
按下载量换算36

Cursor

17.8%
按下载量换算22

Gemini CLI

9.67%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills