tavus-cvi-interactions
Installation
SKILL.md
Tavus CVI Interactions Protocol
Control live conversations programmatically via WebRTC data channel.
Setup: Daily.js Client
<script src="https://unpkg.com/@daily-co/daily-js"></script>
<script>
const call = window.Daily.createFrame();
// Listen for events from CVI
call.on('app-message', (event) => {
console.log('CVI event:', event.data);
});
// Join the conversation
call.join({ url: 'YOUR_CONVERSATION_URL' });