Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

exa-web-search前网络搜索

Agent Skill

exa-web-search 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

399

周安装

16

GitHub Stars

4

下载量

129
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:exa-web-search(前网络搜索)
来源仓库:https://github.com/alphaonedev/openclaw-graph
仓库路径:skills/exa-web-search
安装命令:
npx skills add https://github.com/alphaonedev/openclaw-graph --skill exa-web-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill exa-web-search

简介

exa-web-search 利用 Exa 神经网络引擎执行语义化网页搜索与内容提取。

  • 适合需要超越关键词匹配的深度信息检索与趋势分析任务。
  • 支持内容高亮、日期筛选与页面爬取,便于后续文本处理。
  • 使用前需配置 EXA_API_KEY 并确保网络可访问 api.exa.ai 端点。
  • 建议设置合理的查询频率,避免触发速率限制影响服务可用性。

SKILL.md

exa-web-search

Purpose

This skill enables semantic web searches using Exa.ai's neural engine, allowing for advanced querying, web crawling, content extraction, highlighting key sections, and date-based filtering. It's designed for AI agents to fetch and process web data efficiently in tasks requiring real-time or historical information retrieval.

When to Use

Use this skill when you need to perform semantic searches beyond keyword matching, such as analyzing trends from recent articles, extracting data from crawled pages, or highlighting relevant content. Apply it in research tasks, content aggregation, or when integrating web data into AI workflows, especially if other search tools fail to capture contextual nuances.

Key Capabilities

  • Semantic search using neural networks for understanding query intent.
  • Web crawling to fetch pages dynamically based on queries.
  • Content extraction to pull text, images, or metadata from pages.
  • Highlighting of key phrases or sections in results.
  • Date filtering to limit results to a specific range, e.g., last 7 days.
  • Supports pagination and result limits for scalable queries.

Usage Patterns

Always initialize with authentication via environment variables. For CLI, run searches in a loop for batch processing. In code, use asynchronous API calls to avoid blocking. Structure queries with specific flags for precision, and parse responses to extract highlights or metadata. Test with small limits first to verify results.

Common Commands/API

Exa.ai uses a CLI tool and REST API. Set your API key in $EXA_API_KEY before use.

CLI Commands:

  • Basic search: exa search --query "AI advancements" --limit 5 --date-after "2023-01-01" Example snippet: result = subprocess.run(['exa', 'search', '--query', 'climate change'], capture_output=True) print(result.stdout)
  • With crawling and extraction: exa search --query "open source tools" --crawl-depth 2 --extract-content Snippet: import subprocess output = subprocess.check_output(['exa', 'search', '--query', 'web frameworks', '--highlight'])

API Endpoints:

  • Primary endpoint: POST https://api.exa.ai/v1/search Request body format (JSON): {"query": "machine learning", "limit": 10, "date_after": "2022-01-01", "crawl_depth": 1} Snippet: import requests headers = {'Authorization': f'Bearer {os.environ.get("EXA_API_KEY")}'} response = requests.post('https://api.exa.ai/v1/search', headers=headers, json={"query": "neural networks"}) data = response.json()
  • Error checking endpoint: GET https://api.exa.ai/v1/status to verify service availability.

Config Formats:

  • Use a .exa-config.json file for persistent settings: {"default_limit": 20, "api_endpoint": "https://api.exa.ai/v1/search"} Load it in code: with open('.exa-config.json') as f: config = json.load(f)

Integration Notes

Integrate by setting $EXA_API_KEY in your environment or passing it via headers. For AI agents, wrap API calls in try-except blocks and use async libraries like aiohttp for non-blocking operations. Combine with other skills by piping results, e.g., feed search outputs to a summarization tool. Ensure rate limits (e.g., 100 requests/min) are respected by adding delays. For clustering, reference the 'community' tag to link with related skills.

Error Handling

Check HTTP status codes in API responses (e.g., 401 for unauthorized, access via response.status_code). For CLI, parse stderr for messages like "Query exceeded limits". Common errors include invalid queries (fix by validating input strings) or network issues (retry with exponential backoff). In code, use:

if response.status_code != 200:
    raise Exception(f"API error: {response.json().get('error')}")

Log errors with details like error codes and retry up to 3 times for transient failures.

Graph Relationships

  • Related to: search skills (e.g., general web search tools)
  • Depends on: authentication services for API access
  • Complements: data extraction skills for post-processing results
  • Clusters with: community tools for semantic analysis

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.05%
按下载量换算48

Claude

31.44%
按下载量换算41

Cursor

16.64%
按下载量换算21

Gemini CLI

9.46%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills