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

qnp-crm

v0.2.1

Published

Nonprofit CRM CLI for [NanoClaw](https://github.com/qwibitai/nanoclaw). Manages contacts, donations, and DGR receipts for Australian nonprofits.

Readme

qnp-crm

Nonprofit CRM CLI for NanoClaw. Manages contacts, donations, and DGR receipts for Australian nonprofits.

WhatsApp ──→ NanoClaw ──→ Claude Code (container) ──→ qnp-crm ──→ PostgreSQL

Install

As a NanoClaw skill

# From your NanoClaw installation, run:
/add-qnp-crm

This installs PostgreSQL, the qnp-crm binary, container extensions, and agent skill docs.

Standalone

npm install -g qnp-crm

Requires PostgreSQL 16+ with pg_trgm extension.

Commands

# Contacts
qnp-crm contacts add "Jane" "Smith" --email [email protected] --type donor
qnp-crm contacts list --type donor
qnp-crm contacts search "Jane"
qnp-crm contacts show <id>

# Donations
qnp-crm donations add 500 --contact "Jane Smith" --method eft --fund general
qnp-crm donations list --from 2026-01-01
qnp-crm donations show <id>

# Receipts (DGR compliant)
qnp-crm receipts generate <donation-id>          # plan
qnp-crm receipts generate <donation-id> --confirm # execute
qnp-crm receipts batch --from 2026-01-01 --to 2026-03-31

# Reports
qnp-crm reports summary --from 2025-07-01 --to 2026-06-30
qnp-crm reports unreceipted
qnp-crm reports deadlines

# Config
qnp-crm config set org_name "My Nonprofit" --confirm
qnp-crm config show

Three-Tier Confirmation

| Tier | Commands | Behaviour | |------|----------|-----------| | READ | list, show, search, report | Execute immediately | | WRITE | add, edit, delete, import | Show plan, ask "Go ahead?" | | RECEIPT | receipts generate/batch/void | Show full plan, require explicit YES |

The Bright Line

Receipt and statement PDFs are deterministic code only. No LLM output may appear on a receipt. The --confirm flag enforces this structurally.

Environment Variables

| Variable | Purpose | Fallback | |----------|---------|----------| | QNP_DATABASE_URL | PostgreSQL connection | DATABASE_URL | | QNP_DATA_DIR | Receipt PDF storage | NANOCLAW_DATA_DIR | | QNP_PERFORMER | Audit trail identity | NANOCLAW_PERFORMER |

NanoClaw Skill Files

The nanoclaw-skill/ directory contains files that get installed into a NanoClaw instance:

nanoclaw-skill/
├── container/
│   ├── Dockerfile.qnp-crm          # Container extension layer
│   └── skills/qnp-crm/SKILL.md     # Agent instructions
└── .claude/skills/
    └── add-qnp-crm/SKILL.md        # Installation skill

Development

npm install
npm run build
npm test
npm run test:integration   # needs PostgreSQL

License

ISC