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

oonacode

v0.3.130

Published

OonaCode — Windows-first multi-provider coding agent: the `oona` CLI, headless host service and local web UI. npm wrapper; the native binary is installed through the per-platform optional dependency.

Downloads

13,557

Readme

oonacode (npm wrapper)

OonaCode is a Windows-first, multi-provider coding agent: the genuine Claude Code engine (driven through the official Claude Agent SDK) in an isolated profile, sessions in SQLite, any model provider through your own gateway, and personal remote access to your own machines.

This package is the npm/pnpm/bun/yarn entry point. It contains no binaries itself; the native build is pulled in through a per-platform optional dependency and linked into bin/ by a postinstall step (the same model as esbuild / opencode).

npm  install -g oonacode
pnpm add -g oonacode        # then: pnpm approve-builds   (allow the trusted postinstall)
bun  add -g oonacode        # then: bun pm trust oonacode
yarn global add oonacode

Then:

oona --help        # CLI (mirrors Claude Code flags: -p, --model, --output-format text|json|stream-json, --resume, ...)
oona serve         # start the host service (headless) + local web UI
oona web           # open the local web UI

Platform packages

| Platform | Package | Status | | ------------- | --------------------- | ---------------------------------------- | | Windows x64 | oonacode-win32-x64 | shipped | | Windows arm64 | oonacode-win32-arm64 | later (x64 build runs under emulation) | | Linux x64 | oonacode-linux-x64 | later | | Linux arm64 | oonacode-linux-arm64 | later | | macOS x64 | oonacode-darwin-x64 | later | | macOS arm64 | oonacode-darwin-arm64 | later |

Each platform package carries oona.exe (the single-binary host + CLI), oonaclaude.exe (the pinned Claude Code engine sidecar — it must live on real disk next to oona.exe), the local web UI assets (web-ui/) and native addons (build/).

oonaclaude.exe is a byte-for-byte copy of the pinned, unmodified engine binary from the Claude Agent SDK platform package. OonaCode does not fork or patch Claude Code; the file is renamed only so it can never be confused with, or collide with, your own claude on PATH.

How oona resolves the binary

bin/oona.js looks for, in order: bin/oona.exe (linked by postinstall) → oonacode-win32-x64/oona.exe in place → the JS CLI @oonacode/cli/dist/main.js when that package is a dependency (developer installs; slower start, needs an engine reachable via OONACODE_CLAUDE_BIN). The binary runs with inherited stdio and its exit code is forwarded verbatim. If nothing is found it prints how to fix it, including the Windows one-liner:

irm https://oonacode.oonak.ai/install.ps1 | iex

Notes

  • pnpm / bun block lifecycle scripts by default. Without the postinstall the wrapper still works (it resolves the platform package in place); linking only removes one resolution step.
  • Set OONACODE_SKIP_POSTINSTALL=1 to skip the link step entirely.
  • Your own Claude subscription always runs direct to Anthropic from your PC; API-key providers go through your own OonaCode gateway. No credential is ever shared between users.
  • private: true is set on this package until the first publish (TODO: flip in package.json once the npm org is ready; the release workflow refuses to publish while it is private).
  • In the monorepo optionalDependencies use workspace:<version> so pnpm links the sibling platform package; packaging/scripts/prepare-npm.mjs rewrites it to the concrete version right before npm publish (npm does not understand the workspace protocol).