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

@openvole/paw-voice-call

v1.0.0

Published

Voice call channel Paw for OpenVole — Twilio voice conversations

Readme

@openvole/paw-voice-call

Voice call channel for OpenVole — inbound and outbound calls via Twilio with real-time STT/TTS.

npm

Part of OpenVole — the microkernel AI agent framework.

Install

npm install @openvole/paw-voice-call

Config

Add the paw to your vole.config.json:

{
  "name": "@openvole/paw-voice-call",
  "allow": {
    "network": ["api.twilio.com", "*.twilio.com"],
    "listen": [3979],
    "env": ["TWILIO_ACCOUNT_SID", "TWILIO_AUTH_TOKEN", "TWILIO_PHONE_NUMBER", "VOICE_CALL_WEBHOOK_URL", "VOICE_CALL_PORT"]
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | TWILIO_ACCOUNT_SID | Yes | Your Twilio Account SID | | TWILIO_AUTH_TOKEN | Yes | Your Twilio Auth Token | | TWILIO_PHONE_NUMBER | Yes | Your Twilio phone number in E.164 format (e.g. +14155551234) | | VOICE_CALL_WEBHOOK_URL | Yes | Public URL where Twilio can reach the webhook server | | VOICE_CALL_PORT | No | Local port for the webhook server (default: 3979) |

Twilio Account Setup

  1. Create a Twilio account
  2. Purchase a phone number with Voice capabilities
  3. Note your Account SID and Auth Token from the Twilio Console
  4. Configure your phone number's Voice webhook to point to your server (see Webhook Setup below)

Call Flow

  1. Inbound call arrives at Twilio, which hits POST /voice/inbound
  2. Server responds with TwiML greeting + <Gather> to collect speech
  3. Caller speaks — Twilio's built-in STT transcribes and sends to POST /voice/gather
  4. Paw creates a task with the transcription, responds with TwiML redirect to /voice/respond/<taskId>
  5. The respond endpoint holds the connection (long-poll, max 25s) waiting for the brain's response
  6. When the task completes, TwiML with <Say> delivers the response + <Gather> continues the conversation
  7. Loop back to step 3

Outbound calls follow the same flow after initial connection via the initiate_call tool.

Webhook Setup

Development (ngrok)

ngrok http 3979

Set VOICE_CALL_WEBHOOK_URL to your ngrok URL (e.g. https://abc123.ngrok-free.app).

In your Twilio Console, configure your phone number's Voice webhook:

  • A call comes in: Webhook, https://abc123.ngrok-free.app/voice/inbound, HTTP POST

Production

Point VOICE_CALL_WEBHOOK_URL to your production server's public URL and configure the Twilio webhook accordingly.

License

MIT