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

samstack

v0.1.3

Published

A collection of tools, skills, and agents I use across AI coding harnesses.

Readme

SamStack

SamStack is a collection of tools, skills, and agents I use across AI coding harnesses.

Right now it includes an installable web debugging toolchain plus imported design skills and commands from Impeccable for hosts like OpenCode, Claude Code, Codex CLI, Cursor, Gemini CLI, Kiro, and .agents-style setups.

Repo layout

Top-level content folders:

  • agents/ - agent definitions and prompts
  • skills/ - reusable host-installable skills
  • tools/ - tool modules and related assets

The installer now reads installable module metadata from tools/ and skill templates from skills/ directly.

That is enough for the content side of SamStack right now.

Other top-level folders like src/ and scripts/ are still useful for the installer/runtime implementation, but you do not need another content folder unless you later want something like shared templates or docs.

Install

npx samstack

You can also run it non-interactively:

npx samstack install --host opencode,claude-code,codex --module web-debug --scope project

Lifecycle management

Running npx samstack again now lets you inspect and manage what is already installed.

SamStack tracks installed items with manifests plus content checksums so it can tell you whether something is:

  • installed and up to date
  • installed but outdated
  • missing

Available commands:

npx samstack status --host opencode --module web-debug
npx samstack install --host opencode --module web-debug
npx samstack update --host opencode --module web-debug
npx samstack uninstall --host opencode --module web-debug

Browser runtime

SamStack installs its browser runtime into ~/.samstack/runtime/browser and writes host-specific skills into the correct folders for each supported tool.

You can invoke the embedded browser directly too:

npx samstack browser goto https://example.com

Supported hosts

Current installer targets:

  • OpenCode
  • Claude Code
  • Cursor
  • Codex CLI
  • Kiro
  • Gemini CLI
  • .agents-style harnesses

Module

Current installer module:

  • web-debug - Playwright site analysis, interaction, screenshots, responsive checks, and visual debugging

Imported Impeccable modules include:

  • frontend-design
  • teach-impeccable
  • audit, critique, normalize, polish, distill, clarify, optimize, harden
  • animate, colorize, bolder, quieter, delight, extract, adapt, onboard

Notes

Gemini note:

  • Gemini CLI skill support may require enabling Skills in Gemini settings first.

License note:

  • SamStack contains both MIT-licensed and Apache-2.0-licensed upstream material.
  • It includes adapted MIT-licensed browser/runtime code derived from garrytan/gstack.
  • The upstream license text is included in UPSTREAM_LICENSE to satisfy MIT notice requirements.
  • It also includes imported Impeccable skills and command content under Apache 2.0.
  • The upstream Apache 2.0 license and notice are included in UPSTREAM_IMPECCABLE_LICENSE and UPSTREAM_IMPECCABLE_NOTICE.

Optional dependency note:

  • Browser cookie import support now uses a non-native SQLite path, so normal npm install stays free of the deprecated prebuild-install warning.
  • On Windows, some browsers may need to be closed before their cookie database can be copied safely.