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

exa-common-errors常见错误

Agent Skill

exa-common-errors 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

546

周安装

23

GitHub Stars

2,077

下载量

191
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill exa-common-errors

简介

exa-common-errors 汇总常见 HTTP 状态码与错误标签对照表,便于快速定位问题根源。

  • 适用于开发调试阶段识别请求格式错误、参数冲突或配额超限等典型故障。
  • 每个错误均附带 requestId 供联系 Exa 支持时引用,提高问题解决效率。
  • 建议配合日志分析工具使用,结合时间窗口缩小排查范围。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Exa Common Errors

Overview

Quick reference for Exa API errors by HTTP status code and error tag. All error responses include a requestId field — include it when contacting Exa support at hello@exa.ai.

Error Reference

400 — Bad Request

Error TagCauseSolution
INVALID_REQUEST_BODYMalformed JSON or missing required fieldsValidate JSON structure and required query field
INVALID_REQUESTConflicting parametersRemove contradictory options (e.g., date filters with company category)
INVALID_URLSMalformed URLs in getContentsEnsure URLs have https:// protocol
INVALID_NUM_RESULTSnumResults > 100 with highlightsReduce to <= 100 or remove highlights
INVALID_JSON_SCHEMABad schema in summary.schemaValidate JSON schema syntax
NUM_RESULTS_EXCEEDEDExceeds plan limitCheck your plan's max results
NO_CONTENT_FOUNDNo content at provided URLsVerify URLs are accessible

401 — Unauthorized

# Verify your API key is set and valid
echo "Key set: ${EXA_API_KEY:+yes}"

# Test with curl
curl -s -o /dev/null -w "%{http_code}" \
  -X POST https://api.exa.ai/search \
  -H "x-api-key: $EXA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"test","numResults":1}'

Fix: Regenerate API key at dashboard.exa.ai.

402 — Payment Required

Error TagCauseSolution
NO_MORE_CREDITSAccount balance exhaustedTop up at dashboard.exa.ai
API_KEY_BUDGET_EXCEEDEDSpending limit reachedIncrease budget in API key settings

403 — Forbidden

Error TagCauseSolution
ACCESS_DENIEDFeature not available on planUpgrade plan or contact Exa
FEATURE_DISABLEDEndpoint not enabledCheck plan capabilities
ROBOTS_FILTER_FAILEDURL blocked by robots.txtUse a different URL
PROHIBITED_CONTENTContent blocked by moderationReview query for policy violations

429 — Rate Limited

// Default rate limit: 10 QPS (queries per second)
// Error response format: { "error": "rate limit exceeded" }

// Fix: implement exponential backoff
async function searchWithBackoff(exa: Exa, query: string, opts: any) {
  for (let attempt = 0; attempt < 5; attempt++) {
    try {
      return await exa.search(query, opts);
    } catch (err: any) {
      if (err.status !== 429) throw err;
      const delay = 1000 * Math.pow(2, attempt) + Math.random() * 500;
      console.log(`Rate limited. Waiting ${delay.toFixed(0)}ms...`);
      await new Promise(r => setTimeout(r, delay));
    }
  }
  throw new Error("Rate limit retries exhausted");
}

422 — Unprocessable Entity

Error TagCauseSolution
FETCH_DOCUMENT_ERRORURL could not be crawledVerify URL is accessible and not paywalled

5xx — Server Errors

CodeTagAction
500DEFAULT_ERROR / INTERNAL_ERRORRetry after 1-2 seconds
501UNABLE_TO_GENERATE_RESPONSERephrase query (answer endpoint)
502Bad GatewayRetry with delay
503Service UnavailableCheck status page, retry later

Content Fetch Errors (per-URL status in getContents)

TagCauseResolution
CRAWL_NOT_FOUNDContent unavailable at URLVerify URL correctness
CRAWL_TIMEOUTFetch timed outRetry or increase livecrawlTimeout
CRAWL_LIVECRAWL_TIMEOUTLive crawl exceeded timeoutSet livecrawlTimeout: 15000 or use livecrawl: "fallback"
SOURCE_NOT_AVAILABLEPaywalled or blockedTry cached content with livecrawl: "never"
UNSUPPORTED_URLNon-HTTP URL schemeUse standard HTTPS URLs

Quick Diagnostic Script

set -euo pipefail

echo "=== Exa Diagnostics ==="
echo "API Key: ${EXA_API_KEY:+SET (${#EXA_API_KEY} chars)}"

# Test basic connectivity
echo -n "API connectivity: "
HTTP_CODE=$(curl -s -o /tmp/exa-test.json -w "%{http_code}" \
  -X POST https://api.exa.ai/search \
  -H "x-api-key: $EXA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"connectivity test","numResults":1}')
echo "$HTTP_CODE"

if [ "$HTTP_CODE" != "200" ]; then
  echo "Error response:"
  cat /tmp/exa-test.json | python3 -m json.tool 2>/dev/null || cat /tmp/exa-test.json
fi

Instructions

  1. Check the HTTP status code from the error response
  2. Match the error tag to the tables above
  3. Apply the documented solution
  4. Include requestId from error responses when contacting support

Resources

Next Steps

For comprehensive debugging, see exa-debug-bundle. For rate limit patterns, see exa-rate-limits.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.36%
按下载量换算68

Claude

28.5%
按下载量换算54

Cursor

19.12%
按下载量换算37

Gemini CLI

8.57%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills