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

@marscore-archi/opencode-provider

v2.0.1

Published

OpenCode 插件:启动时自动同步 Archi 模型网关 provider 配置

Readme

@marscore-archi/opencode-provider

OpenCode 插件:启动时自动从 Archi 模型网关同步最新的 provider 配置,无需手动维护 opencode.json

安装

1. 安装插件

cd .opencode && npm install @marscore-archi/opencode-provider

2. 声明插件

opencode.json 中添加:

{
  "plugin": ["@marscore-archi/opencode-provider"]
}

3. 配置环境变量

将以下内容添加到 ~/.zshrc~/.bashrc

export ARCHI_API_KEY_OPENAI="你的 OpenAI 协议 Key"
export ARCHI_API_KEY_ANTHROPIC="你的 Anthropic 协议 Key"

然后执行 source ~/.zshrc 使其生效。API Key 请从 Archi 侧边栏 - API 密钥 申请。

4. 启动 OpenCode

opencode

首次启动后,Archi provider(archi-anthropic / archi-openai)将自动出现在模型切换菜单中。

工作原理

每次启动
  │
  ├─ 从 https://archi.marscore.net/guide/opencode-model-provider.json 拉取最新配置
  ├─ 自动解析 {env:XXX} 环境变量占位符
  ├─ 合并到用户配置(远程覆盖同名 provider)
  ├─ 本地缓存兜底(网络不可达时使用)
  └─ 尊重 disabled_providers 设置

自定义配置

如果你有自己的 provider 配置,它们会被保留。与 Archi provider 同名则以远程配置为准。

如需禁用某个 Archi provider:

{
  "disabled_providers": ["archi-anthropic"]
}

许可证

UNLICENSED - 内部使用