exa search

v1.0.0

Advanced web search with precise date filtering and content type selection. Use when you need academic papers, GitHub repositories, research content, or spec...

0· 139·0 current·0 all-time
byclaw0x@kennyzir

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for kennyzir/exa-search-pro.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "exa search" (kennyzir/exa-search-pro) from ClawHub.
Skill page: https://clawhub.ai/kennyzir/exa-search-pro
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install exa-search-pro

ClawHub CLI

Package manager switcher

npx clawhub@latest install exa-search-pro
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (advanced web search) match the code and SKILL.md which call the Claw0x Gateway API. The single required credential (CLAW0X_API_KEY) and the documented endpoint (https://api.claw0x.com/v1/call) are coherent with the stated purpose.
Instruction Scope
SKILL.md instructs the agent/user to set CLAW0X_API_KEY and shows example calls. The runtime instructions and handler.ts only reference that env var and a network call to Claw0x; they do not instruct reading unrelated files, scanning local data, or sending data to unexpected endpoints.
Install Mechanism
No install spec is provided (instruction-only), and the single TypeScript handler is a small client wrapper. No downloads, package installs, or archive extraction are present. The only runtime effect is an outbound API call to api.claw0x.com, which is expected for this skill.
Credentials
Only CLAW0X_API_KEY is required, which is proportional to a gateway API client. The README suggests storing it in ~/.openclaw/.env but the code reads process.env.CLAW0X_API_KEY; no other secrets or unrelated credentials are requested.
Persistence & Privilege
always:false and default agent invocation are used. The skill does not request permanent/system-wide privileges or modify other skills. Autonomous invocation is allowed (platform default) but is not combined with other concerning factors.
Assessment
This skill appears to be a thin client that forwards your query to Claw0x's API using the CLAW0X_API_KEY. Before installing: confirm you trust claw0x.com (the API endpoint and billing model will be tied to that provider), keep your CLAW0X_API_KEY secret and scoped/rotated if possible, and monitor usage/billing since calls are billable. If you want extra assurance, review the public repository referenced in SKILL.md to validate authorship and examine any upstream code. Finally, remember queries and returned content will transit the Claw0x service—do not send highly sensitive secrets in search queries.
handler.ts:12
Environment variable access combined with network send.
Confirmed safe by external scanners
Static analysis detected API credential-access patterns, but both VirusTotal and OpenClaw confirmed this skill is safe. These patterns are common in legitimate API integration skills.

Like a lobster shell, security has layers — review code before you run it.

latestvk97afrw8fvgfzeckymkp25vphh83ngsq
139downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Exa Search

Cloud skill by Claw0x — powered by Claw0x Gateway API.

Advanced web search with precise date filtering, content type selection, and neural search. Perfect for research, competitive analysis, and specialized content discovery.

Requires Claw0x API key. Sign up at claw0x.com to get your key.

Prerequisites

  1. Sign up at claw0x.com
  2. Create API key in Dashboard
  3. Set environment variable:
    # Add to ~/.openclaw/.env
    CLAW0X_API_KEY=ck_live_...
    

Pricing

$0.005 per successful call. Failed calls are free.

  • Pay only for successful responses (2xx status)
  • No monthly fees, no subscriptions
  • Get started with $5 free credit

Quick Reference

When This HappensDo ThisWhat You Get
Need academic papers from specific datesUse category: "research paper" + date rangeFiltered research results
Find GitHub projects from 2024Use category: "github" + start_published_date: "2024-01-01"Recent open-source projects
Semantic search for conceptsUse search_type: "neural"Intent-based results
Exact keyword matchingUse search_type: "keyword"Traditional search results

5-Minute Quickstart

Step 1: Get API Key (30 seconds)

Sign up at claw0x.com → Dashboard → Create API Key

Step 2: Set Environment Variable (30 seconds)

export CLAW0X_API_KEY="ck_live_..."

Step 3: Install Skill (30 seconds)

openclaw skills install exa-search

Step 4: Use Skill (1 minute)

const result = await agent.run('exa-search', {
  query: 'transformer architecture improvements',
  category: 'research paper',
  start_published_date: '2024-01-01',
  end_published_date: '2024-03-31',
  search_type: 'neural',
  num_results: 5
});

console.log(`Found ${result.result_count} papers`);
result.results.forEach(paper => {
  console.log(`${paper.title} (${paper.published_date})`);
});

Real-World Use Cases

Scenario 1: Academic Research

Problem: Find transformer papers from Q1 2024 Solution: Use precise date filtering + research paper category Example:

{
  query: "transformer architecture improvements",
  category: "research paper",
  start_published_date: "2024-01-01",
  end_published_date: "2024-03-31"
}

Scenario 2: GitHub Discovery

Problem: Find Rust web frameworks created in 2024 Solution: Use GitHub category + date filtering Example:

{
  query: "rust web framework",
  category: "github",
  start_published_date: "2024-01-01"
}

Scenario 3: Competitive Analysis

Problem: Find similar companies in AI agent space Solution: Use company category + domain exclusion Example:

{
  query: "AI agent platforms",
  category: "company",
  exclude_domains: ["competitor.com"]
}

Integration Recipes

OpenClaw Agent

import { Claw0xClient } from '@claw0x/sdk';

const claw0x = new Claw0xClient(process.env.CLAW0X_API_KEY);

const papers = await claw0x.call('exa-search', {
  query: 'large language model reasoning',
  category: 'research paper',
  start_published_date: '2024-01-01',
  search_type: 'neural'
});

LangChain Agent

from claw0x import Claw0xClient

client = Claw0xClient(api_key=os.environ['CLAW0X_API_KEY'])

repos = client.call('exa-search', {
    'query': 'rust web framework',
    'category': 'github',
    'start_published_date': '2024-01-01'
})

Custom Agent

const response = await fetch('https://api.claw0x.com/v1/call', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${process.env.CLAW0X_API_KEY}`,
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    skill: 'exa-search',
    input: {
      query: 'AI regulation news',
      category: 'news',
      start_published_date: '2024-03-15',
      end_published_date: '2024-03-22'
    }
  })
});

Exa vs Tavily Comparison

FeatureTavilyExa
Date filteringtime_range (coarse)start/end date (precise)
Search modebasic/advanced (depth)neural/keyword (algorithm)
Content typesgeneral/news7+ types (papers, GitHub, PDF)
AI answer✅ Built-in❌ Not available
Best forQuick lookups, general infoResearch, specialized content

Use Tavily when: You need a quick answer or general web search.

Use Exa when: You need precise dates, specific content types, or semantic search.

Why Use Via Claw0x?

  • Unified billing: One API key for all skills
  • Atomic pricing: Pay per call, not per month
  • Zero cost on failure: Failed calls don't charge
  • Production-ready: 99.9% uptime, <100ms latency
  • Security scanned: OSV.dev integration
  • No Exa API key needed: Claw0x handles upstream authentication

About Claw0x

Claw0x is the native skills layer for AI agents — providing unified API access, atomic billing, and quality control.

Explore more skills: claw0x.com/skills

GitHub: github.com/kennyzir/exa-search

Comments

Loading comments...