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

@grittygrease/safe-encryption-skill

v1.0.0

Published

AI agent skill for encrypting and decrypting files using SAFE - a modern encryption CLI with post-quantum support

Readme

safe-encryption

skills.sh npm version GitHub stars License

A skill for encrypting and decrypting files using SAFE.

Modern encryption alternative to GPG/PGP with post-quantum support, composable authentication paths, and random-access editing. Includes agent-to-agent encrypted communication capabilities.

What This Skill Does

When installed, your AI coding assistant will know how to:

  • Encrypt/decrypt files with passwords or public keys
  • Generate encryption keypairs (x25519, p-256, ml-kem-768)
  • Set up two-factor encryption (password + key)
  • Configure multi-party encryption (separation of duties)
  • Use post-quantum encryption for future-proof security
  • Edit encrypted files without full re-encryption
  • Manage recipients (add/remove/rotate keys)
  • Exchange encrypted messages with other agents
  • Auto-generate AGENTS.md for projects

Installation

Using the Skills CLI (recommended)

npx skills add grittygrease/safe-encryption-skill

This works with Cursor, Claude Desktop, Windsurf, and other AI coding assistants that support the skills ecosystem.

Using npm

npm install @grittygrease/safe-encryption-skill

Then add the skill to your AI assistant's configuration.

Manual Installation

Global (all projects)

mkdir -p ~/.claude/skills/safe-encryption
curl -o ~/.claude/skills/safe-encryption/SKILL.md \
  https://raw.githubusercontent.com/grittygrease/safe-encryption-skill/main/SKILL.md

Or clone the repo:

git clone https://github.com/grittygrease/safe-encryption-skill.git /tmp/skill
cp -r /tmp/skill ~/.claude/skills/safe-encryption
rm -rf /tmp/skill

Project-specific

mkdir -p .claude/skills/safe-encryption
curl -o .claude/skills/safe-encryption/SKILL.md \
  https://raw.githubusercontent.com/grittygrease/safe-encryption-skill/main/SKILL.md

Also Required: SAFE CLI or Browser

This skill teaches your assistant how to use the safe command. If you can install the CLI:

git clone https://github.com/grittygrease/safe.git /tmp/safe
cd /tmp/safe/go && go build -o safe ./cmd/safe
sudo mv safe /usr/local/bin/
rm -rf /tmp/safe

Verify: safe --help

See grittygrease/safe for Rust, TypeScript, and Python builds.

No CLI? No problem. If you can't install the CLI (restricted environment, no build tools, sandboxed IDE), the skill will automatically fall back to the web interface at thesafe.dev. All operations work in the browser — no installation required.

Usage

Once installed, just ask naturally:

  • "Encrypt this file with a password"
  • "Generate an encryption keypair"
  • "Set up two-factor encryption for secrets.txt"
  • "Encrypt this for Alice and Bob"
  • "Decrypt credentials.safe"

Agent-to-Agent Communication

Agents can exchange encrypted messages across any text channel:

  • "Set up my agent identity"
  • "Create an AGENTS.md for this project"
  • "Send an encrypted message to this public key"
  • "Check if this encrypted message is for me"
  • "Post an encrypted message to pastebin"

The skill includes conventions for reply-to keys, Key ID matching, and multi-identity management.

Also Available On

This skill is distributed on multiple platforms for maximum discoverability:

Want to see this skill on more platforms? Star the repo on GitHub!

License

Apache-2.0