Install
openclaw skills install feloAI-synthesized web search via Felo API — aggregates 15-40 sources into structured summaries. Use when: (1) researching a topic that needs multi-source synthe...
openclaw skills install feloUse Felo AI for comprehensive, AI-summarized web search when you need:
Do NOT use for:
export FELO_API_KEY="your-key-here"mkdir -p ~/.config/felo
echo "your-key-here" > ~/.config/felo/api_key
chmod 600 ~/.config/felo/api_key
curl -s -X POST https://openapi.felo.ai/v2/chat \
-H "Authorization: Bearer ${FELO_API_KEY:-$(cat ~/.config/felo/api_key 2>/dev/null)}" \
-H "Content-Type: application/json" \
-d '{"query": "Your search query here (1-2000 chars)"}' | jq .
{
"status": "ok",
"data": {
"answer": "AI-generated summary...",
"query_analysis": {
"queries": ["optimized", "search", "terms"]
},
"resources": [
{
"link": "https://...",
"title": "Source title",
"snippet": "Relevant excerpt"
}
]
}
}
Key fields:
data.answer — AI-synthesized answer (use for summaries)data.resources — Source links (typically 15-40 sources)curl -s -X POST https://openapi.felo.ai/v2/chat \
-H "Authorization: Bearer ${FELO_API_KEY:-$(cat ~/.config/felo/api_key 2>/dev/null)}" \
-H "Content-Type: application/json" \
-d '{
"query": "What are the top 5 trending topics in the OpenClaw AI agent community this week? Include specific discussions from Reddit, GitHub, X (Twitter), forums, and blogs. Provide source links."
}' > /tmp/felo_result.json
ANSWER=$(jq -r '.data.answer' /tmp/felo_result.json)
SOURCES=$(jq -r '.data.resources[0:10] | .[] | "- [\(.title)](\(.link))"' /tmp/felo_result.json)
SOURCE_COUNT=$(jq '.data.resources | length' /tmp/felo_result.json)
X-RateLimit-*Common errors:
INVALID_API_KEY (401) — Check your API keyQUERY_TOO_LONG (400) — Max 2000 charsRATE_LIMIT_EXCEEDED (429) — Slow down requests| Use Case | Tool | Reason |
|---|---|---|
| Community trends (5+ sources) | Felo | AI synthesis, broader coverage |
| Specific site search | web_search | Precise site: operator |
| Need timestamps | web_search | Felo has no time metadata |
| Cross-source analysis | Felo | AI-generated insights |
| Speed-critical | web_search | ~1s vs ~15s |