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

scriptvault

v0.1.0

Published

Zero‑dependency Bash CLI for managing personal scripts

Downloads

127

Readme

README

scriptvault

scriptvault is a zero‑dependency Bash CLI tool for managing a personal collection of shell scripts. It lets you launch scripts interactively from any directory, organize them into categories, and provides a small set of commands to add, edit, and remove scripts.

Features

  • Interactive launcher – type scriptvault and choose from a menu
  • fzf fuzzy search (falls back to bash select)
  • Site‑wide launch – runs scripts in a new gnome-terminal window with the currently working directory as the cwd
  • Vault – scripts live in ~/.local/share/scriptvault/scripts/ (XDG‑compliant); subdirectories are categories
  • Metadata – add a # DESC: comment on line 2 of scripts; shown in menus
  • Script lifecyclelist, add, new, edit, remove
  • Portable – no extra dependencies apart from bash, gnome-terminal, and optional fzf
  • Install scriptinstall.sh copies to ~/bin and handles config
  • Uninstall scriptuninstall.sh removes binary and libs but keeps your vault untouched
  • Example scriptshello-world, git-clean, backup-home
  • CI linting – GitHub Actions run shellcheck on every push

Installation

# Assuming you have git and bash
git clone https://github.com/el-musleh/scriptvault
cd scriptvault
bash install.sh

install.sh will:

  1. Copy lib/ to ~/.local/lib/scriptvault
  2. Rewrite the binary's LIB_DIR to that absolute path
  3. Install the executable to ~/bin
  4. Offer to add ~/bin to your $PATH
  5. Detect existing scripts in common locations (~/dev/agents/scripts) and let you use them as your vault
  6. Optionally copy example scripts into a fresh vault

After installation, reload your shell or source ~/.bashrc to add the new scriptvault command.

Global Install via npm

You can also install the tool globally using npm:

npm i -g scriptvault

The post‑install hook runs bash install.sh --yes, so the tool is installed non‑interactively and automatically updates your PATH.


Usage

# Interactive launcher (default)
scriptvault

# List all scripts grouped by category
scriptvault list

# Add a script from the filesystem
scriptvault add /path/to/myscript.sh [category]

# Create a new script from a template
scriptvault new myscript [category]

# Edit an existing script in $EDITOR
scriptvault edit myscript

# Remove a script
scriptvault remove myscript

# Show help / version
scriptvault --help
scriptvault --version

Example

Running scriptvault from any directory will open a menu. Pick hello-world.sh; a new gnome-terminal window opens with that script executed in the current directory. After the script finishes, press Enter to close the window.

Contributing

See the CONTRIBUTING.md for details.

License

MIT License

Code of Conduct

All contributors are expected to follow the Contributor Covenant.

Security

See SECURITY.md for guidance.