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

@ashlr/stack

v0.1.1

Published

Ashlr Stack CLI — the control plane for your entire dev stack. One command to provision, wire, and operate every third-party service in your project. 23 providers, MCP-native.

Downloads

22

Readme

@ashlr/stack

The stack CLI — one command to provision, wire, and operate every third-party service in your project. 23 providers, MCP-native, Phantom-backed.

Part of Ashlr Stack. See the monorepo at ashlrai/ashlr-stack.

What it is

stack collapses the "spin up ten services" phase of a project into a single command. Instead of tab-hopping between Supabase, Vercel, Sentry, Neon, etc. to create projects and paste secrets into .env, you run:

stack init --template nextjs-supabase-posthog-sentry

Stack does the OAuth dance per provider, creates the upstream resource, stores every secret in Phantom Secrets, writes .env + .mcp.json, and hands you a project ready for bun dev.

Secrets never live in Stack — only Phantom. .stack.toml is safe to commit; per-developer IDs live in the gitignored .stack.local.toml.

Install

One-liner (recommended):

# macOS / Linux
curl -fsSL stack.ashlr.ai/install.sh | bash

# Windows (PowerShell)
irm stack.ashlr.ai/install.ps1 | iex

Or install manually from the registry:

bun add -g @ashlr/stack ashlr-stack-mcp    # preferred
# or
npm i -g @ashlr/stack ashlr-stack-mcp

Prerequisites:

Quickstart

stack init                            # interactive template picker
stack add supabase                    # OAuth → new project → secrets → .mcp.json
stack add                             # no arg = interactive provider picker
stack doctor                          # verify every wired service is healthy
stack doctor --all                    # run across every registered project
stack list                            # show this project's stack at a glance
stack providers                       # full catalog of 23 curated providers

Bring Stack to an existing repo:

stack scan                            # detect providers already in the code
stack scan --auto                     # scans, then runs `stack add` for each
stack import                          # inhale an existing .env into Phantom
stack clone github.com/org/repo       # clone + scan someone else's project

Run your app with secrets injected by Phantom:

stack exec -- bun dev

Commands

22 commands total. A cheat sheet:

| Command | What it does | | --- | --- | | stack init [--template] | Scaffold a new stack from a template | | stack add [service] | Add a provider (OAuth + provision + write secrets) | | stack remove <service> | Tear down one service (or --all for everything) | | stack list | Show services wired into this project | | stack info <service> | Deep-dive on one service (resource, region, docs, MCP name) | | stack doctor [--all] [--fix] [--json] | Healthcheck; --fix re-runs setup, --json for CI | | stack scan [--auto] | Detect providers from package manifests, configs, .env.example | | stack import [--from <file>] | Migrate an existing .env into Phantom + .stack.toml | | stack clone <github-url> | git-clone + scan + next-steps | | stack providers | Browse the full 23-provider catalog | | stack templates | List starter templates | | stack deps | ASCII tree of this stack grouped by category | | stack env show / stack env diff | Effective env-var surface vs vault vs config | | stack env set <KEY> <VALUE> / stack env unset <KEY> | Direct secret injection | | stack exec -- <cmd> | Run a command with Phantom secrets in the environment | | stack projects list|register|remove|where | Cross-project registry | | stack ci init | Scaffold a .github/workflows/stack-ci.yml | | stack completion <bash\|zsh\|fish> | Emit a shell-completion script | | stack upgrade | Check npm for a newer @ashlr/stack release |

Full reference with flags, subcommands, and examples: stack.ashlr.ai/docs/cli.

MCP integration

stack add writes to your project's .mcp.json so Claude Code / Cursor / Windsurf can use the provider's MCP server immediately. See ashlr-stack-mcp for Stack's own MCP server (17 tools + 3 resources) and stack.ashlr.ai/docs/mcp for wiring docs.

Configuration

Stack splits config into two files:

  • .stack.tomlcommitted. Service names, secret slots, MCP wirings.
  • .stack.local.tomlgitignored. project_id, resource_id, timestamps. Unique per clone.

Teammates who clone the repo run stack doctor --fix and Stack re-authenticates each service for them.

Full schema: stack.ashlr.ai/docs/config.

Links

License

MIT. See LICENSE.