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

gsd-init

v1.0.18

Published

Set up GSD observer/worker tmux system in a project

Readme

gsd-init

Set up the GSD observer/worker tmux system in your project.

Install

npm install -g gsd-init

Commands

gsd-init init <project-name>

Creates a project folder and installs all GSD files inside it:

gsd-init init my-project

Installs into my-project/.gsd/ and registers the stop hook in my-project/.claude/settings.json.

To run inside an existing project directory:

cd my-project
npx gsd-init

gsd-init start

Starts the observer and worker tmux sessions for the current project. Run from inside the project directory:

cd my-project
gsd-init start
  • Creates sessions named gsd-observer-<project> and gsd-worker-<project>
  • Opens Terminal windows attached to each session
  • Observer session includes a listener daemon that auto-responds to GSD phase events

gsd-init teardown

Kills all GSD tmux sessions for the current project:

cd my-project
gsd-init teardown

How it works

my-project/
├── .gsd/
│   ├── agents/gsd-observer.md       # Observer Claude agent prompt
│   ├── hooks/gsd-stop-hook.sh       # Fires after each Claude response in Worker
│   ├── scripts/
│   │   ├── start.sh                 # Start observer + worker (used by gsd-init start)
│   │   ├── start-observer.sh        # Start observer tmux session
│   │   ├── start-worker.sh          # Start worker tmux session
│   │   ├── listen.sh                # Daemon: watches for events, wakes Observer
│   │   ├── notify-worker.sh         # Injects Observer response into Worker pane
│   │   ├── wake-observer.sh         # Sends event task to Observer Claude
│   │   ├── teardown.sh              # Kill all sessions (used by gsd-init teardown)
│   │   └── verify.sh                # Verify setup is working
│   └── schema/
│       ├── event.json               # Event file schema
│       └── response.json            # Response file schema
└── .claude/
    └── settings.json                # Stop hook registered here

Observer session runs two panes:

  • Pane 0: Observer Claude — reviews GSD phase outputs and responds
  • Pane 1: Listener daemon — polls for new events and wakes Claude automatically

Worker session runs Claude with GSD_OBSERVER_ENABLED=1, which activates the stop hook after each response.

Requirements

  • Node.js >= 16
  • tmux
  • jq
  • Claude Code CLI (claude)
  • GSD (superpowers plugin) installed in Claude Code