Create a minimal working Retell AI example. Use when starting a new Retell AI integration, testing your setup, or learning basic Retell AI API patterns. Trigger with phrases like "retellai hello world", "retellai example", "retellai quick start", "simple retellai code".
Creates a minimal working example to start integrating Retell AI into your application.
/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:
Minimal working example demonstrating core Retell AI functionality.
retellai-install-auth setupCreate a new file for your hello world example.
import { RetellAIClient } from '@retellai/sdk';
const client = new RetellAIClient({
apiKey: process.env.RETELLAI_API_KEY,
});
async function main() {
// Your first API call here
}
main().catch(console.error);
Success! Your Retell AI connection is working.
| Error | Cause | Solution |
|---|---|---|
| Import Error | SDK not installed | Verify with npm list or pip show |
| Auth Error | Invalid credentials | Check environment variable is set |
| Timeout | Network issues | Increase timeout or check connectivity |
| Rate Limit | Too many requests | Wait and retry with exponential backoff |
import { RetellAIClient } from '@retellai/sdk';
const client = new RetellAIClient({
apiKey: process.env.RETELLAI_API_KEY,
});
async function main() {
// Your first API call here
}
main().catch(console.error);
from retellai import RetellAIClient
client = RetellAIClient()
# Your first API call here
Proceed to retellai-local-dev-loop for development workflow setup.
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.