agents-ts
Build LiveKit Agent backends in TypeScript or JavaScript. Use this skill when creating voice AI agents, voice assistants, or any realtime AI application using LiveKit's Node.js Agents SDK (@livekit/agents-js). Covers AgentSession, Agent class, function tools with zod, STT/LLM/TTS models, turn detection, and realtime models.
What this skill does
# LiveKit Agents TypeScript SDK Build voice AI agents with LiveKit's TypeScript/Node.js Agents SDK. ## LiveKit MCP server tools This skill works alongside the LiveKit MCP server, which provides direct access to the latest LiveKit documentation, code examples, and changelogs. Use these tools when you need up-to-date information that may have changed since this skill was created. **Available MCP tools:** - `docs_search` - Search the LiveKit docs site - `get_pages` - Fetch specific documentation pages by path - `get_changelog` - Get recent releases and updates for LiveKit packages - `code_search` - Search LiveKit repositories for code examples - `get_python_agent_example` - Browse 100+ Python agent examples **When to use MCP tools:** - You need the latest API documentation or feature updates - You're looking for recent examples or code patterns - You want to check if a feature has been added in recent releases - The local references don't cover a specific topic **When to use local references:** - You need quick access to core concepts covered in this skill - You're working offline or want faster access to common patterns - The information in the references is sufficient for your needs Use MCP tools and local references together for the best experience. ## References Consult these resources as needed: - ./references/livekit-overview.md -- LiveKit ecosystem overview and how these skills work together - ./references/agent-session.md -- AgentSession lifecycle, events, and configuration - ./references/tools.md -- Function tools with zod schemas - ./references/models.md -- STT, LLM, TTS plugins and realtime models ## Installation ```bash pnpm add @livekit/[email protected] \ @livekit/[email protected] \ @livekit/[email protected] \ @livekit/[email protected] \ dotenv ``` ## Environment variables Use the LiveKit CLI to load your credentials into a `.env.local` file: ```bash lk app env -w ``` Or manually create a `.env.local` file: ```bash LIVEKIT_API_KEY=your_api_key LIVEKIT_API_SECRET=your_api_secret LIVEKIT_URL=wss://your-project.livekit.cloud ``` ## Quick start ### Basic agent with STT-LLM-TTS pipeline ```typescript import { type JobContext, type JobProcess, WorkerOptions, cli, defineAgent, voice, } from '@livekit/agents'; import * as livekit from '@livekit/agents-plugin-livekit'; import * as silero from '@livekit/agents-plugin-silero'; import { BackgroundVoiceCancellation } from '@livekit/noise-cancellation-node'; import { fileURLToPath } from 'node:url'; import dotenv from 'dotenv'; dotenv.config({ path: '.env.local' }); export default defineAgent({ prewarm: async (proc: JobProcess) => { proc.userData.vad = await silero.VAD.load(); }, entry: async (ctx: JobContext) => { const vad = ctx.proc.userData.vad! as silero.VAD; const assistant = new voice.Agent({ instructions: `You are a helpful voice AI assistant. Keep responses concise, 1-3 sentences. No markdown or emojis.`, }); const session = new voice.AgentSession({ vad, stt: "assemblyai/universal-streaming:en", llm: "openai/gpt-4.1-mini", tts: "cartesia/sonic-3:9626c31c-bec5-4cca-baa8-f8ba9e84c8bc", turnDetection: new livekit.turnDetector.MultilingualModel(), }); await session.start({ agent: assistant, room: ctx.room, inputOptions: { // For standard web/mobile participants use BackgroundVoiceCancellation() // For telephony/SIP applications use TelephonyBackgroundVoiceCancellation() noiseCancellation: BackgroundVoiceCancellation(), }, }); await ctx.connect(); const handle = session.generateReply({ instructions: 'Greet the user and offer your assistance.', }); await handle.waitForPlayout(); }, }); cli.runApp(new WorkerOptions({ agent: fileURLToPath(import.meta.url) })); ``` ### Basic agent with realtime model ```typescript import { type JobContext, WorkerOptions, cli, defineAgent, voice, } from '@livekit/agents'; import * as openai from '@livekit/agents-plugin-openai'; import { BackgroundVoiceCancellation } from '@livekit/noise-cancellation-node'; import { fileURLToPath } from 'node:url'; import dotenv from 'dotenv'; dotenv.config({ path: '.env.local' }); export default defineAgent({ entry: async (ctx: JobContext) => { const assistant = new voice.Agent({ instructions: 'You are a helpful voice AI assistant.', }); const session = new voice.AgentSession({ llm: new openai.realtime.RealtimeModel({ voice: 'coral', }), }); await session.start({ agent: assistant, room: ctx.room, inputOptions: { // For standard web/mobile participants use BackgroundVoiceCancellation() // For telephony/SIP applications use TelephonyBackgroundVoiceCancellation() noiseCancellation: BackgroundVoiceCancellation(), }, }); await ctx.connect(); const handle = session.generateReply({ instructions: 'Greet the user and offer your assistance.', }); await handle.waitForPlayout(); }, }); cli.runApp(new WorkerOptions({ agent: fileURLToPath(import.meta.url) })); ``` ## Core concepts ### defineAgent The entry point for defining your agent: ```typescript import { defineAgent, type JobContext, type JobProcess } from '@livekit/agents'; export default defineAgent({ // Optional: Preload models before jobs start prewarm: async (proc: JobProcess) => { proc.userData.vad = await silero.VAD.load(); }, // Required: Main entry point for each job entry: async (ctx: JobContext) => { // Your agent logic here }, }); ``` ### voice.Agent Define agent behavior. You can use the `voice.Agent` constructor directly or extend the class: ```typescript import { voice, llm } from '@livekit/agents'; import { z } from 'zod'; // Option 1: Direct instantiation const assistant = new voice.Agent({ instructions: 'Your system prompt here', tools: { getWeather: llm.tool({ description: 'Get the current weather for a location', parameters: z.object({ location: z.string().describe('The city name'), }), execute: async ({ location }) => { return `The weather in ${location} is sunny and 72°F`; }, }), }, }); // Option 2: Class extension (recommended for complex agents) class Assistant extends voice.Agent { constructor() { super({ instructions: 'Your system prompt here', tools: { getWeather: llm.tool({ description: 'Get the current weather for a location', parameters: z.object({ location: z.string().describe('The city name'), }), execute: async ({ location }) => { return `The weather in ${location} is sunny and 72°F`; }, }), }, }); } } ``` ### voice.AgentSession The session orchestrates the voice pipeline: ```typescript const session = new voice.AgentSession({ stt: "assemblyai/universal-streaming:en", llm: "openai/gpt-4.1-mini", tts: "cartesia/sonic-3:voice_id", vad: await silero.VAD.load(), turnDetection: new livekit.turnDetector.MultilingualModel(), }); ``` Key methods: - `session.start({ agent, room })` - Start the session - `session.say(text)` - Speak text directly - `session.generateReply({ instructions })` - Generate LLM response - `session.interrupt()` - Stop current speech - `session.updateAgent(newAgent)` - Switch to different agent ## Running the agent Add scripts to `package.json`: ```json { "scripts": { "dev": "tsx agent.ts dev", "build": "tsc", "start": "node agent.js start", "download-files": "tsc && node agent.js download-files" } } ``` ```bash # Development mode with auto-reload pnpm dev # Production mode pnpm build && pnpm start # Download required model files pnpm download-files ``` ## LiveKit Inference model strings Use model strings for simple configurat
Related in Image & Video
watch
IncludedWatch a video (URL or local path). Downloads with yt-dlp, extracts auto-scaled frames with ffmpeg, pulls the transcript from captions (or Whisper API fallback), and hands the result to Claude so it can answer questions about what's in the video.
physical-ai-defect-image-generation
IncludedUse when the user wants to orchestrate defect image generation, run associated setup, or handle outputs on OSMO. The Day 0 path handles cold-start with USD-to-ROI, image-edit augmentation, and AnomalyGen to create initial PCBA datasets. The Day 1 path performs inference and labeling on real images. This skill helps with first-time asset setup, creation of finetuning checkpoints, and configuring deployment. Trigger keywords: defect image generation, dig workflow, dig pipeline, defect image detection workflow, aoi pipeline, aoi anomalygen, usd2roi anomalygen, day 0 pcba, day 1 pcba, day 1 real-photo alignment, day 1 manual roi, metal surface anomaly, glass defect, anomalygen finetune, setup_pcb, setup_metal, setup_glass, setup_pretrained, dig setup, dig datasets, dig pretrained checkpoint, dig image-edit endpoint.
accelint-react-best-practices
IncludedReact performance optimization and best practices. ALWAYS use this skill when working with any React code - writing components, hooks, JSX; refactoring; optimizing re-renders, memoization, state management; reviewing for performance; fixing hydration mismatches; debugging infinite re-renders, stale closures, input focus loss, animations restarting; preventing remounting; implementing transitions, lazy initialization, effect dependencies. Even simple React tasks benefit from these patterns. Covers React 19+ (useEffectEvent, Activity, ref props). Triggers - useEffect, useState, useMemo, useCallback, memo, inline components, nested components, components inside components, re-render, performance, hydration, SSR, Next.js, useDeferredValue, combined hooks.
elevenlabs-agents
IncludedBuild conversational AI voice agents with ElevenLabs Platform using React, JavaScript, React Native, or Swift SDKs. Configure agents, tools (client/server/MCP), RAG knowledge bases, multi-voice, and Scribe real-time STT. Use when: building voice chat interfaces, implementing AI phone agents with Twilio, configuring agent workflows or tools, adding RAG knowledge bases, testing with CLI "agents as code", or troubleshooting deprecated @11labs packages, Android audio cutoff, CSP violations, dynamic variables, or WebRTC config. Keywords: ElevenLabs Agents, ElevenLabs voice agents, AI voice agents, conversational AI, @elevenlabs/react, @elevenlabs/client, @elevenlabs/react-native, @elevenlabs/elevenlabs-js, @elevenlabs/agents-cli, elevenlabs SDK, voice AI, TTS, text-to-speech, ASR, speech recognition, turn-taking model, WebRTC voice, WebSocket voice, ElevenLabs conversation, agent system prompt, agent tools, agent knowledge base, RAG voice agents, multi-voice agents, pronunciation dictionary, voice speed control, elevenlabs scribe, @11labs deprecated, Android audio cutoff, CSP violation elevenlabs, dynamic variables elevenlabs, case-sensitive tool names, webhook authentication
humanizer
IncludedHumanize AI-generated text by detecting and removing patterns typical of LLM output. Rewrites text to sound natural, specific, and human. Uses 28 pattern detectors, 560+ AI vocabulary terms across 3 tiers, and statistical analysis (burstiness, type-token ratio, readability) for comprehensive detection. Use when asked to humanize text, de-AI writing, make content sound more natural/human, review writing for AI patterns, score text for AI detection, or improve AI-generated drafts. Covers content, language, style, communication, and filler categories.
generating-mermaid-diagrams
IncludedSalesforce architecture diagrams using Mermaid with ASCII fallback. Use this skill when generating text-based diagrams for Salesforce architecture, OAuth flows, ERDs, integration sequences, or Agentforce structure. TRIGGER when: user says "diagram", "visualize", "ERD", or asks for sequence diagrams, flowcharts, class diagrams, or architecture visualizations in Mermaid. DO NOT TRIGGER when: user wants PNG/SVG image output (use generating-visual-diagrams), or asks about non-Salesforce systems.