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

@saas-al/agent

v0.1.0

Published

Outbound-only management agent for saas.al deployment boxes: dials home, verifies Ed25519-signed commands, and runs a fixed verb vocabulary (no shell).

Readme

@saas-al/agent

The outbound-only management agent that runs on a saas.al deployment box. It opens no inbound port — it dials home to the control plane, pulls pending commands, and applies them. Every command must pass all of these or it is refused (fail-closed):

  1. its Ed25519 signature verifies against the control plane's signing key,
  2. it is addressed to this box,
  3. its verb is in the fixed vocabulary — there is intentionally no shell/exec verb,
  4. its sequence is strictly newer than the last applied (no replay),
  5. its nonce has never been seen (no replay).

Security

This package contains no secrets. The control plane's public signing key and a one-time bootstrap token are supplied at runtime via the environment (below) — never bundled. The agent's own identity keypair is generated on the box. Publishing the source is safe: protection comes from the signatures and the fixed verb set, not from the code being secret.

Install & run

npm install -g @saas-al/agent
saasal-agent   # configured entirely by environment

| env | meaning | | --- | --- | | AGENT_CP_URL | control-plane base URL (e.g. https://app.saas.al) | | AGENT_ID | this box's stable id (its subdomain) | | AGENT_CP_PUBKEY | the control plane's raw Ed25519 signing key, base64 (to verify commands) | | AGENT_BOOTSTRAP | one-time token to register (optional) | | AGENT_PROJECT | compose project name for this box's stack | | AGENT_COMPOSE_FILE | path to the generated compose file (default /srv/app/compose.yml) | | AGENT_POLL_MS | dial-home interval (default 5000) |

Verb vocabulary

bootstrap, deploy, migrate, snapshot, rollback, health, start, stop, add_domain, remove_domain. Each maps to a fixed argv (docker/compose, nginx, certbot) — never a shell string — so there is no command-injection surface even though execution is real.