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

@openpalm/channel-voice

v0.10.0

Published

Voice channel adapter with STT/TTS pipeline for OpenPalm

Readme

@openpalm/channel-voice

Voice web UI and STT -> assistant -> TTS pipeline for OpenPalm. In the full stack it is exposed on http://localhost:3810 and runs behind guardian.

How it works

mic -> STT -> assistant -> TTS -> speaker
  • Browser audio is transcribed locally or by a configured STT provider
  • Text is forwarded through guardian to the assistant
  • The reply is rendered in the UI and optionally synthesized back to audio
  • Browser speech APIs remain available as fallbacks for local/dev use

Deployment model

  • Shipped addon source: .openpalm/registry/addons/voice/compose.yml
  • Enabled runtime overlay: ~/.openpalm/stack/addons/voice/compose.yml
  • Default host URL: http://localhost:3810
  • Container port: 8186
  • System-managed HMAC secret: CHANNEL_VOICE_SECRET in ~/.openpalm/vault/stack/guardian.env

Manual start example:

cd "$HOME/.openpalm/stack"
docker compose \
  --project-name openpalm \
  --env-file ../vault/stack/stack.env \
  --env-file ../vault/user/user.env \
  -f core.compose.yml \
  -f addons/voice/compose.yml \
  up -d

If you use the optional admin addon, manage the addon through the admin UI or current install API instead of editing the compose file list by hand.

Local dev only

Package-local dev remains standalone and intentionally different from the deployed addon:

cd packages/channel-voice
bun install
bun run dev

That starts the package directly with a dev secret and its own local port.

Configuration

These env vars matter when running the package directly or when overriding addon defaults:

| Variable | Default | Purpose | |---|---|---| | PORT | 8186 | HTTP server port | | GUARDIAN_URL | http://guardian:8080 | Guardian URL in Docker | | CHANNEL_VOICE_SECRET | - | Guardian HMAC secret | | OPENAI_API_KEY | - | Shared fallback API key | | LLM_BASE_URL | http://localhost:11434 | Standalone/dev LLM URL | | LLM_API_KEY | ollama | Standalone/dev LLM key | | LLM_MODEL | qwen2.5:3b | Standalone/dev model | | STT_BASE_URL | - | Optional STT provider URL | | STT_API_KEY | - | Optional STT provider key | | TTS_BASE_URL | - | Optional TTS provider URL | | TTS_API_KEY | - | Optional TTS provider key |

API

| Method | Path | Description | |---|---|---| | GET | /api/health | Service and provider status | | POST | /api/pipeline | Multipart voice pipeline request |