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

oc-plugin-the-matrix

v0.5.0

Published

Matrix-inspired TUI rain, intro, and theme for OpenCode.

Readme

oc-plugin-the-matrix

Matrix-inspired TUI plugin for OpenCode.

It adds a Matrix-inspired theme with selectable accent colors, toggleable background transparency, animated rain, a cinematic startup intro, and optional session text that briefly drops into place.

Screencast

Screencast preview

Click the preview to open the full video.

Features

  • selectable accent colors: Green, Cyan, Blue, Purple, Amber, Yellow, Pink, and Red
  • toggleable transparent or opaque matrix-console theme background
  • fullscreen boot-style intro
  • Matrix rain on the home screen or across the full UI
  • route-aware adaptive and uniform intensity profiles
  • scanline and glow post-processing
  • command-palette settings dialog with persisted preferences
  • optional session-text settle effect for newly rendered text in sessions

Install

Package install

Published package:

npm view oc-plugin-the-matrix version

Current release: 0.2.0

Add the plugin by package name in your OpenCode config:

{
  "$schema": "https://opencode.ai/tui.json",
  "plugin": [
    "oc-plugin-the-matrix"
  ]
}

Then start or restart OpenCode.

If your OpenCode version supports it, you can also install it with:

opencode plugin oc-plugin-the-matrix

If you want to pin a specific package version in config, use:

{
  "$schema": "https://opencode.ai/tui.json",
  "plugin": [
    "[email protected]"
  ]
}

Local development install

  1. Clone this repository somewhere on your machine.
  2. Register it in ~/.config/opencode/tui.json:
{
  "$schema": "https://opencode.ai/tui.json",
  "plugin": [
    "/absolute/path/to/oc-plugin-the-matrix"
  ]
}
  1. Start or restart OpenCode.

The plugin installs the bundled matrix-console theme and sets it automatically on first load.

Development

Build the package artifact with:

npm install
npm run build

This produces a publishable dist/ directory containing the plugin entrypoint and all bundled theme variants.

Usage

Open the command palette and run Matrix settings.

Available commands:

  • Matrix settings
  • Enable Matrix plugin / Disable Matrix plugin
  • Replay Matrix intro
  • Use matrix-console theme

Settings

  • Plugin enabled: master on/off switch for the Matrix theme and effects
  • Accent color: switch between Green, Cyan, Blue, Purple, Amber, Yellow, Pink, and Red
  • Background transparency: toggle the bundled Matrix theme between transparent and opaque backgrounds
  • Scope: Home only or Everywhere
  • Route profile: Route-aware or Uniform
  • Paint mode: draw only in empty cells or overlay all text
  • Density: Light, Medium, or Heavy
  • Speed: Slow, Normal, or Fast
  • Scanlines: CRT-style sweep layer
  • Glow: phosphor glow around bright glyphs
  • Session text settle: newly rendered session text briefly descends into place
  • Intro: enable or disable the fullscreen intro
  • Intro length: Short, Normal, or Long

Session text settle is meant for Scope: Everywhere and applies only on session routes.

When the plugin is turned off, it stops the Matrix effects and restores the previous theme when one is available, falling back to the default opencode theme.

Repository Layout

  • index.ts: TUI plugin entry
  • dist/: publishable package output generated by npm run build
  • matrix-console.json: transparent bundled theme
  • matrix-console-opaque.json: opaque bundled theme variant
  • matrix-console-*.json: bundled accent theme variants

Notes

  • Requires OpenCode >=1.3.13.
  • The repository intentionally excludes local OpenCode state, KV settings, logs, and .opencode/ workspace files.
  • Runtime preferences are stored by OpenCode on the local machine after installation.

License

MIT