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

@sahiljassal/opencode-anthropic-auth

v2.4.1

Published

> [!WARNING] > This plugin comes with no guarantees. You might be banned for breaking the TOS, you might not be. I don't work at Anthropic, nor am I an attorney. > > Use your best judgment and don't abuse your subscription.

Readme

opencode-anthropic-auth

[!WARNING] This plugin comes with no guarantees. You might be banned for breaking the TOS, you might not be. I don't work at Anthropic, nor am I an attorney.

Use your best judgment and don't abuse your subscription.

Fork of ex-machina-co/opencode-anthropic-auth, with caching improvements inspired by cortexkit/anthropic-auth.

An OpenCode plugin that provides Anthropic OAuth authentication, enabling Claude Pro/Max users to use their subscription directly with OpenCode.

Install

Add to your OpenCode config (~/.config/opencode/opencode.json):

{
  "plugin": ["@sahiljassal/opencode-anthropic-auth"]
}

Authentication Methods

  • Claude Pro/Max — OAuth flow via claude.ai. Uses your existing subscription at no additional API cost.
  • Create an API Key — OAuth flow via console.anthropic.com that creates an API key on your behalf.
  • Manually enter API Key — Standard API key entry.

Prompt Caching

This fork applies hybrid 1-hour ephemeral prompt caching on every request, placing up to 4 breakpoints strategically:

| Breakpoint | Behaviour | |---|---| | System anchor | Last system block after the identity block (skipped when bridge occupies the slot) | | messages[0] | Magic-context split: anchors block[0] + block[1] when stable prefix and volatile delta are merged; otherwise anchors the last cacheable block | | messages[1] / bridge | Last cacheable block of messages[1]; replaced by a bridge anchor when the block count between two user anchors (counting ALL block types across every role) exceeds Anthropic's 20-block lookback window | | Rolling latest | Most recent user message beyond index 1, keeping cache hot across long sessions |

Additional behaviours:

  • System tail coalescing — plugin-added system blocks beyond the primary prompt are merged into one block before placing the system anchor, preventing cache busts when block layout changes between requests
  • Trailing assistant strip — assistant messages at the tail of the request are removed before forwarding (OAuth rejects assistant prefill)
  • Thinking block guardthinking and redacted_thinking blocks are excluded from cache anchor placement; messages containing only thinking blocks receive no cache_control (avoids Anthropic 400)
  • SSE retryable errors — transient server errors (api_error, overloaded_error, server_error) emitted inside HTTP 200 streams are detected and thrown as connection-reset errors so OpenCode auto-retries
  • Buffered stream rewriting — tool name stripping buffers partial "name" tokens across chunk boundaries to avoid corruption

Configuration

| Variable | Description | | -------------------- | ---------------------------------------------------------------------------------------- | | ANTHROPIC_BASE_URL | Override API endpoint URL (e.g. for proxying). Must be a valid HTTP(S) URL. | | ANTHROPIC_INSECURE | Set to 1 or true to skip TLS verification. Only effective with ANTHROPIC_BASE_URL. |

License

MIT