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

@oppiai/cli

v0.2.11

Published

OPPi CLI wrapper around Pi with OPPi defaults, diagnostics, and memory helpers.

Downloads

1,366

Readme

@oppiai/cli

Thin oppi CLI wrapper for the OPPi Pi package.

Current version: 0.2.9.

Install

npm install -g @oppiai/cli
oppi doctor
oppi

Source install for local development:

git clone https://github.com/RemindZ/oppi.git
cd oppi
pnpm install
pnpm --filter @oppiai/cli build
node packages/cli/dist/main.js doctor

Development

pnpm --filter @oppiai/cli check
pnpm --filter @oppiai/cli build
pnpm --filter @oppiai/cli test

After build:

node packages/cli/dist/main.js --version
node packages/cli/dist/main.js --help
node packages/cli/dist/main.js doctor
node packages/cli/dist/main.js -p "Reply ok"
pnpm --filter @oppiai/cli start doctor

Behavior

  • resolves the Pi CLI from @mariozechner/pi-coding-agent or OPPI_PI_CLI
  • resolves the OPPi Pi package from @oppiai/pi-package, the monorepo layout, or OPPI_PI_PACKAGE
  • launches Pi as pi --no-extensions -e <oppi-pi-package> ... by default
  • uses ~/.oppi/agent for Pi/OPPi settings and sessions by default
  • honors OPPI_AGENT_DIR and --agent-dir <dir>
  • checks npm at most daily before interactive launches and shows a Pi-style OPPi update banner with oppi update and the changelog link when a newer @oppiai/cli is available (OPPI_UPDATE_CHECK=0 disables it)
  • passes ordinary Pi flags and messages through unchanged
  • provides oppi doctor [--json]
  • provides oppi update [--check] [--json]
  • provides safe Hoppi bridge commands: oppi mem status|install|setup|dashboard [--json]
  • installs optional Hoppi backend explicitly with oppi mem install; OPPi never installs @oppiai/hoppi-memory silently
  • manages Stage 3 plugins with oppi plugin list|add|install|enable|disable|remove|doctor
  • manages marketplace catalogs with oppi marketplace list|add|remove
  • loads enabled OPPi plugins as extra Pi package sources (-e <source>) after the built-in OPPi package

Use --with-pi-extensions to allow normal Pi extension discovery in addition to OPPi.

Plugins

Plugins are disabled by default when added. Enabling a plugin requires explicit trust with --yes because Pi packages can execute extension code.

oppi plugin add ./my-pi-package --local
oppi plugin doctor my-pi-package
oppi plugin enable my-pi-package --yes
oppi plugin list

Global plugin state lives in ~/.oppi/plugin-lock.json (or OPPI_HOME/plugin-lock.json). Project plugins use .oppi/plugins.json when --local is passed.

Marketplace catalogs are JSON files or URLs shaped like:

{
  "name": "local-dev",
  "plugins": [
    { "name": "demo", "source": "./plugins/demo", "description": "Demo Pi package" }
  ]
}
oppi marketplace add ./catalog.json
oppi plugin add demo --enable --yes

Claude-store compatibility is intentionally conservative for now. If a catalog entry looks Claude-specific (for example MCP server config, hooks, agents, or slash commands) but does not expose a Pi/OPPi package source, oppi plugin add <name> fails with a compatibility report and a copy/paste oppi "Port ..." handoff prompt so the agent can adapt it into a local Pi-compatible plugin instead of loading it blindly.