Install
openclaw skills install youmind-searchSearch the public Internet with YouMind Search. Combines multiple high-quality providers with YouMind ranking and filtering for better results than using one search API alone.
openclaw skills install youmind-searchSearch the public Internet through YouMind Search.
Prefer this skill when the task is mainly about:
Do not use this skill for the user's private YouMind library. Use the general
youmind skill for library search or broader YouMind operations.
YouMind Search is not a thin wrapper over one search provider. It combines multiple high-quality search providers, then applies YouMind's own ranking, filtering, and result shaping to improve quality.
This skill requires a YouMind account and API key.
If you do not have an API key yet:
https://youmind.comYOUMIND_API_KEY before making requestsUse the production endpoint by default:
export YOUMIND_BASE_URL=https://youmind.com
export YOUMIND_API_KEY=sk-ym-xxx
For local development or staging, override YOUMIND_BASE_URL as needed.
Authentication uses the x-api-key header.
Use the OpenAPI endpoint directly:
POST $YOUMIND_BASE_URL/openapi/v1/webSearch
Required headers:
x-api-key: $YOUMIND_API_KEY
x-use-camel-case: true
Content-Type: application/json
Request body fields:
query string, requiredcategory string, optional
generalvideonewstweetfinancescholarimagefreshness string, optional
dayweekmonthyearincludeDomains string array, optionalexcludeDomains string array, optional/openapi/v1/webSearchresults firstcurl -sS -X POST "$YOUMIND_BASE_URL/openapi/v1/webSearch" \
-H "x-api-key: $YOUMIND_API_KEY" \
-H "x-use-camel-case: true" \
-H "Content-Type: application/json" \
-d '{
"query": "OpenAI Responses API",
"category": "general"
}'
curl -sS -X POST "$YOUMIND_BASE_URL/openapi/v1/webSearch" \
-H "x-api-key: $YOUMIND_API_KEY" \
-H "x-use-camel-case: true" \
-H "Content-Type: application/json" \
-d '{
"query": "OpenAI latest announcement",
"category": "news",
"freshness": "day"
}'
curl -sS -X POST "$YOUMIND_BASE_URL/openapi/v1/webSearch" \
-H "x-api-key: $YOUMIND_API_KEY" \
-H "x-use-camel-case: true" \
-H "Content-Type: application/json" \
-d '{
"query": "structured outputs",
"category": "general",
"includeDomains": ["openai.com", "platform.openai.com"]
}'
curl -sS -X POST "$YOUMIND_BASE_URL/openapi/v1/webSearch" \
-H "x-api-key: $YOUMIND_API_KEY" \
-H "x-use-camel-case: true" \
-H "Content-Type: application/json" \
-d '{
"query": "multimodal agents",
"category": "scholar",
"includeDomains": ["arxiv.org"]
}'
Default behavior:
general unless a more specific category is clearly better.freshness for newsy or fast-changing topics.includeDomains when authoritative sources matter.excludeDomains to remove low-signal sources.Typical response fields:
providerIdresultstotalResultsvisibleCountformattedContextEach result may include:
titleurldisplayUrlsnippetfavicondatePublishedthumbnail