agentsclimarketplace

Retellai install auth

Skill jeremylongshore/claude-code-plugins-plus-skills/plugins/saas-packs/retellai-pack/skills/retellai-install-auth

Retell AI install auth \u2014 AI voice agent and phone call automation. \ Use when working with Retell AI for voice agents, phone calls, or telephony. Trigger\ \ with phrases like "retell install auth", "retellai-install-auth", "voice\ \ agent".From its SKILL.md

Install
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill retellai-install-auth

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.2 KB, 420 tokens by cl100k_base, as published. Nobody here has run it

Retell AI Install Auth

Overview

Install the Retell AI SDK and configure API key authentication for building voice agents.

Prerequisites

  • Retell AI account at retellai.com
  • API key from the Retell AI dashboard
  • Node.js 18+ or Python 3.9+

Instructions

Step 1: Install SDK

set -euo pipefail
# Node.js
npm install retell-sdk

# Python
pip install retell-sdk

Step 2: Configure Environment

# .env
RETELL_API_KEY=key_xxxxxxxxxxxxxxxxxxxxxxxx

Step 3: Initialize Client (Node.js)

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.`);

Step 4: Initialize Client (Python)

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.")

Output

  • retell-sdk installed
  • API key configured
  • Connection verified with agent listing

Error Handling

ErrorCauseSolution
401 UnauthorizedInvalid API keyVerify key in Retell Dashboard
ModuleNotFoundErrorSDK not installednpm install retell-sdk
Connection timeoutNetwork issueCheck firewall allows HTTPS

Resources

Next Steps

Create your first agent: retellai-hello-world

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.