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

@erzhtor/opencode-tmux-notify

v0.1.1

Published

OpenCode plugin that shows agent activity status in tmux window names

Readme

opencode-tmux-notify

Shows OpenCode agent activity status in your tmux window name — without overwriting it.

Instead of replacing the window name, this plugin prepends a status icon:

demo

Install

opencode plugin @erzhtor/opencode-tmux-notify --global

Or add to opencode.json:

{ "plugin": ["@erzhtor/opencode-tmux-notify"] }

Configure

type Options {
  working?: string | { spinner: string; spinMs?: number }
  waiting?: string | { icon: string }
  error?:   string | { icon: string; clearMs?: number | "never" }
  done?:    string | { icon: string; clearMs?: number | "never" }
}
  • working — string for static icon, or { spinner, spinMs } for animation. Default: heavy braille spinner at 80ms.
  • waiting — icon when agent is blocked waiting for your input (e.g. asking a question). Default: . Always persists until the agent resumes.
  • error — icon when agent encounters an error. Default: , persists by default.
  • done — icon when agent finishes. Default: with 5000ms auto-clear.
  • clearMs: "never" — keep the icon until the next state (for error and done only). Omitting clearMs defaults to "never" for error, and 5000 for done.

Examples

Use defaults:

{ "plugin": ["@erzhtor/opencode-tmux-notify"] }

Static icons + persist done forever:

["@erzhtor/opencode-tmux-notify", { "working": "⏳", "done": "✅" }]

Custom spinner + flash error:

["@erzhtor/opencode-tmux-notify", {
  "working": { "spinner": "◐◓◑◒", "spinMs": 120 },
  "done":    { "icon": "✓", "clearMs": 10000 },
  "error":   { "icon": "⚠", "clearMs": 5000 }
}]

Disable waiting/error:

["@erzhtor/opencode-tmux-notify", {
  "waiting": null,
  "error": null
}]

Spinner presets

braille — dots walking around:

["@erzhtor/opencode-tmux-notify", { "working": { "spinner": "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏" } }]

heavy braille (default) — denser 8-dot pattern:

["@erzhtor/opencode-tmux-notify", { "working": { "spinner": "⣷⣯⣟⡿⢿⣻⣽⣾" } }]

arcs — crescent rotations:

["@erzhtor/opencode-tmux-notify", { "working": { "spinner": "◜◠◝◞◡◟" } }]

half-circles — rotating circle fills:

["@erzhtor/opencode-tmux-notify", { "working": { "spinner": "◐◓◑◒" } }]

quadrant squares — corner fills rotating:

["@erzhtor/opencode-tmux-notify", { "working": { "spinner": "◰◳◲◱" } }]

quadrant circles — quadrant fills rotating:

["@erzhtor/opencode-tmux-notify", { "working": { "spinner": "◴◷◶◵" } }]

quadrant blocks — block fills rotating:

["@erzhtor/opencode-tmux-notify", { "working": { "spinner": "▖▘▝▗" } }]

triangles — corners rotating:

["@erzhtor/opencode-tmux-notify", { "working": { "spinner": "◢◣◤◥" } }]

block pulse — growing/shrinking bar:

["@erzhtor/opencode-tmux-notify", { "working": { "spinner": "▁▂▃▄▅▆▇█▇▆▅▄▃▂" } }]

arrows — compass cycle:

["@erzhtor/opencode-tmux-notify", { "working": { "spinner": "←↖↑↗→↘↓↙" } }]

classic ascii — universal:

["@erzhtor/opencode-tmux-notify", { "working": { "spinner": "|/-\\" } }]

How it works

| State | Icon | Trigger | | ------- | ---- | -------------------------------- | | Working | ⣷ | Agent starts generating a response | | Waiting | ⚠ | Agent needs your input (question, permission) | | Error | ✘ | Agent encounters an error | | Done | ✔ | Session becomes idle | | Clean | — | After clearMs timeout, or on exit |

  • Multi-instance safe: Uses $TMUX_PANE with -t targeting — each OpenCode instance only modifies its own window
  • No-op outside tmux: Silently returns if $TMUX_PANE is not set
  • No shell injection: Uses execFileSync (no shell interpolation)
  • Exit cleanup: Strips the icon when OpenCode exits
  • Debounced: Only sets the working icon once per agent turn
  • State priority: waiting > error > done — a blocked agent isn't truly idle