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

create-appysentinel

v0.2.0

Published

Scaffold AppySentinel projects — per-machine, observer-only telemetry collectors

Readme

create-appysentinel

The static scaffolding CLI for AppySentinel — the per-machine, observer-only telemetry collector boilerplate.

Usage

# Bun
bunx create-appysentinel my-sentinel

# npm / pnpm / yarn
npx create-appysentinel my-sentinel

You'll be prompted for:

  1. Project name (defaults to my-sentinel)
  2. Machine identifier (defaults to os.hostname())
  3. Whether to hand off to Claude Code for the configuration interview (default: yes)

What it does

This CLI is intentionally minimal — it does mechanical scaffolding only. Spec §8.1.

  1. Copies the AppySentinel template into a new directory
  2. Replaces {{PROJECT_NAME}} and {{MACHINE_NAME}} placeholders
  3. Runs bun install (falls back to npm install)
  4. Runs git init + an initial commit
  5. Optionally launches claude -p with the bootstrap prompt that runs the configure-sentinel skill (Layer 2 — the agent-driven interview)

The agent decides which recipes to wire — collectors, storage, interface, transport, runtime supervisor — based on a structured interview with the developer. Spec §8.2.

Claude Code is a hard runtime dependency

When you choose to hand off (the default), the CLI invokes claude -p. If claude is not on PATH, the CLI prints a clear error and exits with code 2. Install Claude Code from https://claude.com/claude-code.

You can opt out of the handoff and run the interview later:

cd my-sentinel
claude -p "Run the AppySentinel configuration interview. Read .claude/skills/configure-sentinel/SKILL.md"

Two-layer install

| Layer | What it does | Where | |-------|--------------|-------| | 1 — static CLI | Copies template, substitutions, install deps, git init | this package | | 2 — agent | Interviews developer, generates recipe code, smoke-tests | .claude/skills/configure-sentinel/ (in the scaffolded project) |

Spec §8.3 has the full flow diagram.

License

MIT