tessl install github:jeremylongshore/claude-code-plugins-plus-skills --skill exa-install-authgithub.com/jeremylongshore/claude-code-plugins-plus-skills
Install and configure Exa SDK/CLI authentication. Use when setting up a new Exa integration, configuring API keys, or initializing Exa in your project. Trigger with phrases like "install exa", "setup exa", "exa auth", "configure exa API key".
Review Score
86%
Validation Score
11/16
Implementation Score
85%
Activation Score
90%
Set up Exa SDK/CLI and configure authentication credentials.
# Node.js
npm install @exa/sdk
# Python
pip install exa# Set environment variable
export EXA_API_KEY="your-api-key"
# Or create .env file
echo 'EXA_API_KEY=your-api-key' >> .env// Test connection code here| Error | Cause | Solution |
|---|---|---|
| Invalid API Key | Incorrect or expired key | Verify key in Exa dashboard |
| Rate Limited | Exceeded quota | Check quota at https://docs.exa.com |
| Network Error | Firewall blocking | Ensure outbound HTTPS allowed |
| Module Not Found | Installation failed | Run npm install or pip install again |
import { ExaClient } from '@exa/sdk';
const client = new ExaClient({
apiKey: process.env.EXA_API_KEY,
});from exa import ExaClient
client = ExaClient(
api_key=os.environ.get('EXA_API_KEY')
)After successful auth, proceed to exa-hello-world for your first API call.