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

openclaw-video-call

v0.1.7

Published

Your OpenClaw agent calls you with real-time AI video — powered by Runway

Downloads

704

Readme

video-call-ai-character

An OpenClaw skill that lets your AI agent call you with a real-time video avatar powered by Runway.

Your agent initiates the call, the avatar speaks first with context, and after the call ends the full transcript is fed back to the agent so it can take action.

What it looks like

  1. Your agent decides something needs a call (CI broke, morning standup, needs a decision)
  2. It creates a call and sends you a link via WhatsApp, Slack, or any chat
  3. You open the link and see an incoming call screen with the avatar's face
  4. You answer — the avatar greets you with context and you have a real conversation
  5. Call ends, the agent gets the transcript and follows up

Use cases

  • Urgent alerts — CI failures, server down, security incidents
  • Daily standups — Morning check-in with overnight summary
  • Decision points — When the agent needs your input before proceeding
  • Complex explanations — Walking through an error or architecture decision
  • Status updates — End-of-day recap, weekly summary

Install as an OpenClaw skill

openclaw skill install github:runwayml/openclaw-skills/video-call-ai-character

Requirements

Quick start (standalone)

# Set your Runway API key
export RUNWAYML_API_SECRET=your_key

# Run the server
npx openclaw-video-call

The server starts on http://localhost:7891 and auto-creates a Cloudflare tunnel for remote access.

Development

git clone https://github.com/runwayml/openclaw-skills.git
cd openclaw-skills/video-call-ai-character
npm install
export RUNWAYML_API_SECRET=your_key
npm run dev

How it works

Agent                    Server (this skill)              User
  │                            │                            │
  ├─ POST /create-avatar ─────►│                            │
  │◄── { id: uuid } ──────────┤                            │
  │                            │                            │
  ├─ POST /create-call ───────►│                            │
  │◄── { urls: { tunnel } } ──┤                            │
  │                            │                            │
  ├─ "Hey, join this call" ────┼───────────────────────────►│
  │                            │                            │
  │                            │◄── User clicks Answer ────┤
  │                            │── Runway WebRTC session ──►│
  │                            │        (live video call)   │
  │                            │◄── Call ends ─────────────┤
  │                            │                            │
  ├─ GET /transcript ─────────►│                            │
  │◄── { transcript: [...] } ─┤                            │
  │                            │                            │
  ├─ (takes action based on transcript)                     │

Tech stack

  • Server: Node.js, Express, Runway API
  • Client: React, Runway Avatars React SDK
  • Video: WebRTC via LiveKit (handled by Runway)
  • Tunneling: Cloudflare Quick Tunnels (for phone access)

License

MIT