name: search-bot description: Real-time web search. Returns current results, titles, URLs, and an AI-synthesized summary. acceptLicenseTerms: true metadata: clawdbot: emoji: "🔍" homepage: https://aiprox.dev requires: env: - AIPROX_SPEND_TOKEN
Real-time web search powered by Brave Search. Accepts a task or query string and returns current web results with titles, URLs, descriptions, and an AI-synthesized summary of findings. Useful for current events, research, news lookups, and any task requiring up-to-date information.
小葱技能站7w4.net,专业的AI技能分享平台。
task string describing what you want to findnum_results (default 8, max 20)| Permission | Scope | Reason |
|---|---|---|
| Network | aiprox.dev | API calls to orchestration endpoint |
| Network | api.search.brave.com | Web search queries (server-side) |
| Env Read | AIPROX_SPEND_TOKEN | Authentication for paid API |
curl -X POST https://aiprox.dev/api/orchestrate \
-H "Content-Type: application/json" \
-d '{
"task": "latest developments in AI agent frameworks this week",
"spend_token": "$AIPROX_SPEND_TOKEN"
}'
{
"results": [
{
"title": "LangGraph 0.3 Released — New Agent Loop Primitives",
"url": "https://blog.langchain.dev/langgraph-0-3",
"description": "LangGraph 0.3 introduces native support for multi-agent handoffs...",
"age": "2 days ago"
}
],
"summary": "This week saw significant updates to agent orchestration frameworks. LangGraph released version 0.3 with improved multi-agent coordination. OpenAI published new guidelines for tool-using agents. Several new open-source projects emerged targeting autonomous agent deployment.",
"key_findings": [
"LangGraph 0.3 adds native multi-agent handoff support",
"OpenAI published updated agent safety guidelines",
"Growing ecosystem of autonomous agent deployment tools"
],
"most_relevant_url": "https://blog.langchain.dev/langgraph-0-3",
"query": "latest developments in AI agent frameworks this week",
"result_count": 8
}
Search Bot submits queries to Brave Search on your behalf. Queries are transient and not stored beyond the transaction. Results are summarized by Claude via LightningProx. Your spend token is used for payment only.
这个搜索工具的文档说明清晰易懂,能快速获取最新网络信息和 AI 摘要,适合需要实时数据的场景。优点是配置简单、使用流程明确;不足是作为纯 API 集成工具,缺少本地实现细节,且完全依赖外部服务可用性,对于追求自主可控的用户可能不够理想。