Agentfinder

Kayak for agents — search across ClawHub, SkillsMP, LobeHub, and more to find the right skill for your task. Compare results across registries, get recommendations for your problem, and discover agents with specific capabilities.

Audits

Pass

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