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

gnd-workflow

v0.3.0

Published

Installable agent and skill files for coding projects.

Downloads

420

Readme

Great Northern Diver

A small installer for a planning, execution, and critique prompt set that integrates with VS Code's GitHub Copilot agent discovery.

Install

One-shot scaffold. No global install or project dependency required.

npx gnd-workflow@latest install
# or
pnpm dlx gnd-workflow@latest install

Target another repo or pin a version:

npx gnd-workflow@latest install ../my-repo
npx [email protected] install

What It Writes

The installer writes managed files into .github/:

.github/                  ← managed by the installer
  agents/
    gnd-diver.agent.md
    gnd-navigator.agent.md
  skills/
    gnd-chart/SKILL.md
    gnd-critique/SKILL.md
.planning/                ← created by gnd-chart and gnd-navigator
  active-plan-*.md
  archive/                ← completed plans moved here by gnd-critique

Each managed file carries gnd-version and gnd-adapter in its YAML frontmatter so you can tell which package version wrote it.

  • gnd-chart is the planning skill.
  • gnd-navigator dispatches approved plan legs.
  • gnd-diver executes one leg.
  • gnd-critique reviews delivered work and feeds corrections back into the process.

All of these are plain text. Whether to track them in git is up to you:

  • Managed files — tracking lets collaborators (or yourself on another machine) see the workflow files without re-running the installer. Ignoring keeps generated files out of your repo; npx gnd-workflow@latest install re-creates them.
  • .planning/ — tracking preserves plan history alongside code. Ignoring treats plans as ephemeral working state.

Neither directory needs to be tracked or ignored for the workflow to function.

Philosophy

This is an agentic-development-first workflow. The navigator commits and pushes directly to the default branch — no feature branches, no pull requests, no staging area. Plan → execute → critique → push, in a tight loop.

That model works well for solo and hobby projects where you're the only collaborator and velocity matters more than ceremony (peninsular-reveries is the project it was built around). It's a poor fit for teams that rely on branch protection, code review gates, or CI pipelines that run before merge.

If your project needs those guardrails, you can still use the planning and critique skills on their own — just override the navigator's landing step to target a branch instead of pushing directly.

Updating

npx gnd-workflow@latest install

If a managed file already exists and differs from the packaged version, the installer refuses to overwrite it. Use --force to replace it, or --dry-run to preview what would change.

Flags:

  • --dry-run shows what would change.
  • --force replaces differing managed files without prompting. Overwrites are not backed up.
  • --version shows the installed version.
  • -C, --cwd <path> resolves the target project root from a specific working directory.

The target project root must be a real directory; symlinked and junctioned roots are rejected.

Development

npm test
node ./bin/gnd-workflow.js help
node ./bin/gnd-workflow.js install --dry-run
npm pack --dry-run

Maintainer release steps live in RELEASING.md.