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

tabby-nv-bell-notify

v1.1.1

Published

Native OS notifications for terminal bell and configurable output patterns in Tabby

Downloads

348

Readme

tabby-nv-bell-notify

:gb:English · :jp:日本語

A Tabby plugin that shows native OS notifications when the terminal rings a bell or matches a configurable output pattern.

Useful for tools like Claude Code that pause and wait for user input — get notified even when Tabby is in the background.

Features

  • Bell notification — triggers on BEL character (\x07) emitted by any terminal process
  • Pattern notification — triggers when terminal output matches a user-defined regex
  • Idle debounce — waits for output to stop before firing, distinguishing real prompts from startup bursts
  • Native OS notifications — uses macOS / Windows system notifications (not in-app toasts)
  • Focus-aware — optionally suppresses notifications while the Tabby window is focused
  • Cooldown — configurable minimum interval between notifications to prevent spam
  • i18n — UI follows Tabby's language setting (English / Japanese)

Settings screen

Installation

Install via Settings → Plugins inside Tabby, or run the following command and restart Tabby:

macOS

cd ~/Library/Application\ Support/tabby/plugins
npm install tabby-nv-bell-notify

Windows

cd "$env:APPDATA\tabby\plugins"
npm install tabby-nv-bell-notify

Notification Permission

On first use, Tabby will prompt for notification permission. If you previously denied it, enable it manually:

  • macOS — System Settings → Notifications → Tabby

    macOS notification settings

  • Windows — Settings → System → Notifications → Tabby

Configuration

Open Settings → NV Bell Notify inside Tabby.

| Option | Default | Description | |---|---|---| | Enable notifications | true | Master switch | | Bell notification | true | Notify on BEL character | | Pattern notification | true | Notify on regex match | | Only when unfocused | true | Skip notification if Tabby window is focused | | Idle wait | 500ms | Wait for output to stop before firing. Prevents false positives from startup bursts. Set to 0 for immediate firing. | | Cooldown | 5000ms | Minimum interval between notifications | | Patterns | see below | List of regex patterns with labels |

Default patterns

| Label | Regex | Screen | Enabled | |---|---|---|---| | Claude Code - Permission | Do you want to (proceed\|make this edit\|allow\|continue\|use this API key) | Any | ✓ | | Claude Code - Plan Mode | (Enter\|Exit) plan mode\?\|How should the plan be implemented | Any | ✓ | | Claude Code - Question | Choose an option: | Any | ✓ | | Claude Code - Auto/Setup | Enable auto mode\?\|Allow external CLAUDE\.md | Any | ✓ | | General - (y/n) prompt | \(y/n\)\|\(Y/N\) | Any | — |

Pattern options

Each pattern supports:

  • Label — displayed as the notification title
  • Regex — JavaScript regex matched against the last 500 characters of visible terminal output (ANSI codes stripped)
  • Screen modeAny, Normal screen, or Alternate screen (e.g. vim, Claude Code TUI)

License

MIT