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

@kantosaurus/origin

v0.9.13

Published

Origin — a fast, terminal-native AI coding agent. Install globally and run `origin` to launch the TUI.

Downloads

2,211

Readme

@kantosaurus/origin

Origin — a fast, terminal-native AI coding agent.

Installing this package puts an origin command on your PATH. Run it with no arguments and the TUI comes up.

npm install -g @kantosaurus/origin
origin

The npm package is scoped (@kantosaurus/origin) because the unscoped name was unavailable. The installed command is always origin.

What gets installed

@kantosaurus/origin ships no JavaScript runtime of its own — it is a thin launcher around a single prebuilt native binary. On install, npm pulls exactly one small platform package for your OS/CPU (via optionalDependencies):

| Platform | Package | | --------------- | ------------------------------------ | | Linux x64 | @kantosaurus/origin-linux-x64 | | Linux arm64 | @kantosaurus/origin-linux-arm64 | | macOS x64 | @kantosaurus/origin-darwin-x64 | | macOS arm64 | @kantosaurus/origin-darwin-arm64 | | Windows x64 | @kantosaurus/origin-win32-x64 | | Windows arm64 | @kantosaurus/origin-win32-arm64 |

If that package is unavailable (e.g. you installed with --omit=optional), a postinstall step downloads the matching binary from the GitHub release instead, and as a last resort the binary is fetched on first run.

Usage

origin                 # launch the interactive TUI
origin --help          # list subcommands
origin run "…"         # one-shot headless run

Updates

origin auto-updates by default via its built-in self-updater. On launch it checks the npm registry (at most once per day, cached) and, when a newer version is published, downloads the matching release binary, verifies its SHA-256 against the release SHA256SUMS (no cosign CLI required), swaps itself in place, and relaunches your command on the new version. The brief download happens only the first time a new release is seen.

  • It only updates npm-installed binaries (those under node_modules); a build from source or a cargo install is never touched. It rewrites only the installed copy in node_modules, so a project's committed dependency range and a later npm ci are unaffected.
  • Prefer npm to own updates? Set ORIGINX_ALLOW_SELF_UPDATE=0 to fall back to a non-blocking background npm install that applies on the next run, announced once (origin: updated to vX.Y.Z).
  • Update on demand anytime: npm update -g @kantosaurus/origin (or npm update @kantosaurus/origin in a project).

Disable all auto-update with ORIGIN_NO_UPDATE=1 (ORIGINX_NO_UPDATE=1 too).

Environment knobs

| Variable | Effect | | ----------------------------- | ---------------------------------------------------------------------------- | | ORIGINX_ALLOW_SELF_UPDATE=0 | Opt OUT of the binary's self-updater (ON by default); fall back to the npm-launcher channel. | | ORIGINX_NO_UPDATE=1 | Disable the npm-launcher background update. (ORIGIN_NO_UPDATE is honored too.) | | ORIGIN_NO_UPDATE=1 | Honored by both the launcher and the binary; disables all auto-update. | | ORIGINX_SKIP_DOWNLOAD=1 | Skip the postinstall binary download (air-gapped / source builds). |

Auto-update state (last-check timestamp, lock, log) lives under ${XDG_CACHE_HOME:-~/.cache}/originx/ (%LOCALAPPDATA%\originx\ on Windows).

Other install methods

cargo install, Homebrew, AUR, winget and cargo binstall are also supported — see the project README.

License

Apache-2.0