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

@clef-sh/cli

v0.1.9

Published

CLI for Clef — git-native secrets management

Readme

@clef-sh/cli

CLI for Clef — git-native secrets management built on Mozilla SOPS. Adds structure, visibility, and guardrails to encrypted secrets without servers, databases, or vendor lock-in.

Install

npm install -g @clef-sh/cli

Prerequisites

  • SOPS v3.8+
  • age (or another SOPS-supported backend)
  • Git
  • Node.js 18+

Run clef doctor to verify your environment.

Quick start

# Initialise a new Clef repo
clef init --namespaces database,payments,auth --non-interactive

# Set and retrieve secrets
clef set database/staging DB_PASSWORD
clef get database/staging DB_HOST

# Compare environments
clef diff database dev staging

# Validate the repo
clef lint

# Run a command with injected secrets
clef exec payments/production -- ./deploy.sh

# Launch the local web UI
clef ui

Commands

| Command | Description | | -------------------- | ------------------------------------------------- | | clef doctor | Check dependencies and configuration | | clef init | Initialise a new Clef repo | | clef update | Scaffold missing matrix cells | | clef get | Retrieve a single decrypted value | | clef set | Set a secret value | | clef compare | Compare a stored secret with a value | | clef delete | Remove a key from an encrypted file | | clef diff | Compare secrets between two environments | | clef lint | Full repo health check | | clef rotate | Re-encrypt with a new recipient key | | clef scan | Scan for plaintext secrets in the repo | | clef import | Import secrets from .env, JSON, or YAML | | clef export | Print secrets as shell export statements | | clef recipients | Manage age recipients and access requests | | clef hooks install | Install the pre-commit hook | | clef exec | Run a command with injected secrets | | clef service | Manage service identities (create, list, delete) | | clef pack | Pack an encrypted artifact for a service identity | | clef revoke | Revoke a packed artifact | | clef drift | Detect key-set drift across environments | | clef report | Generate a JSON posture report | | clef install | Install a broker template from the registry | | clef search | Search the broker registry | | clef ui | Start the local web UI | | clef merge-driver | Git merge driver for encrypted files |

Global options

clef --version                          # Print version
clef --help                             # Print help
clef <cmd> --help                       # Help for a specific command
clef --dir <path> <cmd> ...             # Run against a different local directory
clef --plain <cmd> ...                  # Plain output without emoji/color

Documentation

Full docs at docs.clef.sh.

License

MIT