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

find-skills寻找技能

Agent Skill

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

总安装

539

周安装

22

GitHub Stars

4

下载量

172
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill find-skills

简介

find-skills 用于在 ClaWHub 市场中搜索和发现 Agent Skills,按类别、评分或关键词筛选候选能力包。

  • 它帮助用户快速定位适用于特定任务的 Skill,如图像处理或代码生成。
  • 安装命令为 npx skills add https://github.com/alphaonedev/openclaw-graph --skill find-skills,需从 GitHub 获取原始 README 进一步确认用法。
  • 使用时应核对第三方来源安全性、安装量和权限声明,避免推荐未经验证的方案。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

find-skills

Purpose

This skill enables searching and discovering skills in ClaWHub based on criteria like capabilities, categories, ratings, compatibility, and keywords. It helps users locate relevant skills efficiently for integration into AI workflows.

When to Use

Use this skill when you need to discover available skills in ClaWHub, such as finding high-rated skills for a specific task (e.g., code generation), exploring skills by category (e.g., "productivity"), or keyword matching (e.g., "image processing"). Apply it during project setup, skill prototyping, or when expanding AI capabilities.

Key Capabilities

  • Search skills by capability (e.g., "natural language processing").
  • Filter by category (e.g., "community" or "enterprise").
  • Sort by rating (e.g., minimum 4.0 stars).
  • Check compatibility (e.g., with OpenClaw versions >=1.5).
  • Perform keyword matching on skill names, descriptions, or tags.
  • Return results with metadata like ID, name, and tags.

Usage Patterns

Invoke this skill via CLI for quick searches or integrate it into scripts for automated discovery. Use it in loops to fetch and evaluate multiple skills, or combine with other skills for dynamic workflows (e.g., search then execute). Always specify search parameters to avoid broad results; for example, combine keywords with ratings for targeted queries.

Common Commands/API

Use the ClaWHub CLI or API for searches. Authentication requires setting the environment variable $CLAWHUB_API_KEY before running commands.

  • CLI Command Example: clawhub find-skills --query "AI coding" --category "community" --min-rating 4.0 --limit 10 This returns up to 10 skills matching the query with at least 4.0 rating.
  • API Endpoint Example: POST to https://api.clawhub.com/v1/skills/search with JSON body: {"query": "web scraping", "category": "tools", "minRating": 3.5, "compatibility": "OpenClaw-v2"} Response is a JSON array of skill objects.
  • Code Snippet for Python Integration: import requests headers = {'Authorization': f'Bearer {os.environ.get("CLAWHUB_API_KEY")}'} response = requests.post('https://api.clawhub.com/v1/skills/search', json={'query': 'data analysis'}, headers=headers) This fetches skills matching "data analysis".
  • Config Format: Store search preferences in a JSON config file (e.g., search-config.json): {"defaultQuery": "AI tools", "defaultCategory": "community"} Pass it to CLI with --config search-config.json.

Integration Notes

Integrate by wrapping the API in your AI agent's code; ensure $CLAWHUB_API_KEY is set securely. For OpenClaw, use the skill ID from results to chain executions (e.g., call execute-skill next). Handle pagination in API responses by checking the nextPageToken field. Test integrations in a sandbox environment to verify compatibility with your agent's version.

Error Handling

Common errors include authentication failures (HTTP 401: check $CLAWHUB_API_KEY), invalid queries (HTTP 400: validate parameters like --query), or rate limits (HTTP 429: add delays). In code, wrap API calls in try-except blocks:

try:
    response = requests.post(...)
    response.raise_for_status()
except requests.exceptions.HTTPError as e:
    print(f"Error: {e} - Retry after checking API key.")

Log errors with details like error codes and retry up to 3 times with exponential backoff.

Graph Relationships

  • Related to: "discovery" (tag), "search" (tag), "clawhub" (cluster)
  • Depends on: "clawhub-api" (for authentication and endpoints)
  • Used by: "skill-execution" (for discovering skills before running)
  • Conflicts with: None known
  • Enhances: "community" cluster skills by providing discovery mechanisms

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

安装后在对应 Agent 宿主中调用,用来根据用户需求搜索相关 Skills,并把候选 Skill 的说明、来源和安装命令整理给用户确认。

平台分布

Codex

34.81%
按下载量换算60

Claude

32.18%
按下载量换算55

Cursor

19.93%
按下载量换算34

Gemini CLI

10.54%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills