← 返回 Skills 市场
81
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install gh-agentfinder
功能描述
Kayak for agents — search across ClawHub, SkillsMP, LobeHub, and more to find the right skill for your task. Compare results across registries, get recommend...
使用说明 (SKILL.md)
AgentFinder
Find the right skill across multiple registries in one call.
Start the server
uvicorn agentfinder.app:app --port 8016
Search across all registries
curl -s -X POST http://localhost:8016/v1/search \
-H "Content-Type: application/json" \
-d '{"query": "security scanning"}' | jq
Returns results sorted by relevance, from ClawHub, SkillsMP, LobeHub, and more.
Compare results by registry
curl -s http://localhost:8016/v1/search/security/compare | jq
Get recommendations for a problem
curl -s -X POST http://localhost:8016/v1/recommend \
-H "Content-Type: application/json" \
-d '{"problem": "I need to validate data before passing it to another agent"}' | jq
Filter by registry
curl -s -X POST http://localhost:8016/v1/search \
-H "Content-Type: application/json" \
-d '{"query": "code review", "registries": ["clawhub"], "max_results": 5}' | jq
List available registries
curl -s http://localhost:8016/v1/registries | jq
Endpoints
| Method | Path | Description |
|---|---|---|
| POST | /v1/search | Search across registries |
| GET | /v1/search/{query}/compare | Compare by registry |
| POST | /v1/recommend | Recommend skills for a problem |
| GET | /v1/registries | List available registries |
安全使用建议
This skill appears internally consistent and limited to running a local FastAPI server that searches a built-in skill index. Before installing: 1) be aware it will install Python packages from PyPI (fastapi, uvicorn, pydantic) — install in a virtualenv or container if you prefer isolation; 2) the index is local/static, so it won't fetch live registry data unless modified to do so — review agentfinder/registries.py if you expect live scraping or syncing; 3) there is no network exfiltration or secret access in the current code, but if the owner adds adapters that call external registries you should review any new network code and required credentials. If you want, I can point out the exact lines that are safe or highlight where to add live-registry connectors safely.
功能分析
Type: OpenClaw Skill
Name: gh-agentfinder
Version: 1.0.0
The gh-agentfinder skill bundle is a legitimate search aggregator for agent registries. It implements a FastAPI application that searches a hardcoded local index of skills using fuzzy matching. The code (app.py, registries.py) and instructions (SKILL.md) are well-structured, lack any dangerous execution patterns, and do not perform unauthorized network or file system operations.
能力标签
能力评估
Purpose & Capability
Name/description (AgentFinder: aggregator/search across registries) match the code and SKILL.md. The package only needs Python and uses a local index of registries/skills; URLs in the index are references only. No unrelated credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md tells the operator to run uvicorn locally and to call local endpoints (search, compare, recommend, registries). The instructions do not ask the agent to read system files, environment secrets, or transmit data to external endpoints; runtime behavior is limited to the local API described.
Install Mechanism
Install spec indicates installing well-known Python packages (fastapi, uvicorn, pydantic) via pip. These are standard dependencies for a local FastAPI app. The install kind labeled 'uv' is uncommon but SKILL.md metadata shows pip package names; nothing is being downloaded from an untrusted custom URL or executed from a remote archive.
Credentials
The skill declares no required environment variables, no credentials, and no config paths. The code does not reference environment secrets. Requested privileges are minimal and proportional to a local search API.
Persistence & Privilege
always is false and the skill does not request permanent presence or modify other skills or system-wide settings. It exposes a local HTTP API only when the operator runs the server.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install gh-agentfinder - 安装完成后,直接呼叫该 Skill 的名称或使用
/gh-agentfinder触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of gh-agentfinder:
- Search and compare agent skills across ClawHub, SkillsMP, LobeHub, and more registries.
- Get tailored agent recommendations for your task or problem.
- Filter search results by specific registries with customizable result limits.
- List all available registries for agent discovery.
- Simple REST API with endpoints for search, comparison, recommendations, and registry listing.
元数据
常见问题
Agentfinder 是什么?
Kayak for agents — search across ClawHub, SkillsMP, LobeHub, and more to find the right skill for your task. Compare results across registries, get recommend... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 81 次。
如何安装 Agentfinder?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install gh-agentfinder」即可一键安装,无需额外配置。
Agentfinder 是免费的吗?
是的,Agentfinder 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Agentfinder 支持哪些平台?
Agentfinder 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agentfinder?
由 mirni(@mirni)开发并维护,当前版本 v1.0.0。
推荐 Skills