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

opencode-extension-manager

v0.1.3

Published

CLI for managing OpenCode extensions

Readme

OpenCode Extension Manager (OEM)

oem is a CLI for managing OpenCode extensions.

Current focus:

  • Implemented: plugins
  • Placeholder only: skills, mcps (commands exist, output not yet realized)

Requirements

  • Node.js >=18

Install

npm install
npm run build

Use directly in this project:

node dist/index.js --help

Or link globally for local development:

npm link
oem --help

Command Overview

Top-level commands:

  • oem list (oem ls)
  • oem plugins ...
  • oem skills ... (placeholder)
  • oem mcps ... (placeholder)

1) oem list

List loaded extensions by module.

oem list
oem list -p   # project only
oem list -g   # global only

Behavior:

  • Uses unified plugin collection logic shared with oem plugins list
  • Shows plugins in table format
  • Shows skills / mcps as not yet realized

2) oem plugins

List

oem plugins list
oem plugins list -p
oem plugins list -g
oem plugins list --json

Columns:

  • Name, Scope, Type, Installed, Latest, Status

Install

oem plugins install <source>
oem plugins install <source> -p
oem plugins install <source> -g
oem plugins install <source> --dry-run

<source> can be:

  • npm package
  • git URL
  • local file/directory path

Uninstall

oem plugins uninstall <name>
oem plugins uninstall <name> -p
oem plugins uninstall <name> -g
oem plugins uninstall <name> --dry-run

Update

oem plugins update
oem plugins update <name>
oem plugins update -p
oem plugins update -g
oem plugins update --dry-run

Info

oem plugins info <name>
oem plugins info <name> -p
oem plugins info <name> -g
oem plugins info <name> --json

3) oem skills (placeholder)

Subcommands are registered but not implemented:

  • install (i)
  • uninstall (rm)
  • list (ls)
  • info
  • update (up)

Example:

oem skills list
# -> skills list: not yet realized

4) oem mcps (placeholder)

Subcommands are registered but not implemented:

  • install (i)
  • uninstall (rm)
  • list (ls)
  • info
  • update (up)

Example:

oem mcps list
# -> mcps list: not yet realized

Scope and Config Resolution

Scope flags used by list/plugin commands:

  • -p, --project: project scope only
  • -g, --global: global scope only
  • default: both scopes

Config path resolution order:

  1. <cwd>/opencode.json
  2. <cwd>/.opencode/opencode.json
  3. <globalConfigDir>/opencode.json

Global directories:

  • Config: ${XDG_CONFIG_HOME:-~/.config}/opencode
  • Cache: ${XDG_CACHE_HOME:-~/.cache}/opencode

Project local plugins directory:

  • <cwd>/.opencode/plugins

Development

Scripts:

npm run build   # compile TypeScript
npm run dev     # watch mode
npm run start   # run dist/index.js

License

MIT