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

rush-find-skills急忙寻找技能

Agent Skill

用于查找、发现和安装 Agent Skills 的能力包,适合在用户需要扩展 Agent 能力时按任务场景检索可用 Skill,并给出来源、安装命令和候选项。使用时应核对来源站点、安装量、仓库状态和权限范围,避免把未经确认的第三方能力包直接推荐为安全或官方方案。

总安装

19,430

周安装

786

GitHub Stars

公开资料未说明

下载量

6,099
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install rush-find-skills

简介

帮助用户发现和安装可用的 Agent Skills,扩展智能体能力边界。

  • 根据任务场景推荐相关技能包,并提供来源站点和安装命令。
  • 支持关键词检索和分类筛选,覆盖多领域实用工具集合。
  • 推荐第三方技能时应核对仓库状态和权限范围,避免安全风险。
  • 不建议将未经测试的技能直接用于生产环境关键流程。rush-find-skills 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
clawdhub-find-skills
description
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. Uses reskill as the package manager.
version
0.4.0
author
reskill
tags

Find Skills (reskill)

This skill helps you discover and install skills from the reskill ecosystem.

Security & Trust

This skill instructs the agent to run CLI commands via reskill, an open-source, Git-based package manager for AI agent skills.

Why a specific registry? reskill supports multiple registries. This skill defaults to the Rush community registry (https://rush.zhenguanyu.com/) — the primary public registry for the reskill ecosystem, similar to how npm defaults to https://registry.npmjs.org. Users can override it at any time via --registry, the RESKILL_REGISTRY environment variable, or defaults.publishRegistry in skills.json.

CLI execution approach: To avoid downloading remote code on every invocation, we recommend installing reskill globally first:

npm install -g reskill

If a global installation is not available, npx reskill@latest can be used as a fallback. The agent should check for a global install before falling back to npx.

Key Principles: 1. Search → Present → Ask → Install — always show results first, ask the user before installing. 2. Be registry-aware — use the configured registry, tell the user which registry you're searching. 3. Prefer local CLI — use globally installed reskill when available; fall back to npx only if needed.

When to Use This Skill

Use this skill when the user:

  • Asks "how do I do X" where X might be a common task with an existing skill
  • Says "find a skill for X" or "is there a skill for X"
  • Asks "can you do X" where X is a specialized capability
  • Expresses interest in extending agent capabilities
  • Wants to create, write, or publish a skill to a registry
  • Wants to search for tools, templates, or workflows
  • Mentions they wish they had help with a specific domain (design, testing, deployment, etc.)

Quick Recommendations

For these well-known intents, skip the search and directly recommend the corresponding skill:

User IntentRecommended Skill
Create, write, or publish a skill to the registry@kanyun/rush-reskill-usage

If the skill is not already installed, offer to install it. Then proceed with Step 4 (Determine Target Agents) as usual.

What is reskill?

reskill is a Git-based package manager for AI agent skills. It provides declarative configuration, version locking, and seamless synchronization for managing skills across projects and teams.

Key commands for skill discovery:

  • reskill find <query> — Search for skills by keyword
  • reskill find <query> --json — Search with machine-readable JSON output
  • reskill install <ref> — Install a skill
  • reskill list — List installed skills
  • reskill info <skill> — Show skill details

How to Help Users Find Skills

Step 0: Resolve CLI and Registry

CLI resolution: Check if reskill is installed globally. If available, use reskill directly. Otherwise fall back to npx reskill@latest.

which reskill

Registry resolution (highest to lowest priority):

  1. --registry <url> CLI option
  2. RESKILL_REGISTRY environment variable
  3. defaults.publishRegistry in skills.json
  4. Default: https://rush.zhenguanyu.com/

If none of the first three are set, pass --registry https://rush.zhenguanyu.com explicitly. Tell the user which registry you're searching.

Step 1: Understand What They Need

When a user asks for help with something, identify:

  1. The domain (e.g., React, testing, design, deployment)
  2. The specific task (e.g., writing tests, creating animations, reviewing PRs)
  3. Whether this is a common enough task that a skill likely exists

Step 2: Search for Skills (Progressive Strategy)

Use --json for structured results. Examples below use reskill (substitute npx reskill@latest if not globally installed):

reskill find "<query>" --json --registry https://rush.zhenguanyu.com

The JSON output has this structure:

{
  "total": 2,
  "items": [
    {
      "name": "@scope/skill-name",
      "description": "What this skill does",
      "latest_version": "1.0.0",
      "keywords": ["keyword1", "keyword2"],
      "publisher": { "handle": "author" },
      "updated_at": "2025-01-01T00:00:00Z"
    }
  ]
}

IMPORTANT: Use progressive search to maximize results. The registry may not support multi-word fuzzy matching, so follow this strategy:

Round 1: Try the natural query first

reskill find "frontend design" --json --registry https://rush.zhenguanyu.com

If total > 0, proceed to Step 3 (present results).

Round 2: Try hyphenated version

Skill names often use hyphens. If Round 1 returns 0 results, try connecting keywords with a hyphen:

reskill find "frontend-design" --json --registry https://rush.zhenguanyu.com

Round 3: Broaden to the most relevant single keyword

If still 0 results, pick the most specific keyword from the user's query and search with that alone:

reskill find "frontend" --json --registry https://rush.zhenguanyu.com

Choose the keyword that best narrows the domain (e.g., prefer "frontend" over "design" because "design" is too broad).

Round 4 (optional): Try alternative/synonym keywords

If still no results, try synonyms or related terms:

  • "frontend" → "ui", "web", "react"
  • "deploy" → "deployment", "ci-cd", "devops"
  • "test" → "testing", "jest", "playwright"

Agent-side filtering

When broader searches return multiple results, read each item's description field and filter by relevance to the user's original request. Only present skills whose description genuinely matches what the user needs. Do not present all results blindly.

Example flow — user asks "help me with frontend design":

1. find "frontend design"    → 0 results
2. find "frontend-design"    → 0 results
3. find "frontend"           → 3 results
4. Read descriptions → filter → 1 result is relevant to UI design
5. Present that 1 result to user

Search query examples:

User saysRound 1Round 2 (hyphenated)Round 3 (single keyword)
"How do I make my React app faster?""react performance""react-performance""react"
"Can you help me with PR reviews?""pr review""pr-review""review"
"I need to create a changelog""changelog"
"Help me write better TypeScript""typescript practices""typescript-practices""typescript"

Stop as soon as you get relevant results — no need to run all rounds.

Step 3: Present Results and Ask Before Installing

When you find relevant skills, present them clearly:

  1. The skill name and description
  2. The version and author
  3. Which registry the result came from (public or private)
  4. The install command

Then ask the user which one(s) they want to install.

Example response:

I found a skill that might help! (from registry: rush.zhenguanyu.com)

**@scope/react-best-practices** (v1.2.0)
React and performance optimization guidelines.

To install:
  reskill install @scope/react-best-practices -y --registry https://rush.zhenguanyu.com

Would you like me to install it?

If multiple results are found, present the top 2-3 most relevant ones and let the user choose. Once the user confirms (e.g., "install it", "yes", "install 1 and 3"), proceed to install all confirmed skills — no need to ask again for each one.

Step 4: Determine Target Agents

Before installing, resolve which agent(s) to install to. Follow this priority:

Priority 1: User explicitly specified --agent

If the user said something like "install to cursor" or "install to claude-code", pass -a <agent> directly — skip all detection.

Priority 2: Read skills.jsondefaults.targetAgents

Look for skills.json in the current directory and up to 3 parent directories. If found, check for defaults.targetAgents:

{
  "defaults": {
    "targetAgents": ["cursor", "claude-code"]
  }
}

If targetAgents is configured, use those agents directly with -a:

reskill install <name> -y -a cursor claude-code --registry https://rush.zhenguanyu.com

Priority 3: Detect agent directories

If no skills.json is found (or it has no targetAgents), scan the current directory and up to 3 parent directories for known agent directories:

DirectoryAgent
.cursor/cursor
.claude/claude-code
.codex/codex
.windsurf/windsurf
.github/skills/copilot
.opencode/opencode
Note: For GitHub Copilot, check .github/skills/ (not just .github/), since .github/ alone usually contains workflows/issue templates and does not imply Copilot usage.

If one or more agent directories are detected, tell the user what was found and confirm before installing:

Detected agent directory: .cursor/
Will install to Cursor (.cursor/skills/). Proceed? (or specify a different agent)

If the user confirms, install with -a:

reskill install <name> -y -a cursor --registry https://rush.zhenguanyu.com

If multiple agent directories are detected, list all of them and let the user choose which ones to install to.

Priority 4: Ask the user

If no agent information is available from any of the above, ask the user which agent(s) to install to:

No agent configuration found. Which agent(s) would you like to install this skill to?

Supported agents: cursor, claude-code, codex, windsurf, copilot, opencode

Then install with the user's chosen agent(s).

Step 5: Install the Skill

# Install to specific agent(s)
reskill install <name> -y -a <agents...> --registry https://rush.zhenguanyu.com

# Install globally (user-level, available in all projects)
reskill install <name> -y -g --registry https://rush.zhenguanyu.com

The -y flag skips CLI confirmation prompts.

After installation, let the user know the skill is ready and briefly describe what new capabilities it provides.

Common Skill Categories

When constructing search queries, consider these categories:

CategoryExample Queries
Web Developmentreact, nextjs, typescript, css, tailwind, vue
Testingtesting, jest, playwright, e2e, unit-test
DevOpsdeploy, docker, kubernetes, ci-cd, github-actions
Documentationdocs, readme, changelog, api-docs
Code Qualityreview, lint, refactor, best-practices, clean-code
Designui, ux, design-system, accessibility, figma
Productivityworkflow, automation, git, project-management
Datadatabase, sql, data-analysis, visualization
Skill Devreskill, publish, create-skill, skill-authoring

Tips for Effective Searches

  1. Follow the progressive strategy: multi-word → hyphenated → single keyword → synonyms
  2. Pick the most specific keyword when narrowing down: prefer "frontend" over "design", prefer "playwright" over "testing"
  3. Try alternative terms: "deploy" → "deployment", "ci-cd", "devops"
  4. Always read descriptions: when a broad search returns many results, use descriptions to filter relevant ones
  5. Skill names use hyphens: remember to try hyphenated versions like "code-review", "best-practices"

When No Skills Are Found

If no relevant skills exist after exhausting all search rounds (multi-word → hyphenated → single keyword → synonyms):

  1. Acknowledge that no existing skill was found and briefly mention what you searched for
  2. Offer to help with the task directly using your general capabilities
  3. Suggest the user could create their own skill

Example:

I searched the registry with several queries ("frontend design", "frontend-design", "frontend")
but didn't find a matching skill.

I can still help you with this task directly! Would you like me to proceed?

If this is something you do often, you could also create your own skill and share it:
  mkdir my-skill && echo "---\
name: my-skill\
---\
# My Skill" > my-skill/SKILL.md

Checking Installed Skills

Before searching for new skills, you can check what's already installed:

# List all installed skills
reskill list

# Get details about a specific skill
reskill info <skill-name>

This avoids suggesting skills the user already has.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.57%
按下载量换算4,731

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills