From retellai-pack
Configure Retell AI local development with hot reload and testing. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with Retell AI. Trigger with phrases like "retellai dev setup", "retellai local development", "retellai dev environment", "develop with retellai".
How this skill is triggered — by the user, by Claude, or both
Slash command
/retellai-pack:retellai-local-dev-loopThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up a fast, reproducible local development workflow for Retell AI.
Set up a fast, reproducible local development workflow for Retell AI.
retellai-install-auth setupmy-retellai-project/
├── src/
│ ├── retellai/
│ │ ├── client.ts # Retell AI client wrapper
│ │ ├── config.ts # Configuration management
│ │ └── utils.ts # Helper functions
│ └── index.ts
├── tests/
│ └── retellai.test.ts
├── .env.local # Local secrets (git-ignored)
├── .env.example # Template for team
└── package.json
set -euo pipefail
# Copy environment template
cp .env.example .env.local
# Install dependencies
npm install
# Start development server
npm run dev
{
"scripts": {
"dev": "tsx watch src/index.ts",
"test": "vitest",
"test:watch": "vitest --watch"
}
}
import { describe, it, expect, vi } from 'vitest';
import { RetellAIClient } from '../src/retellai/client';
describe('Retell AI Client', () => {
it('should initialize with API key', () => {
const client = new RetellAIClient({ apiKey: 'test-key' });
expect(client).toBeDefined();
});
});
| Error | Cause | Solution |
|---|---|---|
| Module not found | Missing dependency | Run npm install |
| Port in use | Another process | Kill process or change port |
| Env not loaded | Missing .env.local | Copy from .env.example |
| Test timeout | Slow network | Increase test timeout |
vi.mock('@retellai/sdk', () => ({
RetellAIClient: vi.fn().mockImplementation(() => ({
// Mock methods here
})),
}));
set -euo pipefail
# Enable verbose logging
DEBUG=RETELLAI=* npm run dev
See retellai-sdk-patterns for production-ready code patterns.
npx claudepluginhub aiminnovations/claude-code-plugins-plus --plugin retellai-packGuides 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.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.
4plugins reuse this skill
First indexed Jul 11, 2026