From retellai-pack
Installs the Retell AI SDK and configures API key authentication for building voice agents and phone call automation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/retellai-pack:retellai-install-authThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Install the Retell AI SDK and configure API key authentication for building voice agents.
Install the Retell AI SDK and configure API key authentication for building voice agents.
set -euo pipefail
# Node.js
npm install retell-sdk
# Python
pip install retell-sdk
# .env
RETELL_API_KEY=key_xxxxxxxxxxxxxxxxxxxxxxxx
import Retell from 'retell-sdk';
const retell = new Retell({ apiKey: process.env.RETELL_API_KEY! });
// Verify connection — list agents
const agents = await retell.agent.list();
console.log(`Connected! ${agents.length} agent(s) configured.`);
from retell import Retell
import os
retell = Retell(api_key=os.environ["RETELL_API_KEY"])
agents = retell.agent.list()
print(f"Connected! {len(agents)} agent(s) configured.")
retell-sdk installed| Error | Cause | Solution |
|---|---|---|
401 Unauthorized | Invalid API key | Verify key in Retell Dashboard |
ModuleNotFoundError | SDK not installed | npm install retell-sdk |
| Connection timeout | Network issue | Check firewall allows HTTPS |
Create your first agent: retellai-hello-world
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin retellai-packIntegrates Retell AI for voice agent and phone call automation using the retell-sdk. Useful when deploying or managing AI-powered telephony workflows.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.