Claude Code Plugins

Community-maintained marketplace

Feedback

>-

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name exa-tools
type complex
depth base
description Executes Exa AI search queries via unified Python CLI. Use when searching the web for current information, finding code examples, researching APIs, SDKs, or retrieving programming context for any library or framework.

[H1][EXA-TOOLS]

Dictum: Semantic search surfaces relevant content.


Execute Exa AI search queries via unified Python CLI.

[IMPORTANT] Commands require --query. API key auto-injected via 1Password.

# Web search (default: auto type, 8 results)
uv run .claude/skills/exa-tools/scripts/exa.py search --query "Vite 7 new features"

# Neural search for concepts
uv run .claude/skills/exa-tools/scripts/exa.py search --query "Effect-TS best practices" --type neural

# Keyword search with more results
uv run .claude/skills/exa-tools/scripts/exa.py search --query "React 19 release notes" --type keyword --num-results 15

# Code context search (GitHub)
uv run .claude/skills/exa-tools/scripts/exa.py code --query "React useState hook examples"

# Code search with custom results
uv run .claude/skills/exa-tools/scripts/exa.py code --query "Effect pipe examples" --num-results 20

[1][OUTPUT]

Commands return: {"status": "success|error", ...}.

[INDEX] [CMD] [RESPONSE]
[1] search {query: string, results: []}
[2] code {query: string, context: []}