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

vibe-island-opencode

v1.0.2

Published

OpenCode plugin for Vibe Island (vibeisland.app) — forwards session events to the macOS notch app via TCP (SSH remote) or Unix socket

Readme

vibe-island-opencode

OpenCode plugin for Vibe Island — the macOS app that lives in your notch and monitors AI coding sessions in real time.

Vibe Island (vibeisland.app) is a native macOS app that shows your AI agent's activity directly in the notch: session status, tool calls, permissions, and more. This plugin bridges OpenCode to Vibe Island.

Supports local (Unix socket) and remote (TCP via SSH reverse tunnel) connections.

Features

  • Full session lifecycle: start, busy/idle tracking, stop
  • Tool execution tracking (PreToolUse / PostToolUse)
  • Permission request interception (blocking — reply from Vibe Island UI)
  • Automatic connection: TCP first (for SSH remote), Unix socket fallback (for local)
  • Rate-limit retry awareness
  • Session error handling (abort → immediate Stop)

Installation

Quick install (recommended)

curl -fsSL https://raw.githubusercontent.com/arkan/vibe-island-opencode/main/install.sh | bash

Manual install

git clone https://github.com/arkan/vibe-island-opencode.git /tmp/vi-oc
mkdir -p ~/.config/opencode/plugins
cp /tmp/vi-oc/index.js ~/.config/opencode/plugins/vibe-island-opencode.js

Then add to ~/.config/opencode/opencode.json:

{
  "plugin": [
    "file:///home/YOUR_USER/.config/opencode/plugins/vibe-island-opencode.js"
  ]
}

npm install

npm install -g vibe-island-opencode
# Then run the installer:
bash <(npm root -g)/vibe-island-opencode/install.sh

Or add the npm package directly to opencode.json:

{
  "plugin": ["vibe-island-opencode@latest"]
}

How it works

OpenCode (VPS)                         Vibe Island (Mac)
┌──────────────────────┐    SSH -R     ┌─────────────────────────┐
│ Plugin (index.js)    │──► TCP 17891─┼──► Listener :17891 ───► │
│                      │   tunnel     │   Notch UI              │
└──────────────────────┘              └─────────────────────────┘
  1. Vibe Island on the Mac creates a reverse SSH tunnel: ssh -R 17891:127.0.0.1:17891 user@vps
  2. The plugin connects to 127.0.0.1:17891 on the VPS
  3. Data flows through the SSH tunnel back to Vibe Island on the Mac
  4. When running locally, the plugin falls back to the Unix socket

Configuration

| Env var | Default | Description | |---|---|---| | VIBE_ISLAND_HOST | 127.0.0.1 | TCP host for remote connections | | VIBE_ISLAND_PORT | 17891 | TCP port for remote connections | | VIBE_ISLAND_TIMEOUT | 3000 | Connection timeout in ms |

Event mapping

| OpenCode event | Vibe Island event | |---|---| | session.created | SessionStart | | session.deleted | SessionEnd | | session.status {busy} | UserPromptSubmit | | session.status {idle} | Stop | | session.status {retry} | Notification | | session.error | Stop | | session.idle | Stop | | message.part.updated (tool) | PreToolUse / PostToolUse | | permission.asked | PermissionRequest (blocking) |

License

MIT