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

@0xhoneyjar/freeside-cli

v0.2.0

Published

Freeside operations CLI for agents and humans.

Readme

@0xhoneyjar/freeside-cli

Freeside operations CLI for agents and humans.

bun add -g @0xhoneyjar/freeside-cli
# or
npm i -g @0xhoneyjar/freeside-cli

freeside --help

The doctrine

Zones = typed-port contracts Freeside exposes as hexagonal seams. Teams deploying on Freeside pick the zones they need and honor the port + schema. Substrate (Vercel, Railway, AWS, Cloudflare) lives in the live adapter, not the zone itself. Sovereign infrastructure is an option, not a requirement.

This CLI is the deterministic substrate. construct-freeside is the LLM lens that knows when/why to invoke CLI verbs. Both run in CI, in scripts, in 3am incidents — and from inside an agent session.

Built on incur — every command is agent-discoverable via --llms, --mcp, and auto-generated skill files.

Zones

freeside zones list

| zone | status | home | notes | |---|---|---|---| | discord-deploy | aspirational | NEW repo needed | operator-named priority for next cycle | | quests | extracted | freeside-quests | @0xhoneyjar/quests-engine on npm · reverse-extraction test pending | | identity | active | freeside-auth | three-layer spine (credential / identity / session) | | score | active | freeside-score | tiering exemplar · operator-named | | storage | active | freeside-storage | R2-mirroring · variant pipeline | | sonar | active | freeside-sonar | onchain indexer · 6 chains · HyperIndex V3 | | worlds | draft | freeside-worlds | the registry zone itself | | characters | active | freeside-characters | character voice + persona | | mediums | active | freeside-mediums | medium registry + capability routing |

freeside zones show identity         # inspect one zone's port + schema + gaps
freeside doctor check                # surface gaps as findings
freeside doctor check --probe live   # probe github + npm + http for real drift

Worlds

freeside worlds list
freeside worlds show purupuru

Worlds declare which zones they claim to honor. worlds show cross-references the zones manifest and surfaces drift.

Three-layer identity verbs

freeside credential add <account> --token <jwt> --backend <auto|memory|file|os>
freeside credential list
freeside credential test <account>

freeside identity show <user_id>     # scaffold · v0.3 wires spine
freeside identity link <credential>
freeside identity whoami

freeside session validate <jwt>      # scaffold · v0.3 wires JWKS verification
freeside session verify-jwks <issuer>

Per freeside-as-identity-spine doctrine: credential (adapters · wallet/passkey/oauth/otp) · identity (canonical THJ user_id + JWT issuance) · session (per-world JWT verification via JWKS). Three orthogonal layers · verb expressivity teaches the boundary.

Keychain backends (FR-KEY-5 graceful degradation):

  • memory — in-process · TTL · process-singleton
  • file~/.freeside/credentials.enc · AES-256-GCM · FREESIDE_CRED_KEY env required
  • os — stub in v0.2 · v0.3 wires @0xhoneyjar/freeside-auth-adapters/keychain once companion publishes

Outputs

Every command emits structured envelopes. Default is TOON (token-efficient). Override:

freeside zones list --json          # JSON.parse-safe
freeside zones list --format yaml
freeside zones list --format md     # GitHub-flavored markdown

CTAs guide agents on next commands. Error envelopes include code, retryable, and cta.commands for self-correction.

Agent discovery

freeside --llms              # markdown skill manifest
freeside --llms --format json # JSON schema manifest
freeside --mcp               # start as MCP stdio server
freeside mcp add             # register CLI as MCP server with Claude Code / Cursor / Amp
freeside skills add          # install agent skill files

All 14 tools expose typed outputSchema (including CTAs as structured fields) so agents reading via MCP see typed next-action hints, not just opaque text.

Configuration

Zones + worlds ship in config/zones.yaml + config/worlds.yaml (operator-editable · Zod-validated at load). Override location via LOA_FREESIDE_CONFIG_DIR env. See CONTRIBUTING.md for how to add a zone.

Status

v0.2.0 — foundation. Read-side verbs functional · three-layer identity scaffold (credential layer wired · identity/session pending v0.3 spine binding) · doctor --probe live runs real github/npm/http probes with B5 graceful degradation in CI/headless.

Write-side verbs (deploy, install) ship in v0.3+ as zone live-adapter packages publish.

License

MIT · © 2026 0xHoneyJar