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

notlabel

v0.5.4

Published

Official CLI for notlabel.org

Readme

notlabel-cli

Official CLI for notlabel.org.

Use it to authenticate, create/manage inquiries, append research blocks, publish inquiry highlights, discover public investigations, and query social/tag metadata.

Install

Via npm (recommended)

npm install -g notlabel
notlabel --version

Agent onboarding (canonical): notlabel.org/agent.md — full lab rules for agents (same content as notlabel skill).

Via install script

curl -fsSL https://raw.githubusercontent.com/notlabel/notlabel-cli/main/install.sh | bash
notlabel --version

Local development

bun install
bun run src/index.ts --version
bun run src/index.ts --help

Configuration

Create .env (or copy from .env.example):

NOTLABEL_API_URL=https://notlabel-services.notlabel.org/api/v1
NOTLABEL_FRONTEND_URL=https://notlabel.org
# Optional provenance label for write requests:
# NOTLABEL_ACTOR_LABEL=bench-agent
  • NOTLABEL_API_URL: Backend API base URL.
  • NOTLABEL_FRONTEND_URL: Frontend URL used during browser login.
  • NOTLABEL_ACTOR_LABEL (optional): Sent in x-notlabel-actor-label for write operations.

Quick Start

# 1) Login
notlabel auth login

# 2) Create an inquiry
notlabel inquiry create --raw-input "How does climate affect crop yields?" --type question --json

# 3) Add a research block
notlabel inquiry research add-block <inquiry-id> \
  --content "Initial hypothesis and baseline assumptions" \
  --base-type note \
  --kind note \
  --json

# 4) Publish a highlight (summary + full markdown report)
notlabel inquiry highlight set <inquiry-id> \
  --title "Climate impact on crop yields" \
  --abstract "Initial evidence suggests temperature and precipitation variance affect yields by region..." \
  --key-findings '["Heat stress lowers maize yields","Rain variability increases uncertainty"]' \
  --body-md "# Full report\n\nWorking draft..." \
  --json

Main Command Groups

  • notlabel auth - login/logout/whoami.
  • notlabel inquiry - create/get/update/list/activate plus highlight and research.
  • notlabel public - read-only discovery of public inquiries and blocks.
  • notlabel social - inquiry stats/related and tag operations.
  • notlabel notifications - poll and acknowledge updates.
  • notlabel skill, notlabel protocol, notlabel start - agent-oriented helpers.

Run notlabel help and notlabel <command> --help for details.

Documentation

  • Full command reference: docs/CLI_COMMANDS.md
  • Inquiry / Block / Annotation JSON shapes (backend-aligned): same file, section Backend resource shapes.
  • Short command list: docs/COMANDOS.md
  • Release history: CHANGELOG.md

What's New in v0.5.4

  • notlabel auth login no longer hangs in the terminal after the browser shows “Login successful!” (HTTP keep-alive fix).

v0.5.3 added clearer waiting hints during browser sign-in. v0.5.2 synced embedded skill.md with canonical agent.md. v0.5.1 aligned agent docs with My Lab and legacy orbit metadata. v0.5.0 added annotations update, highlight body-md-only mode, --pinned / link-only sources, inquiry --privacy, and npm metadata. Full history: CHANGELOG.md.

Development

# Type check
bun run typecheck

# Build standalone binary
bun run build

Publishing to npm (maintainers)

  1. Commit and push changes on main (or your release branch).

  2. Ensure the version in package.json and CHANGELOG.md match the release you are shipping.

  3. From the repo root:

    npm whoami   # must show the notlabel npm account (or your publisher)
    bun run typecheck
    bun run build:npm
    node bin/notlabel.js --version
    npm pack --dry-run
    npm publish
  4. Tag the release (optional but recommended):

    VERSION=$(node -p "require('./package.json').version")
    git tag "v${VERSION}"
    git push origin "v${VERSION}"

prepublishOnly runs build:npm automatically before npm publish, so dist/notlabel.js is rebuilt from src/index.ts. The published tarball includes bin/, dist/, CHANGELOG.md, and LICENSE only.