Install
openclaw skills install gh-agentfinderKayak for agents — search across ClawHub, SkillsMP, LobeHub, and more to find the right skill for your task. Compare results across registries, get recommend...
openclaw skills install gh-agentfinderFind the right skill across multiple registries in one call.
uvicorn agentfinder.app:app --port 8016
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.
curl -s http://localhost:8016/v1/search/security/compare | jq
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
curl -s -X POST http://localhost:8016/v1/search \
-H "Content-Type: application/json" \
-d '{"query": "code review", "registries": ["clawhub"], "max_results": 5}' | jq
curl -s http://localhost:8016/v1/registries | jq
| 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 |