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

exa-search前搜索

Agent Skill

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

总安装

855

周安装

36

GitHub Stars

公开资料未说明

下载量

628
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tristanmanchester/agent-skills --skill exa-search

简介

通过 Exa AI 搜索获取结构化网络信息摘要。

  • 支持按时间、域名和内容类型筛选搜索结果。
  • 适合快速定位关键信息和生成引用回答。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 需配置 EXA_API_KEY 并遵守请求频率限制。
  • 建议使用脚本模板保持请求一致性。exa-search 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Searching with Exa (Search API)

This skill is a recipe for consistent web research using Exa’s Search API: you choose the right search mode, apply the right filters, request only the content you need (highlights/text/summary), and return clean citations.

Quick start (default path)

  1. Ensure an API key is available as an environment variable:
  • EXA_API_KEY (preferred)
  • or pass --api-key to the scripts.
  1. Run a search (JSON response to stdout):
python {baseDir}/scripts/exa_search.py   --query "latest research in LLMs"   --type auto   --category "research paper"   --num-results 5   --highlights   --highlights-per-url 3   --num-sentences 2

Operating principles (always follow)

  • Always return URLs. Prefer also returning title + a 1–2 sentence “why this source” note.
  • Prefer highlights first for agentic workflows. Escalate to full text only when necessary.
  • Use filters aggressively: domain allowlists, date windows, and category improve relevance and reduce noise.
  • Freshness is explicit: if the user asks for “latest”, “today”, “current”, etc., set a freshness policy (see below).
  • Don’t overfetch: cap content length with maxCharacters when requesting text.
  • If the user needs hard evidence (numbers, quotes), fetch full text for the top 1–3 pages and verify.

Workflow

Step 1 — Translate the user task into a search plan

Decide:

  1. Search type

- auto (default): best general quality. - instant: lowest latency, for autocomplete / live suggestions. - deep: more comprehensive; can use additionalQueries. - fast / neural: streamlined alternatives.

  1. Category (when appropriate)

- news, research paper, company, people, tweet, personal site, financial report, etc.

  1. Freshness

- If “real-time / latest”: consider live crawling via maxAgeHours (see *Freshness*). - If “historical/static”: use cache only (e.g., maxAgeHours: -1).

  1. Content mode

- highlights: token-efficient evidence snippets. - text: deep reading (cap via maxCharacters). - summary: quick structured overviews (optionally with a guiding query).

Step 2 — Build the request payload

Start from this template and fill only what you need:

{
  "query": "...",
  "type": "auto",
  "category": "news",
  "numResults": 10,
  "includeDomains": ["..."],
  "excludeDomains": ["..."],
  "startPublishedDate": "2025-01-01T00:00:00.000Z",
  "endPublishedDate": "2025-12-31T23:59:59.999Z",
  "includeText": ["must contain phrase"],
  "excludeText": ["must not contain phrase"],
  "contents": {
    "highlights": true,
    "text": { "maxCharacters": 8000, "includeHtmlTags": false },
    "summary": { "query": "..." },
    "subpages": 0,
    "extras": { "links": 0, "imageLinks": 0 },
    "maxAgeHours": 24
  }
}

Notes:

  • contents is optional. If omitted, you’ll only get metadata (title, url, etc.).
  • maxAgeHours controls when Exa should live-crawl vs use cached content (see below).
  • context is deprecated; use highlights or text instead.

Step 3 — Execute the request

Option A (recommended): use the bundled script so requests are consistent and validated.

python {baseDir}/scripts/exa_search.py --query "..." --highlights --num-results 10

Option B: call the HTTP endpoint directly.

curl --request POST   --url https://api.exa.ai/search   --header "content-type: application/json"   --header "x-api-key: $EXA_API_KEY"   --data '{"query":"...","type":"auto","numResults":5}'

Step 4 — Post-process results into an answer with citations

  1. De-duplicate near-identical domains/pages when the user wants breadth.
  2. Select the top sources (usually 3–7) that jointly cover the claim space.
  3. For each selected result, extract:

- title, url - key highlight(s) or a short quote from text - published date (if available)

  1. Write the response with inline citations (URLs) and clear uncertainty where needed.
  2. If the user wants a deliverable (report, memo), preserve a “Sources” section listing all URLs.

Freshness policy (use this when “latest/current/today” appears)

Use contents.maxAgeHours (or the maxAgeHours top-level alias if the API accepts it):

  • 24: daily-fresh content (use cache if <24h else livecrawl)
  • 1: near-real-time (cache if <1h else livecrawl)
  • 0: always livecrawl (slowest, most current)
  • -1: never livecrawl (fastest; cache only)
  • omit: default behaviour (livecrawl only when cache missing)

Common patterns

Pattern A — “Give me sources for X” (fast + token efficient)

  • type: auto, numResults: 5–10
  • contents.highlights: true
  • Optional: category and includeDomains

Pattern B — “Do deep research on X” (read a few pages thoroughly)

  • Start with highlights on 10–20 results.
  • Then fetch full text for the top 3–5 URLs with a maxCharacters cap.
  • Summarise with citations.

Pattern C — “Latest news about X”

  • category: news
  • Apply a date window (startPublishedDate) if the question is time-bound.
  • Use a freshness setting (often maxAgeHours: 1–24).

Pattern D — “Find a company / person page”

  • category: company or people
  • If using people, allowlist LinkedIn domains when needed.
  • IMPORTANT: some filters are unsupported for company/people; see troubleshooting.

Troubleshooting

401 / 403 (auth)

  • Confirm x-api-key header is present and valid.
  • Confirm you aren’t accidentally using a placeholder like YOUR-EXA-API-KEY.

400 (invalid parameters)

  • company and people categories support a limited set of filters; unsupported parameters can trigger 400 errors.
  • If in doubt, remove date and text filters first, then re-add one-by-one.

Too much content / token blow-ups

  • Prefer highlights over text.
  • Cap text.maxCharacters.
  • Reduce numResults.

Bundled references

  • API + parameter cheat sheet: references/exa-search-api.md
  • Best-practice recipes: references/exa-search-best-practices.md
  • Quickstart snippets (SDK + curl): references/exa-search-quickstart.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.6%
按下载量换算217

Claude

29.79%
按下载量换算187

Cursor

16.58%
按下载量换算104

Gemini CLI

9.73%
按下载量换算61

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills