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