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

@openagentsinc/pylon

v0.1.4

Published

Bootstrap the standalone OpenAgents Pylon release asset and run first-run smoke checks.

Readme

@openagentsinc/pylon

Bootstrap the latest tagged standalone Pylon release asset from GitHub Releases, fall back to a deterministic source build when no matching asset exists for the local platform, stream first-run status updates in the terminal, and open the Pylon terminal UI without Cargo when prebuilt binaries are available.

Usage

npx @openagentsinc/pylon
bunx @openagentsinc/pylon
npm install -g @openagentsinc/pylon && pylon
bun install -g @openagentsinc/pylon && pylon
npx @openagentsinc/pylon --version 0.0.1-rc10
npx @openagentsinc/pylon --no-launch
npx @openagentsinc/pylon --download-curated-cache --model gemma-4-e2b --diagnostic-repeats 2
npx @openagentsinc/pylon --verbose

The launcher:

  • supports direct npx / bunx execution plus global npm install -g / bun install -g installs with the same pylon command
  • checks GitHub for the latest tagged pylon-v... release on each default run, or resolves a specific tagged Pylon version when --version is provided
  • resolves the correct pylon-v<version>-<os>-<arch>.tar.gz asset for the current machine
  • falls back to the exact tagged source checkout and builds pylon plus pylon-tui locally when no matching release asset exists for the machine
  • prompts before installing the Rust toolchain via rustup if a source build is needed and cargo / rustc are missing
  • emits best-effort anonymous installer telemetry to openagents.com so the public stats page can show install starts, completions, source-build fallbacks, Rust prompts, and smoke-test outcomes
  • downloads the archive and published SHA-256 checksum
  • verifies the checksum before extracting
  • caches the unpacked binaries under ~/.openagents/pylon/bootstrap/
  • never links or copies those cached standalone binaries into a shared global bin directory, so the package-managed pylon launcher remains the command on PATH
  • prints status lines such as release resolution, runtime checks, and local model scanning while it runs
  • ends first run with an explicit verdict such as fully online, runtime ready, or installed but runtime missing, plus exact next-step guidance
  • runs pylon --help, init, status --json, and inventory --json
  • runs pylon gemma diagnose <model> --json
  • only runs pylon gemma download <model> when --download-curated-cache is set, because the optional GGUF cache does not satisfy the sellable runtime by itself
  • falls back to curl for release metadata and asset downloads when the Node fetch path fails in constrained network contexts
  • opens pylon-tui by default after the smoke path unless --no-launch is set
  • does not try to install or register a local runtime automatically; the bootstrap stays honest about the separate Ollama-compatible runtime prerequisite instead of mutating the host behind the user's back

Set OPENAGENTS_DISABLE_TELEMETRY=1 to disable installer telemetry, or OPENAGENTS_TELEMETRY_URL=http://127.0.0.1:8000/api/telemetry/events to point the launcher at a non-production telemetry endpoint.

Publish

Publish directly from this package directory:

cd packages/pylon-bootstrap
npm pack --dry-run
npm publish