Skills Trugen AI
Build, configure, and deploy conversational video agents using the Trugen AI platform API. Use this skill when the user wants to create AI video avatars, manage knowledge bases, set up webhooks/callbacks, embed agents into websites, integrate with LiveKit, configure tools or MCPs, set up multilingual agents, or bring their own LLM to Trugen AI.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ajayk47/trugenai" ~/.claude/skills/openclaw-skills-trugen-ai && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/ajayk47/trugenai" ~/.openclaw/skills/openclaw-skills-trugen-ai && rm -rf "$T"
manifest:
skills/ajayk47/trugenai/SKILL.mdsource content
Trugen AI
Build real-time conversational video agents — AI-powered avatars that see, hear, speak, and reason with users in under 1 second of latency.
| API Base URL | |
| Authentication | header on all requests |
| Official Docs | docs.trugen.ai |
| Developer Portal | app.trugen.ai |
Required Credentials
| Variable | Description | Where to Get |
|---|---|---|
| Primary API key for all Trugen API calls (sent as header) | Developer Portal |
| (Optional) Default avatar ID for LiveKit integration | Developer Portal |
Security: Never expose
in client-side code. For widget/iFrame embeds, use a server-side proxy to keep keys secret. See references/embedding.md for details.TRUGEN_API_KEY
Platform Pipeline
| Step | Component | Function |
|---|---|---|
| 1 | WebRTC | Bidirectional audio/video streaming |
| 2 | STT (Deepgram) | Streaming speech-to-text |
| 3 | Turn Detection | Natural conversation boundary detection |
| 4 | LLM (OpenAI, Groq, custom) | Contextual response generation |
| 5 | Knowledge Base | Grounding answers in your data |
| 6 | TTS (ElevenLabs) | Natural, expressive speech synthesis |
| 7 | Huma-01 | Neural avatar video generation with lip sync & microexpressions |
Quickstart
- Create an agent →
— see references/agents.mdPOST /v1/ext/agent - Embed via iFrame or Widget — see references/embedding.md
API Endpoints Overview
| Resource | Endpoints | Reference |
|---|---|---|
| Agents | Create, Get, List, Update, Delete, Create from Template | agents.md |
| Knowledge Base | Create KB, Add Docs, Get, List, Update, Delete KB/Doc | knowledge-base.md |
| Templates | Create, Get, List, Update, Delete persona templates | templates.md |
| Tools & MCPs | Create/manage function-calling tools and MCP servers | tools-and-mcps.md |
| Webhooks | Callback events, payload format, handler examples | webhooks.md |
| Embedding | iFrame, Widget, LiveKit integration + avatar IDs | embedding.md |
| Providers/Avatars | Available LLMs, STT, TTS, avatars, languages, BYO-LLM | providers-avatars-languages.md |
| Prompting | Voice prompt strategies, guardrails, use case examples | prompting-and-use-cases.md |
Conversations
Retrieve transcripts for completed sessions:
GET /v1/ext/conversation/{id} — Returns agent_id, status, transcript array, recording_url.
Workflow Guide
Determine what the user needs, then load the appropriate reference:
| Task | Reference File |
|---|---|
| Creating/managing agents | agents.md |
| Attaching data/documents | knowledge-base.md |
| Reusing personas across agents | templates.md |
| Calling external APIs from agent | tools-and-mcps.md |
| Reacting to conversation events | webhooks.md |
| Embedding agent in website | embedding.md |
| Choosing LLM/voice/language | providers-avatars-languages.md |
| Writing effective prompts | prompting-and-use-cases.md |
Developer Resources
| Resource | Link |
|---|---|
| Documentation | docs.trugen.ai |
| API Reference | docs.trugen.ai/api-reference |
| Developer Portal | app.trugen.ai |
| Community Discord | discord.gg/4dqc8A66FJ |
| Support | support@trugen.ai |
| GitHub Examples | trugenai/trugen-examples |
| Changelog | docs.trugen.ai/changelog |