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

onipin

v0.4.6

Published

OniPin Terminal — interfaz tipo Claude Code con Cerebro de Oni embebido + protocolo /v1

Readme

onipin

OniPin Terminal — espejo de /app en la terminal (estilo Claude Code) + protocolo visitante /v1.

npm: https://www.npmjs.com/package/onipin
MCP: https://onnivers.store/mcp
App: https://onnivers.store/app

Instalación

npm install -g onipin

Luego:

onipin

Desarrollo local:

cd packages/onipin-cli && npm run build && node bin/onipin.mjs

Binario: onipin.

CLI OS (dueño)

Sin argumentos abre el REPL:

onipin
oni > /help
oni > /login
oni > /ai models
oni > /ai use cerebro-2.1
oni > muéstrame mis pedidos
oni > activa Bruno
oni > /agents
oni > /exit

Motor conversacional (/ai) — Cerebro de Oni embebido

No usa Ollama. El runtime se instala solo en ~/.onipin/ la primera vez.

El usuario solo ve nombres de marca:

| id | Nombre | ~MB | |----|--------|-----| | cerebro-2.1 | Cerebro de Oni 2.1 | 770 | | bruno-3.1 | Bruno AI 3.1 | 690 | | luna-1.0 | Luna Flash 1.0 | 400 |

oni > /ai models
oni > /ai use cerebro-2.1
oni > /ai test
oni > muéstrame mis pedidos
oni > /ai cloud openai --key sk-…   # opcional nube
oni > /ai off

Config: ~/.onipin/ai.json · modelos: ~/.onipin/models/ · runtime: ~/.onipin/llama/

Login

onipin login --email [email protected] --password '…'
onipin login --token ont_…
# o en el REPL: /login

Credenciales en ~/.onipin/credentials.json (baseUrl, accessToken, refreshToken, ownerToken, email).
Default baseUrl: https://onnivers.store.

Slash commands

| Grupo | Comandos | |-------|----------| | Sesión | /help /login /logout /whoami /status /exit | | Cerebro IA | /ai (status models install use cloud off test) | | Chats | /chats /chat /reply /mode | | Comercio | /agenda /booking /orders /order /catalog /product |

En el REPL, /orders, /chats y /catalog numeran filas (#) y permiten elegir con flechas / Tab / número + Enter. Luego: detalle, confirmar envío, abrir chat. También: /order 2 · /chat 2 · /product 2. One-shot sin menú: onipin /orders --no-pick. | Analytics | /metrics /roi | | MI IA | /mia /agents /agent /faq /schedule /payments | | Cuenta | /settings /creds /webhooks /install /tokens /credits | | Oni | /oni /wallet /mcp /billing /log |

One-shot: onipin /status · onipin /orders

Agentes MI IA: solo toggles de Oni / Bruno / Luna (/agent oni on). Tauron = los tres encendidos. No se inventan agentes.

Visitante (/v1)

Igual que antes, con onipin-js:

export ONIPIN_PIN=onp_tu_pin
onipin ping
onipin catalog --text
onipin chat "Hola, ¿qué servicios ofrecen?"

| Comando | Descripción | |--------|-------------| | ping | Discovery | | discover <url> | Resuelve pin | | handshake | Handshake 0.2 | | catalog | Catálogo público | | chat / messages / poll | Mensajes | | book / order | Reserva / pedido |

Opciones: -p/--pin, -k/--key (ona_…), --base-url, -c/--conversation-id, --json / --text.

Probar en local

cd packages/onipin-cli
npm install
npm run build
node bin/onipin.mjs          # REPL
node bin/onipin.mjs login --email … --password …
node bin/onipin.mjs /whoami
node bin/onipin.mjs ping --pin onp_… --text

Contra API local: onipin login --base-url http://127.0.0.1:8787 --email … --password …

MCP vs CLI

| Canal | Cuándo | |-------|--------| | CLI OS | Dueño en terminal (misma API Bearer que /app) | | CLI /v1 | Agente visitante / scripts | | MCP | Cursor, Claude, ChatGPT |