Install
openclaw skills install @crabsticksalad/youcom-searchyou.com web search, deep research, and content extraction for OpenClaw. Free tier for basic search; research and extract require paid API key. Sends queries and URLs to you.com — do not use for internal/private URLs or sensitive data.
openclaw skills install @crabsticksalad/youcom-searchFree web search, deep research, and content extraction — no mandatory API key for basic search.
⚠️ Data transmission: This skill sends all search queries and submitted URLs to you.com (and ydc-index.io for extraction). Do not use it for internal-only URLs, secrets in query strings, private repositories, regulated data, or paywall/access-control circumvention. Confirm with the user before any paid (
youcom_research/youcom_extract) call.
| Need | Tool | Cost | API Key |
|---|---|---|---|
| General web search | youcom_search | Free | ❌ |
| Deep research with citations | youcom_research | Paid | ✅ |
| Extract content from URLs | youcom_extract | Paid | ✅ |
python3 scripts/youcom_search.py "search query" --num 5
export YOUCOM_API_KEY="your_key"
python3 scripts/youcom_research.py "topic" --depth deep
python3 scripts/youcom_extract.py https://example.com/article
No setup required — youcom_search works immediately.
~/.openclaw/.env:
YOUCOM_API_KEY=your_key_here
systemctl --user restart openclaw-gatewayUse for all general web searches. No API key needed.
python3 scripts/youcom_search.py "query" [--num N]
| Option | Description |
|---|---|
query | Search term (required) |
--num, -n | Results to return, 1–10 (default: 5) |
--out, -o | Write JSON to file instead of stdout |
Output: JSON with query, count, and results[] (title, url, description, snippets).
Tips:
site:reddit.com, filetype:pdf, time:weekurllib — no external dependenciesSynthesized answer with citations. Requires YOUCOM_API_KEY.
python3 scripts/youcom_research.py "topic" [--depth lite|standard|deep|exhaustive]
| Option | Description |
|---|---|
query | Research topic (required) |
--depth, -d | lite, standard (default), deep, exhaustive |
⚠️ Always confirm cost with user before using paid endpoints.
Extract clean text from specific URLs. Requires YOUCOM_API_KEY.
python3 scripts/youcom_extract.py <url> [<url>...] [--formats markdown html metadata] [--timeout 10]
| Option | Description |
|---|---|
urls | One or more URLs (space-separated) |
--formats, -f | Output formats: markdown, html, metadata (default: markdown metadata) |
--timeout, -t | Crawl timeout per URL in seconds 1–60 (default: 10) |
Max 20 URLs per call. Batch larger lists into multiple calls.
| Need | Tool |
|---|---|
| Quick lookup | youcom_search |
| Comprehensive analysis | youcom_research |
| Specific page content | youcom_extract |
| Cloudflare/GitHub blocks | youcom_search — uses browser-fetched results when direct HTTP is blocked |
youcom_search (free) → youcom_research (paid, confirm first) → youcom_extract (paid, confirm first)
When free search is insufficient, escalate to paid research.
The API key is not loaded. Source your .env or restart the gateway:
source ~/.openclaw/.env
systemctl --user restart openclaw-gateway
Invalid or expired API key. Check or regenerate at you.com/platform/api-keys.
Rate limit hit. Wait 30 seconds and retry.
DNS failure. Check internet connection.
No third-party dependencies. Uses Python standard library only:
urllib.request — HTTP GET/POSTurllib.parse — URL encodingjson — JSON parsingargparse — CLI argument parsing| Tool | Method | Endpoint |
|---|---|---|
youcom_search | GET | https://api.you.com/v1/agents/search |
youcom_research | POST | https://api.you.com/v1/research |
youcom_extract | POST | https://ydc-index.io/v1/contents |