Install and configure Retell AI SDK/CLI authentication. Use when setting up a new Retell AI integration, configuring API keys, or initializing Retell AI in your project. Trigger with phrases like "install retellai", "setup retellai", "retellai auth", "configure retellai API key".
Configures Retell AI SDK authentication and sets up API keys for project integration.
/plugin marketplace add jeremylongshore/claude-code-plugins-plus-skills/plugin install retellai-pack@claude-code-plugins-plusThis skill is limited to using the following tools:
Set up Retell AI SDK/CLI and configure authentication credentials.
# Node.js
npm install @retellai/sdk
# Python
pip install retellai
# Set environment variable
export RETELLAI_API_KEY="your-api-key"
# Or create .env file
echo 'RETELLAI_API_KEY=your-api-key' >> .env
// Test connection code here
| Error | Cause | Solution |
|---|---|---|
| Invalid API Key | Incorrect or expired key | Verify key in Retell AI dashboard |
| Rate Limited | Exceeded quota | Check quota at https://docs.retellai.com |
| Network Error | Firewall blocking | Ensure outbound HTTPS allowed |
| Module Not Found | Installation failed | Run npm install or pip install again |
import { RetellAIClient } from '@retellai/sdk';
const client = new RetellAIClient({
apiKey: process.env.RETELLAI_API_KEY,
});
from retellai import RetellAIClient
client = RetellAIClient(
api_key=os.environ.get('RETELLAI_API_KEY')
)
After successful auth, proceed to retellai-hello-world for your first API call.
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.