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-copilot-multi-auth

v0.2.9

Published

OpenCode plugin for multiple GitHub Copilot accounts with automatic failover

Readme

opencode-copilot-multi-auth

Multiple account support and automatic failover for GitHub Copilot in OpenCode.

Features

  • Multi-account support for GitHub Copilot.
  • Automatic failover when hitting rate limits (HTTP 429).
  • Support for github.com and GitHub Enterprise.
  • Priority-based account recovery.
  • Proactive health probing — detects rate-limited accounts before use.
  • Auto-resolves GitHub username as account label during login.

Install

Edit ~/.config/opencode/opencode.json and add the plugin to the plugin array:

{
  "$schema": "https://opencode.ai/config.json",
  "plugin": [
    "opencode-copilot-multi-auth"
  ]
}

Then restart OpenCode. The plugin will be installed automatically.

Usage

After installing the plugin, start OpenCode and use the /connect command to add your GitHub Copilot accounts. You can run /connect multiple times — each successful login adds a new account to your pool.

The plugin automatically resolves your GitHub username and uses it as the account label, so you can easily identify accounts.

OpenCode uses accounts in priority order. The first account added has the highest priority. When an account receives a 429 rate limit error, the plugin automatically switches to the next available account.

Account Management Commands

The plugin registers the /copilot-accounts command for direct account management.

  • /copilot-accounts or /copilot-accounts list — Shows all configured accounts with username, priority, and rate limit status.
  • /copilot-accounts remove <username> — Removes a specific account from the pool.
  • /copilot-accounts reorder <username1> <username2> ... — Changes the priority order of your accounts.
  • /copilot-accounts status — Displays detailed health and rate limit status for each account.

Environment Variables

  • COPILOT_MULTI_AUTH_DATA_DIR: Override the storage location for account tokens. Defaults to ~/.local/share/opencode/.

How It Works

This plugin overrides the built-in GitHub Copilot authentication provider. It maintains a pool of tokens and tracks the health of each account in memory. Before displaying account status, the plugin proactively probes each account to detect rate limits. If a request fails with a 429 status code, the plugin automatically retries using the next available account. Health status resets when you restart OpenCode. The primary account stays synced with the standard OpenCode auth.json file for compatibility.

License

MIT