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

@superwhisper/opencode

v0.1.0

Published

SuperWhisper voice integration plugin for OpenCode - get voice notifications when tasks complete

Downloads

106

Readme

@superwhisper/opencode

SuperWhisper voice integration plugin for OpenCode.

Get voice notifications when your AI coding tasks complete, and respond with your voice. Your voice response is sent back to OpenCode as the next prompt, creating a hands-free coding loop.

Requirements

Installation

Add to your opencode.json:

{
  "plugin": ["@superwhisper/opencode"]
}

Or install locally:

mkdir -p ~/.config/opencode/plugin && curl -fsSL -o ~/.config/opencode/plugin/superwhisper.ts \
  https://raw.githubusercontent.com/superwhisper/opencode-superwhisper/main/src/index.ts

The plugin auto-loads from ~/.config/opencode/plugin/ — no config changes needed.

How It Works

You speak → OpenCode works → Plugin notifies SuperWhisper → You speak back → loop
  1. Task completes → OpenCode fires session.idle
  2. Plugin extracts the response → fetches the last assistant message
  3. Plugin notifies SuperWhisper → writes message to temp file, opens deeplink
  4. SuperWhisper shows notification → displays summary with voice recording UI
  5. You speak your response → SuperWhisper transcribes and writes to response file
  6. Plugin reads response → polls the response file, sends back to OpenCode
  7. OpenCode continues → processes your voice input as the next instruction

Events

| OpenCode Event | SuperWhisper Status | Description | |----------------|---------------------|-------------| | session.idle | completed | Task finished | | session.error | error | An error occurred | | permission.asked | permission | Tool needs approval | | question.asked | question | Agent is asking a question |

Development

bun install
bun test
bun run typecheck

Local Testing

Build and install to your local OpenCode plugin folder:

bun run install-local

Or watch for changes and auto-install on save:

bun run dev

Both commands bundle the plugin into a single .js file and copy it to ~/.config/opencode/plugin/superwhisper.js. OpenCode picks it up on next session.

Project Structure

src/
  index.ts        # Plugin entry point and event handlers
  types.ts        # Types, interfaces, constants
  deeplink.ts     # Deeplink URL building
  message.ts      # Message extraction and summary
  poll.ts         # Response file polling
  normalize.ts    # Question/permission response normalization
  index.test.ts   # Tests

License

MIT