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

find-skills寻找技能

Agent Skill

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

总安装

696

周安装

29

GitHub Stars

548

下载量

232
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/smallnest/goclaw --skill find-skills

简介

用于发现和安装 Agent Skills,适合按任务场景检索可用能力包。

  • 提供来源、安装命令和候选项,需核对站点可信度和仓库状态。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需确认权限范围。
  • 避免直接推荐未经确认的第三方技能包为安全或官方方案。
  • find-skills 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Find Skills

Helps discover and install skills for goclaw.

Triggers

Discovery requests:

  • "find a skill for X", "is there a skill for X"
  • "how do I do X" where X might have an existing skill
  • "can you do X" for specialized capabilities
  • "I need help with X"

Extension interest:

  • "I wish I had X capability"
  • "Is there a tool for X?"
  • "extend agent capabilities"
  • "add new functionality"

Management:

  • "list skills", "show installed skills"
  • "update skills", "remove skill"
  • "install skill", "add skill"

Quick Start

List Installed Skills

goclaw skills list
goclaw skills list --verbose  # Show detailed info including content

Install from URL

# From Git repository
goclaw skills install https://github.com/user/skill-repo

# From local path
goclaw skills install ./path/to/skill

Validate Skills

# Check if skill dependencies are satisfied
goclaw skills validate skill-name

Test Skills

# Test a skill with a prompt
goclaw skills test skill-name --prompt "your test prompt here"

Skill Locations

Skills are stored in a unified location:

LocationDescription
~/.goclaw/skillsAll skills (user-installed and built-in)

Built-in skills are automatically copied to this directory on first run.


Installing Skills

From Git Repository

# Basic installation
goclaw skills install https://github.com/user/repo

# The skill will be installed to ~/.goclaw/skills/<repo-name>

From Local Path

# From a directory containing SKILL.md
goclaw skills install /path/to/skill

Updating Skills

# Update a specific skill (must be a Git repo)
goclaw skills update skill-name

Uninstalling Skills

# Remove a skill
goclaw skills uninstall skill-name

Finding Relevant Skills

1. Search Built-in Skills

Use goclaw skills list to see what's available:

goclaw skills list --verbose

2. Browse External Sources

Official goclaw skills: Check the project repository for bundled skills.

Community sources:

  • GitHub: Search for goclaw skill or agent skill
  • Skills compatible with OpenClaw/Agent Skills format can often be adapted

3. Check Skill Metadata

Each skill has a description field in its YAML frontmatter that indicates when it should be used:

---
name: crawl4ai
description: This skill should be used when users need to scrape websites,
extract structured data, handle JavaScript-heavy pages, or build automated
web data pipelines.
---

Creating Custom Skills

If no existing skill meets your needs, create one:

Initialize New Skill

cd ~/.goclaw/skills
mkdir my-skill
cd my-skill

# Create SKILL.md with proper frontmatter

SKILL.md Template

---
name: my-skill
description: Brief description of what this skill does and when to use it.
version: 1.0.0
author: Your Name
metadata:
  openclaw:
    emoji: 🎯
    always: false
    requires:
      bins: []        # Required binaries
      anyBins: []     # At least one of these must exist
      env: []         # Required environment variables
      config: []      # Required config keys
      os: [darwin, linux, windows]
---

# My Skill

## Overview

Brief description of what this skill does.

## Triggers

When this skill should activate.

## Quick Start

Basic usage examples.

## Reference

Detailed documentation.

Best Practices

  1. Search first - Check if a skill already exists before creating
  2. Validate before use - Run goclaw skills validate <name> to check dependencies
  3. Test skills - Use goclaw skills test <name> to verify behavior
  4. Keep skills lean - Skills should be concise and focused
  5. Use references - Move detailed docs to references/ directory

Troubleshooting

Skill not found

# Check skill is in correct location
ls -la ~/.goclaw/skills/

# Verify skill has SKILL.md
ls ~/.goclaw/skills/<skill-name>/SKILL.md

Dependencies not satisfied

# Validate to see what's missing
goclaw skills validate <skill-name>

# Install missing binaries or set environment variables

Skill not loading

# Check skill format is valid
cat ~/.goclaw/skills/<skill-name>/SKILL.md

# YAML frontmatter must start with `---`
# and have a name and description field

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.88%
按下载量换算88

Claude

29.35%
按下载量换算68

Cursor

18.01%
按下载量换算42

Gemini CLI

8.99%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills