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

visualizar-rate-limit

v0.2.2

Published

TUI para ver los rate limits de Codex y Claude/Anthropic desde la terminal

Readme

Visualizar-Rate-Limit!

Banner de visualizar-r-l

Una CLI liviana para ver los rate limits de Codex y Claude/Anthropic sin salir de la terminal. Si eres de los que revisan su uso con tmux, weechat o cualquier terminal de la vieja escuela, este mini panel te da barras limpias y un watch para mantener el pulso del consumo.

Qué se ve

Ejemplo de uso de visualizar-r-l

  1. Codex: ventanas de 5h y semanal con colores verde/amarillo/rojo.
  2. Claude: ventanas de 5h, semanal y por modelo con colores naranja/amarillo/rojo.
  3. Reset inline: cada barra muestra cuándo se renueva la cuota.
  4. Modo watch: refresca el panel cada 45s automáticamente.

Instalación

Desde npm

npm install -g visualizar-rate-limit

Desde git

git clone [email protected]:NicBJ/visualizar-rate-limit.git
cd visualizar-rate-limit
npm install -g .

Flujo rápido

# 1. Setup (una sola vez, abre Chrome temporal)
visualizar-r-l login
visualizar-r-l auth grab          # Extrae credenciales de Codex y Claude a la vez
visualizar-r-l stop               # Cierra Chrome, ya no lo necesitas

# 2. Uso diario (sin Chrome)
visualizar-r-l                    # Codex + Claude juntos
visualizar-r-l watch              # Refresh continuo cada 45s

Configuración manual (alternativa)

Si prefieres no usar auth grab, puedes configurar cada servicio por separado:

# Codex - pegar OAuth token + session ID manualmente
visualizar-r-l auth set

# Claude - pegar sessionKey manualmente
visualizar-r-l claude auth set

# Claude - extraer solo Claude desde Chrome
visualizar-r-l claude auth grab

Todos los comandos

visualizar-r-l                     Codex (+ Claude si está configurado)
visualizar-r-l watch               Refresh continuo (Ctrl+C para salir)

visualizar-r-l auth grab           Extrae credenciales de Codex y Claude desde Chrome
visualizar-r-l auth set            Credenciales Codex (manual)
visualizar-r-l auth status         Estado auth Codex
visualizar-r-l auth clear          Borrar auth Codex

visualizar-r-l claude              Solo Claude
visualizar-r-l claude watch        Refresh continuo Claude
visualizar-r-l claude auth grab    Extrae solo credenciales de Claude desde Chrome
visualizar-r-l claude auth set     Credenciales Claude (manual)
visualizar-r-l claude auth status  Estado auth Claude
visualizar-r-l claude auth clear   Borrar auth Claude
visualizar-r-l claude raw / debug  JSON crudo / con trazas

visualizar-r-l login               Chrome en background
visualizar-r-l status              Estado de la sesión Chrome
visualizar-r-l stop                Cierra Chrome background
visualizar-r-l doctor              Verifica dependencias
visualizar-r-l raw / debug         JSON crudo Codex / con trazas
visualizar-r-l help                Ayuda

Variables de entorno

Codex

| Variable | Descripción | |---|---| | VRL_ACCESS_TOKEN | OAuth bearer token | | VRL_SESSION_ID | Session ID | | VRL_LANGUAGE | Idioma para headers (default en-US) |

Claude

| Variable | Descripción | |---|---| | VRL_CLAUDE_SESSION_KEY | Cookie sessionKey de claude.ai | | VRL_CLAUDE_ORG_ID | UUID de la organización (auto-detectado) |

Generales

| Variable | Descripción | |---|---| | CHROME_BIN | Ruta al binario de Chrome/Chromium | | VRL_PROFILE_DIR | Directorio de perfil persistente | | VRL_DEBUG_PORT | Puerto DevTools (default 9223) | | VRL_REFRESH_SECONDS | Intervalo del modo watch (default 45) |