web-research
Research topics using the web via curl. Use when the user asks to look something up, find current information, or research a topic online.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Research topics using the web via curl. Use when the user asks to look something up, find current information, or research a topic online.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Goals, todos, and intentions tracking
Reply to humans who are chatting with me
Reference for the shellm system — recursive LLM shell, identity management, memory, skills, trajectory, and all CLI tools. Use when working on shellm itself, debugging agent behavior, or understanding how the pieces fit together.
Life context and memory system
Send and receive messages via the Telegram Bot API using curl
Manage Google Drive, Gmail, Calendar, Sheets, Docs, and Chat via the gws CLI
| name | web-research |
| description | Research topics using the web via curl. Use when the user asks to look something up, find current information, or research a topic online. |
| metadata | {"shelllm":{"requires":{"bins":["curl","jq"]}}} |
User asks to look something up, find current information, research a topic, or answer a question that requires up-to-date knowledge beyond what you have in context.
curl -sL "https://example.com" | head -200
query="your search terms"
curl -sL "https://html.duckduckgo.com/html/?q=$(printf '%s' "$query" | jq -sRr @uri)" \
| grep -oP 'href="https?://[^"]*"' | head -10
# Strip HTML tags for readable text
curl -sL "$url" | sed 's/<[^>]*>//g' | sed '/^$/d' | head -100
curl -s "https://api.example.com/endpoint" | jq '.results[]'
curl -sLO "https://example.com/file.txt"
-s (silent) and -L (follow redirects) with curlsed 's/<[^>]*>//g' for rough text extractionhead or tail to limit output — full web pages are huge