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

@thehumanpatternlab/skulk

v0.1.1

Published

CLI for syncing Lab Notes with The Human Pattern Lab API

Readme

Skulk CLI

AI-Forward CLI Carmel Judgment

A modern, automation-safe CLI for The Human Pattern Lab.

Skulk is a command-line tool for syncing and managing Lab Notes — built to work just as well for humans at the keyboard as it does for automation, CI, and agent-driven workflows.


What Skulk Connects To

Skulk is the CLI for The Human Pattern Lab API.

By default it targets a Human Pattern Lab API instance. You can override the API endpoint with --base-url to use staging or a self-hosted deployment of the same API.

Note: --base-url is intended for alternate deployments of the Human Pattern Lab API, not arbitrary third-party APIs.


Configuration

Environment variables

  • SKULK_TOKEN — API token used to authenticate requests.
  • SKULK_BASE_URL — Base URL for a Human Pattern Lab API instance (overridden by --base-url).

Example:

export SKULK_TOKEN="..."
export SKULK_BASE_URL="https://thehumanpatternlab.com/api"
skulk notes sync --dir ./src/labnotes/en

Why Skulk Exists

Command-line tools no longer live in a human-only world.

They’re run by:

  • developers exploring and iterating
  • scripts and CI pipelines
  • automation layers and AI-assisted workflows

Skulk was designed from the start to behave predictably and honestly in all of those contexts — without sacrificing human usability.


🤖 AI-Forward (for Humans)

Skulk follows AI-forward engineering principles — not for AIs, but for the people who build tools that increasingly interact with them.

Dual Output Modes

By default, Skulk is human-readable:

skulk notes sync

When --json is enabled:

skulk --json notes sync

Skulk switches to machine-readable output:

  • stdout contains only valid JSON
  • no banners, emojis, or progress chatter
  • errors go to stderr
  • exit codes are deterministic

This makes Skulk safe to use in:

  • scripts
  • CI pipelines
  • automation
  • AI-assisted workflows

JSON Output Contract

Structured output is treated as a contract, not a courtesy.

The repository includes a built-in verification:

npm run json:check

This command runs Skulk in --json mode and fails immediately if any non-JSON output appears on stdout.


Design & Philosophy

Curious why Skulk works this way?
DESIGN.md


Philosophy

Automation shouldn’t require guessing what a tool meant to say.

Skulk is boring in the best way: predictable, explicit, and dependable.