Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

skill4agentskill4agent 搜索

Agent Skill

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

总安装

10,728

周安装

447

GitHub Stars

1

下载量

3,576
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill4agent

简介

skill4agent 用于在 OpenClaw 中搜索、检索和筛选在线技能库中的技能。

  • 适合需要根据关键词或任务场景快速定位候选技能时使用。
  • 通过 clawhub 安装,支持中文社区维护。
  • 使用前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 建议结合原始仓库文档进一步验证具体功能和使用边界。

SKILL.md

name
skill4agent
description
Use this skill when you need to search, read, and install skills from the online skill library. Support by Chinese.
requirements
external_dependencies
source
https://www.skill4agent.com

Skill Purpose

Use CLI commands or API interfaces provided by the skill4agent platform to implement a complete workflow for searching skills, reading skill details, and installing skills.

Usage Options

This skill provides two mutually exclusive usage options:

  1. CLI Option: Requires Node.js environment, uses npx skill4agent commands
  2. API Option: No external dependencies, uses direct HTTPS requests to skill4agent.com

Choose one option based on the available environment. If Node.js is available, prefer the CLI option for convenience. If Node.js is not available, use the API option.

Three Core Operations

1. Search Skills (search)

Purpose: Find relevant skills using Chinese, English, or mixed Chinese-English keywords

CLI Command (requires Node.js environment)

# Basic search (recommended to use -j for JSON format output)
npx skill4agent search <keyword> -j

# Control the number of returned results (recommended to use -j for JSON format output)
npx skill4agent search <keyword> -j -l <number>

API Interface

https://skill4agent.com/api/search?keyword=<keyword>

Parameter Description:

  • keyword (required): Search keyword (supports Chinese, English, or mixed Chinese-English)
  • limit (optional): Number of returned results, default 10, maximum 50

Important Return Fields:

  • skillId: Skill ID
  • source: Skill source repository
  • skill_name: Skill name
  • description: Skill description
  • tags: Skill tags
  • totalInstalls: Number of installations
  • read_skill_url: Skill detail URL
  • download_zip_url: Skill download URL
  • translation: Translation information (original language, whether translation is available, translated language)
  • script: Script check information (whether scripts are included, whether sensitive code exists, specific locations of sensitive code)

2. Read Skills (read)

Purpose: View detailed information and complete content of skill (SKILL.md)

CLI Command (requires Node.js environment)

# Read original content (recommended to use -j for JSON format output)
npx skill4agent read <source> <skill_name> -j

# Read translated content (recommended to use -j for JSON format output)
npx skill4agent read <source> <skill_name> --type translated -j

API Interface

https://skill4agent.com/api/skills/info?source=<source>&skill_name=<skill_name>

Parameter Description:

  • source (required): Skill source repository (obtained from search results)
  • skill_name (required): Skill name (obtained from search results)
  • type (optional): Content type (original/translated), default original

Important Return Fields:

  • skillId: Skill ID
  • source: Skill source repository
  • skill_name: Skill name
  • download_zip_url: Skill download URL
  • translation: Translation information (original language, whether translation is available, translated language)
  • script: Script check information (whether scripts are included, whether sensitive code exists, specific locations of sensitive code)
  • content: Detailed skill content (complete content of SKILL.md)

3. Install Skills (install)

Purpose: Install skills to local projects

CLI Command (requires Node.js environment)

# Install original skill
npx skill4agent install <source> <skill_name>

# Install translated skill
npx skill4agent install <source> <skill_name> --type translated

API Interface

https://skill4agent.com/api/download/<skillId>?type=<type>

Parameter Description:

  • skillId (required): Skill ID (obtained from search results or skill detail information)
  • type (optional): Content type (original/translated), default original

Installation Instructions

  • CLI command: Installs to .agents/skills/<skill_name> directory under the current directory
  • API interface: Download ZIP file and extract to get <skill_name> directory
  • To install the skill to other paths (e.g., user-specified or application-required paths), move the skill directory to the target location manually

Script Security Check

Use the returned script field to check whether the skill contains scripts and whether sensitive code exists.

  • has_script: true means the skill contains scripts
  • script_check_result:

- safe: Script is safe - need attention: Contains sensitive code

  • script_check_notes: Specific locations of sensitive code, need to recheck after installation

Note: For skills that contain scripts with sensitive code, you must obtain user consent before installation. After installation, recheck the sensitive code locations listed in script_check_notes along with the code context to ensure there are no risks of malicious programs, unauthorized access to user private information, modification or deletion of local files, or changes to system configurations.

Scenario-based Workflows

Scenario 1: Only understand related skills

  • Action: Use keywords to search for relevant skills
  • Output: Summarize search results and wait for user's further instructions

Scenario 2: Find suitable skills to complete tasks

  1. Search: Use keywords to search for relevant skills
  2. Filter: Preliminary filtering based on description, tags, and totalInstalls
  3. Read: View detailed information about candidate skills, analyze whether the skill meets the task requirements
  4. Recommend: Recommend the most suitable skills to users (if the skill contains scripts with sensitive code, you must inform the user)

Scenario 3: Search and install skills

  1. Search: Use keywords to search for relevant skills
  2. Filter: Filter suitable skills based on search results
  3. Read (if needed): Further understand skill details, analyze whether the skill meets the task requirements
  4. Install: Install the skill to the required directory (for skills containing scripts with sensitive code, do NOT install without user consent - you must obtain user consent before installing)
  5. Script Security Recheck: If the skill contains scripts with sensitive code, recheck the sensitive code locations listed in script_check_notes along with the code context after installation to ensure there are no risks of malicious programs, unauthorized access to user private information, modification or deletion of local files, or changes to system configurations.

Search Optimization Suggestions

When no results are found:

  1. Optimize keywords: Use more general or concise keywords
  2. Switch language:

- If English search returns no results → Try Chinese or mixed Chinese-English keywords - If Chinese search returns no results → Try English or mixed Chinese-English keywords

Best Practices

  • JSON Format: Always add -j parameter to search and read commands to return JSON format output for easier parsing
  • Language Version Selection: Choose appropriate version based on user's preferred language (check original and translated languages via translation field)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.3%
按下载量换算2,979

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install skill4agent 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills