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

@brokkai/anvil

v0.25.0

Published

Anvil: Rust ACP server with first-run setup for Codex, Ollama, and OpenRouter

Readme

@brokkai/anvil

Anvil is a Rust ACP (Agent Client Protocol) server with first-run setup for Codex, Ollama, and OpenRouter. This package installs the released native anvil binary through npm — no Rust toolchain and no first-run download.

Install

npm install -g @brokkai/anvil
anvil --version

Or run it one-shot without a persistent install:

npx -y @brokkai/anvil --version
npx -y @brokkai/anvil@<version> --version

How it works

@brokkai/anvil contains a small launcher and pins one exact optional dependency per supported platform. npm installs only the package matching your operating system and CPU; each platform package contains the complete checksum-verified GitHub release bundle for that Anvil version. The launcher executes the native binary by absolute path and forwards arguments, stdio, signals, and the exit status unchanged.

| Platform | Package | | --- | --- | | macOS (Apple Silicon and Intel) | @brokkai/anvil-darwin-universal | | Linux x86-64 (glibc) | @brokkai/anvil-linux-x64 | | Linux ARM64 (glibc) | @brokkai/anvil-linux-arm64 | | Android ARM64 (Termux) | @brokkai/anvil-android-arm64 | | Windows x86-64 | @brokkai/anvil-win32-x64 |

Unsupported platforms (for example musl-based Linux such as Alpine) fail with a clear error; use another install method there. Do not install with --no-optional / --omit=optional: the platform packages are optional dependencies, and skipping them leaves the launcher with no binary to run.

Pin, upgrade, uninstall

npm install -g @brokkai/[email protected]   # pin an exact Anvil release
npm install -g @brokkai/anvil@latest   # upgrade
npm uninstall -g @brokkai/anvil        # uninstall

Next steps

Running anvil directly starts a stdio JSON-RPC server; use it through an ACP client. Configure a supported client from the installed binary:

anvil install zed
anvil install jetbrains
anvil install neovim --plugin codecompanion

Documentation: https://anvil.brokk.ai/ · Source and issues: https://github.com/BrokkAi/anvil