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

gearyco-agentic-web-design

v0.2.1

Published

Agent documentation for Gearyco WordPress web projects — install AGENTS.md and reference docs into any project

Readme

Gearyco Agentic Web Design

Agent documentation for Gearyco web projects. Harness-agnostic instructions that any AI coding tool can follow via AGENTS.md.

Recommended stack

Gearyco Agentic Web Design is built for WordPress with:

Install into a project

From any project directory:

npx gearyco-agentic-web-design

Or specify a target directory:

npx gearyco-agentic-web-design ./my-wordpress-site

This copies AGENTS.md and agent-docs/ into the target and scaffolds discovery/brief.md (an empty discovery brief stub). Your AI coding tool reads AGENTS.md and loads the referenced docs — no harness-specific skill folders required.

Use --force to overwrite existing files:

npx gearyco-agentic-web-design --force

Start a project

After installing, open the project in your AI coding tool and say:

start discovery

The agent runs a guided 7-phase discovery interview (project goal, business, audience, competitors, pages, brand, proof) focused purely on marketing, copy, and design inputs, grilling you for specifics and pushing back on vague answers. It fills in discovery/brief.md as it goes — the file is created at install time so discovery progress is always checkable — and that brief becomes the source of truth for copywriting, wireframing, and design. See agent-docs/discovery.md for the full playbook.

Structure

├── AGENTS.md       # Entry point — workflow, stack, doc index
├── templates/      # Files scaffolded into projects
│   └── discovery-brief.md   # Stub copied to discovery/brief.md on install
└── agent-docs/     # Reference docs loaded by workflow step
    ├── discovery.md    # Guided discovery interview (step 1)
    ├── copywriting.md
    ├── design.md
    ├── acss.md
    ├── acss/           # ACSS topic references (spacing, colors, grids, …)
    ├── css.md
    ├── etch.md
    ├── etch-css-reset.md
    └── html.md

Development

Test the CLI locally before publishing:

node bin/cli.js /tmp/test-project

Releasing

Publishing to npm is automated. A GitHub Actions workflow (.github/workflows/publish.yml) runs on every push to main and publishes only when the version in package.json is new. To cut a release:

npm version patch   # bumps version + creates a git tag (use minor/major as needed)
git push --follow-tags

The workflow checks npm, sees the new version, and publishes it. Pushes without a version bump are ignored (no error).

One-time setup: add an npm automation token as a repo secret named NPM_TOKEN (npm → Access Tokens → Generate → Automation; then GitHub repo → Settings → Secrets and variables → Actions → New repository secret).

To publish manually instead:

npm publish

Usage (manual)

You can also copy or symlink AGENTS.md and agent-docs/ into a client project by hand.