npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@abhiloiwal/openclaw-video-call

v0.1.0

Published

OpenClaw video-call plugin via Tavus CVI

Readme

@openclaw/video-call

Video call plugin for OpenClaw via Tavus CVI (Conversational Video Interface).

Start face-to-face AI video conversations from any OpenClaw channel. The agent creates a video call URL, sends it to the user, and they join in the browser to talk with an AI-powered video replica.

Two Modes

Approach A — Tavus LLM (simple) Tavus runs its own LLM. OpenClaw passes conversational context when creating the call. No extra infrastructure needed.

Approach B — OpenClaw Brain (powerful) Tavus calls back to OpenClaw's /v1/chat/completions endpoint as a BYO LLM. The video replica IS your OpenClaw agent — same memory, same tools, same session. Requires a publicly reachable gateway (Tailscale Funnel or ngrok).

Install

# Copy to extensions directory
cp -r video-call ~/.openclaw/extensions/
cd ~/.openclaw/extensions/video-call
npm install

# Restart gateway
openclaw gateway restart

Configure

Add to ~/.openclaw/openclaw.json:

{
  "plugins": {
    "entries": {
      "video-call": {
        "enabled": true,
        "config": {
          "tavusApiKey": "your-tavus-api-key",
          "defaultPersonaId": "your-persona-id",
          "defaultReplicaId": "your-replica-id"
        }
      }
    }
  }
}

The API key can also be set via TAVUS_API_KEY environment variable.

Tavus Setup

  1. Create an account at platform.tavus.io
  2. Create a Persona (defines behavior, LLM, voice settings)
  3. Pick a Replica (the video avatar)
  4. Copy the persona ID and replica ID into your config

For Approach B (BYO LLM)

  1. Enable chat completions on your gateway:
{
  "gateway": {
    "http": {
      "endpoints": {
        "chatCompletions": { "enabled": true }
      }
    }
  }
}
  1. Expose your gateway publicly (e.g., Tailscale Funnel):
tailscale funnel 18789
  1. Create a Tavus Persona with Custom LLM:
    • Model: openclaw:main
    • Base URL: https://your-tailscale-hostname.ts.net/v1
    • API Key: your gateway auth token

Usage

Agent Tool

The agent can start video calls via the video_call tool:

| Action | Description | |--------|-------------| | start_conversation | Create a new video call (returns join URL) | | end_conversation | End an active call | | get_status | Check call status | | get_transcript | Retrieve conversation transcript |

CLI

openclaw videocall start --context "Discuss quarterly results"
openclaw videocall start --persona <id> --replica <id> --greeting "Hello!"
openclaw videocall status --id <conversationId>
openclaw videocall transcript --id <conversationId>
openclaw videocall end --id <conversationId>
openclaw videocall list

Gateway RPC

videocall.start   { personaId?, replicaId?, context?, greeting?, name? }
videocall.end     { conversationId }
videocall.status  { conversationId }
videocall.transcript { conversationId }

Configuration Reference

| Field | Required | Description | |-------|----------|-------------| | tavusApiKey | Yes | Tavus API key (or TAVUS_API_KEY env) | | defaultPersonaId | Yes | Default Tavus persona ID | | defaultReplicaId | Yes | Default Tavus replica ID | | gatewayPublicUrl | No | Public gateway URL for BYO LLM mode | | agentId | No | OpenClaw agent ID (default: main) | | defaults.maxCallDuration | No | Max call seconds (default: 3600) | | defaults.enableRecording | No | Enable recording (default: false) | | defaults.enableClosedCaptions | No | Enable captions (default: true) | | defaults.language | No | Language (default: english) | | store | No | Path for conversation logs |

How It Works

User asks agent for a video call
  -> Agent calls video_call tool
    -> Plugin creates Tavus conversation via API
      -> Returns conversation URL
        -> User clicks link, joins in browser
          -> Tavus handles video/audio/avatar
            -> (Approach B) Tavus calls OpenClaw for responses

File Structure

video-call/
├── package.json
├── openclaw.plugin.json     # Plugin manifest + config schema
├── index.ts                 # Plugin entry: tool, RPC, CLI, service registration
└── src/
    ├── config.ts            # Zod config validation
    ├── tavus-client.ts      # Tavus API HTTP client
    ├── manager.ts           # Conversation session manager
    ├── store.ts             # JSONL persistence
    ├── cli.ts               # CLI commands
    └── types.ts             # TypeScript types

License

MIT