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

iobroker.assistant-satellite

v0.1.0

Published

ioBroker adapter that runs a voice satellite for ioBroker.assistant on this host (wake word + mic streaming + TTS playback). Thin wrapper around @iobroker/assistant-satellite.

Downloads

154

Readme

ioBroker.assistant-satellite

An ioBroker adapter that turns the host it runs on into a voice satellite for ioBroker.assistant: it detects the wake word, streams the microphone to the assistant's voice server and plays the spoken reply.

It is a thin wrapper around the standalone @iobroker/assistant-satellite package — use this adapter when the satellite device already runs ioBroker (config + status via the admin UI). On a bare Pi without ioBroker, use the standalone package directly (npx @iobroker/assistant-satellite).

Requirements

  • A mic + speaker on the host
  • Audio backend (auto-selected, or force it under Audio backend): Linuxalsa-utils (arecord/aplay); Windows/macOSffmpeg
  • A running ioBroker.assistant instance (the satellite talks to it over the ioBroker message bus by default)

Setup

Install the adapter, add an instance, then configure it. The settings are grouped:

ioBroker.assistant server

  • Assistant instance — pick the running ioBroker.assistant instance this satellite talks to
  • TransportioBroker (audio over the message bus, no UDP port, central STT/TTS — recommended) or UDP (Hannah-style audio stream, ESP-compatible). With UDP, set the Local listen port (default 7776) and, if the wrong interface is auto-picked, a Host IP override.

Identity

  • Room — assign the satellite to a room

Audio

  • Audio backendAuto / ALSA / ffmpeg
  • Microphone / Speaker device — e.g. plughw:2,0 on a Pi (ALSA) or a dshow name / avfoundation index (ffmpeg); default = system default. The device lists are read from this host (instance must be running).
  • ALSA mixer control — optional; only used by the volume/mute states (see below). Empty = auto-detect on the speaker's card; set a name (e.g. PCM, Master, Speaker) if the wrong one is picked. ALSA only.

Wake word

  • Wake word model — built-in hey_jarvis (default), alexa, hey_mycroft, hey_rhasspy, or a URL / local .onnx path. You can configure up to three wake words — the satellite triggers on any of them.
  • Threshold — 0–1, lower = more sensitive.
  • Upload a custom wake-word model — upload a single self-contained .onnx (external-data .onnx + .onnx.data is not supported), then pick it in a wake-word field above. Use the built-in wake-word test to check detection live (the test.* states report score / peak / mic level while it runs).
  • Follow-up conversation — after an answer, keep the mic open for a short follow-up window so you can continue ("…and the kitchen too") or answer a clarifying question without saying the wake word again.

Recording (advanced) — silence detection and record-length tuning: silence RMS threshold, silence (ms), min / max record (ms) and pre-buffer chunks.

On first start the OpenWakeWord models download into the instance data dir. Then say the wake word → speak → the answer is played back. The status state shows idle / listening / processing / speaking, and info.connection reflects whether the satellite is registered with the assistant.

Volume, mute, Do-Not-Disturb

These writable states drive the speaker's ALSA mixer, so they apply to answers, announcements and the beep alike (ALSA backend only; the mixer control is auto-detected on the speaker's card, or set it under ALSA mixer control if the wrong one is picked):

  • volume — 0–100 %
  • mute — silence the speaker
  • dnd — Do-Not-Disturb: announcements are suppressed (replies to your own questions still play)

Priority announcements: if the announcement text (sent via the assistant's tts.text / satellites.<id>.tts) starts with !, the ! is stripped and it plays even when DND is on — e.g. !Water leak in the basement.

Changelog

0.1.0 (2026-07-12)

  • (@GermanBluefox) Support of multiple wake-words
  • (@GermanBluefox) Added test of wake-words
  • (@GermanBluefox) Connect to the assistant by instance selection with a choice of transport (ioBroker message bus or UDP)
  • (@GermanBluefox) Added selectable audio backend (auto / ALSA / ffmpeg) and room assignment
  • (@GermanBluefox) Added follow-up conversation mode (continue without repeating the wake word)
  • Added volume / mute / dnd states (ALSA mixer); announcements starting with ! bypass Do-Not-Disturb

0.0.2 (2026-07-05)

  • (@GermanBluefox) Initial commit

License

MIT License

Copyright (c) 2026 Denis Haev [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.