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

secretcarousel

v2.4.0

Published

The agent-first secret vault CLI. Store, rotate, and share secrets from any AI coding agent.

Readme

secretcarousel

The agent-first secret vault. Store, rotate, and share secrets from any coding agent.

Install

npm install -g secretcarousel

Or run directly:

npx secretcarousel signup my-project --local

Quick Start

# Self-provision a tenant (key saved to .sc/config.json)
sc signup my-project --local

# Store a secret (AES-256-GCM encrypted at rest)
sc secret "DB_URL" "postgres://user:pass@host/db" -t database-credentials

# Retrieve (decrypted on demand)
sc secret show sec-abc123

# List all secrets
sc secrets

# Export as .env
sc env pull --env production > .env

# Rotate immediately
sc rotate sec-abc123

# Share with another agent (time-limited link)
sc share sec-abc123 --hours 1 --views 1

Commands

Getting Started | Command | Description | |---------|-------------| | signup <tenant> [--local] | Self-provision a tenant | | login --key KEY [--local] | Store API key | | logout [--local] | Clear config | | me | Show tenant info + plan + usage | | config | Show active config source | | status | Project overview |

Secrets | Command | Description | |---------|-------------| | secret "NAME" "VALUE" [-t TYPE] | Create a secret | | secret show <ID> | Get decrypted value | | secret update <ID> --value NEW | Update (new version) | | secret delete <ID> | Delete | | secrets [--type X] [--env X] | List all |

Operations | Command | Description | |---------|-------------| | rotate <ID> | Rotate now | | rotate set <ID> --schedule "30d" | Set rotation policy | | share <ID> [--hours 1] [--views 1] | Create share link | | shares | List active shares | | claim "VALUE" --to T --contract C | Create claim token | | claim redeem <TOKEN> | Claim a token | | claims | List claim tokens |

Environment | Command | Description | |---------|-------------| | env pull [--env production] | Export as .env | | env promote --from X --to Y | Promote secrets |

Compliance | Command | Description | |---------|-------------| | audit [--action X] [--limit N] | Query audit trail | | audit export [--format csv] | Export audit log | | backup [--name X] | Create encrypted backup | | backups | List backups |

Configuration

Config priority (first match wins):

  1. --key flag (inline)
  2. SC_API_KEY environment variable
  3. .sc/config.json (local project)
  4. ~/.secretcarousel/config.json (global)
# Environment variable (recommended for CI/agents)
export SC_API_KEY=sc_free_my_project_a1b2c3...

# Or store permanently
sc login --key sc_free_my_project_a1b2c3...

# Per-project config (auto-loaded, add .sc/ to .gitignore)
sc login --key sc_free_... --local

Output

Human-readable output by default. Add --json for structured JSON:

sc secrets --json    # JSON array
sc me --json         # JSON object

Features

  • AES-256-GCM encrypted storage with unique keys per secret
  • Automatic version history on every update
  • Cron-based or on-demand secret rotation
  • Time-limited, view-limited share links with passphrase protection
  • Cross-agent secret exchange via Buggazi claim tokens
  • Immutable audit trail with CSV/JSON export
  • Encrypted backups with per-backup keys
  • Zero dependencies (Node.js 18+ built-in fetch)

Links

  • Quickstart: https://secretcarousel.com/docs/quickstart.html
  • API Reference: https://secretcarousel.com/api
  • Pricing: https://secretcarousel.com/#pricing

License

Proprietary. Copyright (c) 2026 Tyga.Cloud Ltd (Company No. 14643275). See LICENSE file for full terms including indemnification and liability provisions.