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-codex-rate-limit-reset

v0.2.0

Published

View and redeem Codex rate-limit reset credits from OpenCode.

Readme

OpenCode Codex Rate-Limit Reset

An OpenCode plugin for viewing and redeeming rate-limit reset credits granted to a ChatGPT Codex account.

It reads the existing Codex login from ~/.codex/auth.json (or CODEX_HOME/auth.json) and never writes or exposes its token.

Install

Add the package to ~/.config/opencode/opencode.json or a project opencode.json:

{
  "$schema": "https://opencode.ai/config.json",
  "plugin": ["opencode-codex-rate-limit-reset"]
}

For local development, use the package path instead:

{
  "$schema": "https://opencode.ai/config.json",
  "plugin": ["file:///absolute/path/to/opencode-codex-rate-limit-reset/src/index.ts"]
}

Restart OpenCode after changing its configuration.

Usage

The plugin registers /rate-limit-reset:

/rate-limit-reset
/rate-limit-reset list
/rate-limit-reset redeem
/rate-limit-reset redeem credit-123

redeem consumes a credit. With no credit ID, Codex chooses an available credit.

The rate_limit_reset tool is also available to the active agent.

Authentication and configuration

The plugin requires a ChatGPT Codex login; an OpenAI API key does not have reset credits. Install the Codex CLI before attempting to log in:

# macOS or Linux
curl -fsSL https://chatgpt.com/codex/install.sh | sh

# Start a new terminal, then verify the executable is on PATH.
command -v codex

If command -v codex prints nothing, add the directory reported by the installer to your shell PATH, open a new terminal, and repeat the check. Alternatively, install through a package manager:

npm install -g @openai/codex
# or, on macOS:
brew install --cask codex

Then authenticate:

codex login

If your installed Codex version opens its interactive setup instead, run codex and select Sign in with ChatGPT.

The plugin deliberately reads only the file-backed Codex cache. If Codex uses the OS keychain, add this to ~/.codex/config.toml, then run codex login again:

cli_auth_credentials_store = "file"

If Codex reports 401, run any normal Codex command to refresh its session, then retry. The plugin does not refresh tokens itself.

Optional environment variables:

  • CODEX_HOME: directory containing auth.json; defaults to ~/.codex.
  • CODEX_AUTH_JSON: serialized Codex auth.json, useful for trusted CI environments.
  • CODEX_BACKEND_URL: Codex backend root; defaults to https://chatgpt.com/backend-api.