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

scbe-polly-pad-cli

v0.1.0

Published

Polly — governed terminal workpad for AI operators. Persistent workspace, task state, LLM routing, tool recipes, and audit receipts.

Readme

Polly Pad CLI

Polly is a governed terminal workpad for AI operators. It gives a shell session persistent task state, LLM routing, recipe prompts, run receipts, handoff packets, snapshots, and a hash-chained audit trail.

Install

npm install -g scbe-polly-pad-cli

Quick Start

polly init my-project
polly task add "first task"
polly ask "what should I start with?"
polly run plan --dry-run "ship a website"
polly audit verify
polly cross pack --text "def add(x, y): return x + y" --lang python
polly cross op add --json
polly shell

Workspace

Polly stores state under .polly/ in the current project:

  • .polly/pad.json — pad metadata, tasks, and attached repo
  • .polly/runs/ — saved model or recipe runs
  • .polly/snapshots/ — exported pad snapshots
  • .polly/audit.jsonl — append-only audit receipts

Audit Trail

Every state-changing command appends a receipt to .polly/audit.jsonl. Receipts are canonical JSON records with a SHA-256 event hash and previous event hash.

polly audit list
polly audit verify
polly audit export --json

If a receipt is edited after it is written, polly audit verify exits non-zero and reports the first broken receipt.

Cross-Language Packets

Polly can decompose text or source files into lossless UTF-8 hex/binary packets with SHA-256 receipts and lightweight semantic route evidence.

polly cross pack --file src/index.ts
polly cross pack --text "const result = x + y;" --lang javascript
polly cross unpack --hex 636f6e737420726573756c74203d2078202b20793b
polly cross op add --json
polly cross exec add --x 5 --y 3 --lang javascript --json
polly cross bench pathfinding --json
polly cross patch --file src/index.py --text "result = x + y" --json
polly cross bundle --files src/index.py,src/index.js --out bundle.json

cross pack is lossless at the byte layer. cross op is intentionally bounded to known operation templates; it is not advertised as arbitrary AST translation.

cross patch creates a reversible line patch packet with before/after SHA-256 hashes and can apply the patch only after verifying the reconstructed target. cross bundle packages multiple source files as per-file hex packets plus an aggregate deployment hash.

cross exec runs bounded operation templates through available runtimes and compares outputs. cross bench pathfinding scores Dijkstra, A*, and a semantic/geometric compass A* over the same multi-field map so route changes can be evaluated by behavior.

Model Routing

Polly tries model providers in this order:

  1. Ollama at localhost:11434
  2. ANTHROPIC_API_KEY
  3. OPENAI_API_KEY
  4. Template fallback with no model required

The fallback keeps Polly usable even when no external model is configured.