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

pollius-env

v0.2.2

Published

Deploy RL environments on-chain (Pollius / Sui): verify → Walrus → register → Nautilus-attested epoch.

Readme

pollius-env

Deploy reinforcement-learning environments on-chain on Sui, the way Pollius does it: validate the dataset, upload it to Walrus decentralized storage, register an Environment object, and (optionally) run one verification epoch on a sample OSS LLM that is attested by a TEE (Nautilus / AWS Nitro enclave) and recorded on-chain as an EpochAttestation.

Install

npm i -g pollius-env
# or run without installing:
npx pollius-env deploy ./my-env --epoch

Usage

pollius-env deploy <dir> [--epoch] [--name "<env name>"]
  • <dir> — an environment bundle directory (see layout below).
  • --epoch — also run one attested verification epoch and mint an on-chain EpochAttestation bound to the new environment.
  • --name "<env name>" — override the environment name from manifest.json at deploy time (handy for scripting multiple variants from one bundle). Also accepts --name=<value>.

Bundle layout

my-env/
  manifest.json   { "name", "description"?, "tags"?, "system"?, "grader"? }
  dataset.json    [ { "question": "...", "answer": "..." }, ... ]
  reward.py       (optional) grader code, uploaded to Walrus for transparency

Configuration

Read from the environment, or from a .env.local file in the current directory:

| Variable | Required | Default | | ------------------------- | -------- | -------------------------------------------- | | NEXT_PUBLIC_PKG_ID | yes | — | | NEXT_PUBLIC_SUI_NETWORK | no | testnet | | PY_VERIFIER_URL | no | http://localhost:8077 | | WALRUS_PUBLISHER | no | https://publisher.walrus-testnet.walrus.space |

On-chain registration uses your local Sui CLI keystore (sui client active-address); the tool never handles private keys.

What it produces

✓ Environment deployed on testnet
  env object  : 0xde75…              # shared Environment (anyone can read)
  artifact    : walrus://3Znq…       # manifest blob → dataset + reward.py
  suiscan     : https://suiscan.xyz/testnet/object/0xde75…
  attestation : https://suiscan.xyz/testnet/object/0x9b79…   # with --epoch

You receive an owned, tradable EnvironmentCap (authority over the env) and, with --epoch, an EpochAttestation proving the env ran a TEE-attested baseline epoch.

License

MIT