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