Exa Search logo

Exa Search

Community
brucesongs
exa-search

Semantic search using Exa API for security research queries. Unlike keyword-based search, Exa understands context and retrieves high-quality, relevant results for technical research.

Overview

Publisherbrucesongs
Repositorykali-claw
Skill nameexa-search
Stars
70
Forks
18
Bundled files
12
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 12 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by brucesongs on GitHub. Read the source before you install it.

Installation

Install the Exa Search AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/brucesongs/kali-claw.git /tmp/kali-claw
mkdir -p .claude/skills
cp -r /tmp/kali-claw/skills/exa-search .claude/skills/exa-search
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Exa Search in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Exa Search on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Exa Search is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Exa Search

Summary

Unlike keyword-based search, Exa understands context and retrieves high-quality, relevant results for technical research.

Domain: research

Skill Identity

AttributeValue
DomainIntelligence Gathering
Skill IDexa-search
Version1.0.0
Hacker LawsLaw 3 (Intelligence Over Force), Law 9 (Systematic Over Random)
Related Skillsdeep-research, osint, social-intelligence

Purpose

Semantic search using Exa API for security research queries. Unlike keyword-based search, Exa understands context and retrieves high-quality, relevant results for technical research.

Core Capabilities

  1. Semantic Search: Context-aware query understanding
  2. Date Filtering: Recent content prioritization
  3. Domain Filtering: Target specific sources
  4. Content Extraction: Full-text retrieval

Use Cases

  • CVE Research: "Recent CVEs affecting Spring Boot applications"
  • Exploit Techniques: "SSRF bypass techniques in AWS metadata service"
  • Tool Research: "Best tools for JWT security testing"
  • Threat Intelligence: "APT campaigns targeting healthcare 2024"

Exa API Reference

Query Strategy

  • Semantic phrasing: Frame queries as full sentences ("How does X bypass Y?") rather than keyword strings; Exa's embedding model rewards natural-language intent.
  • Iterative narrowing: Start broad, then re-query with terms surfaced by the first batch to drill into specifics.
  • Source class filters: Restrict to includeDomains (e.g., ["github.com","arxiv.org"]) for code/research, or excludeDomains for noisy aggregators.
  • Recency bias: Use startPublishedDate to suppress stale CVE write-ups when chasing live threats.

Result Triage

  1. Reject low-authority hosts (link farms, scraped mirrors) by domain reputation.
  2. Cross-reference at least two independent sources before treating a claim as fact.
  3. Extract canonical artifacts (CVE IDs, commit hashes, IoCs) into structured notes for knowledge-ops.
  4. Flag contradictory findings and escalate to deep-research instead of silently discarding.

Rate Limits & Cost Control

  • Exa enforces per-minute and per-day quotas — batch related queries and cache responses by query hash.
  • Prefer numResults: 10-20 per call; pagination is cheaper than re-querying.
  • Use useAutoprompt: false once you have a polished query to avoid silent rewrites that inflate cost.
  • Stream large content extractions instead of getContents on a long URL list.

Common Pitfalls

  • Treating Exa as a keyword engine — short keyword queries underperform; semantic models need context.
  • Skipping verification — semantic results can hallucinate relevance; always sanity-check top hits.
  • Date drift — without startPublishedDate, archive copies of old CVE posts can outrank current advisories.
  • Domain blindness — failing to include vendor-specific domains misses authoritative primary sources.

Advanced Query Patterns

  • Boolean composition: Combine semantic queries with includeText / excludeText filters for precision targeting.
  • Category targeting: Use category: "research paper" or category: "github" to narrow the search space before applying semantic filters.
  • Proximity search: Embed technical terms in natural context ("zero-day exploit chain exploiting deserialization in Java") rather than listing keywords.
  • Multi-hop retrieval: Use first-pass results to identify key authors, then search for their other publications with author: "name".

Content Extraction Workflow

  1. Run initial search with numResults: 10 to identify the most relevant documents.
  2. For top 3-5 hits, call getContents with text: true to retrieve full-text content.
  3. Parse extracted text for canonical identifiers (CVE IDs, commit hashes, CWE numbers, CVSS scores).
  4. Store structured extractions in knowledge-ops with source URL, extraction date, and confidence score.
  5. For ambiguous or contradictory results, cross-reference with a second query using different phrasing.

Integration with Research Pipelines

  • OSINT correlation: Feed Exa results into osint skill for cross-validation against multiple intelligence sources.
  • Deep-research handoff: When Exa surfaces a complex topic, escalate to deep-research for systematic multi-source analysis.
  • Chronicle logging: Archive search queries and results in chronicle for future reference and trend analysis.
  • Article writing: Structure Exa findings into report-ready sections using article-writing templates.

Monitoring and Automation

  • Set up recurring queries for high-priority topics (e.g., new CVEs for monitored products) with date-filtered searches.
  • Track result count changes over time to detect surges in publication activity around specific vulnerabilities.
  • Automate source discovery: periodically search for new security blogs and research outlets to expand coverage.
  • Log all API calls (query, timestamp, result count, cost) for budget tracking and query optimization.

Quality Assurance

  • Validate each result against the original query intent — semantic search can return topically adjacent but irrelevant results.
  • Track precision@k (fraction of top-k results that are relevant) across query types to identify systematic weaknesses.
  • Maintain a golden dataset of known-good queries and expected results for regression testing after API changes.
  • Audit cost-per-actionable-finding to optimize query strategies over time.

Detection Methods

API Usage Patterns

  • Anomalous query volume: Single token consuming >10x typical rate.
  • Cross-domain correlation: Aggregating data from many domains (OSINT pattern).
  • Off-hours bulk queries: Large query bursts outside business hours.

SIEM Detection Rules

  • Splunk SPL: index=api gateway.route="/search" | stats count by api_key | sort -count | head 20
  • Custom API gateway logs: Alert on anomalous query patterns.

Defense Evasion Techniques

Stealth Search

  • Distribute across accounts: Use multiple API keys; below per-key rate limits.
  • Slow & methodical: Pace queries below anomaly threshold.
  • Cache results: Avoid re-querying same data.
  • Mimic legitimate usage: Use natural language queries matching typical analyst patterns.

Integration

  • Use after deep-research when primary sources are insufficient
  • Feed results to knowledge-ops
  • Complement social-intelligence for broader coverage

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Exa Search AI skill do?

Semantic search using Exa API for security research queries. Unlike keyword-based search, Exa understands context and retrieves high-quality, relevant results for technical research.

Why use Exa Search on TypingMind?

Because you install it once and use it with any model. Exa Search is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Exa Search in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/brucesongs/kali-claw/tree/main/skills/exa-search. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Exa Search?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Exa Search?

As many as you like. As long as a model supports skills, you can use Exa Search with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Exa Search AI skill free?

Yes. It is published on GitHub by brucesongs under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇