Install
openclaw skills install ceramic-searchWeb search for AI agents using Ceramic. Use for accurate current information — news, prices, recent events, documentation, general fact checking. Trigger this skill for keywords like "latest", "recent", "look up", "search for", "find online", "what's happening".
openclaw skills install ceramic-searchLexical (keyword-based) search engine built for AI agents.
Rewrite the natural language query
Ceramic matches exact keywords — it does not interpret natural language or synonyms automatically. Convert the user's natural language query into a keyword query of 2–8 words.
Rules:
house cat and cat house return different results)Call the Ceramic Search API
curl https://api.ceramic.ai/search \
-H "Authorization: Bearer $CERAMIC_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "keyword query", "maxDescriptionLength": 3000}'
For maxDescriptionLength, use the default of 3000 unless the user needs more detail (max 8000).
Retrieve the top sources from the response
The response is structured json with a results array containing up to 10 search results. The search results in the array are ordered by relevance, with the first result being the strongest match. Each result includes the fields description, title, and url.
{
"requestId": "request id",
"result": {
"results": [
{
"description": "search result description",
"title": "search result title",
"url": "search result url",
},
...
],
...
}
}
Summarize with citations
Write a concise answer drawing from the search result descriptions, and then list sources as numbered references:
Sources
Only cite sources whose descriptions contributed to the answer. If the search returns no useful results, refine the query with more specific keywords and try again before giving up.