Agentfinder

v1.0.0

Kayak for agents — search across ClawHub, SkillsMP, LobeHub, and more to find the right skill for your task. Compare results across registries, get recommend...

0· 83· 1 versions· 0 current· 0 all-time· Updated 5h ago· MIT-0

Install

openclaw skills install gh-agentfinder

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

MethodPathDescription
POST/v1/searchSearch across registries
GET/v1/search/{query}/compareCompare by registry
POST/v1/recommendRecommend skills for a problem
GET/v1/registriesList available registries

Version tags

latestvk972c5z7p61t85jgx4g5qrdjkn84tyvh

Runtime requirements

🔎 Clawdis
Binspython

Install

uv