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

@linnify/cli

v0.6.0

Published

CLI tool for the Linnify Registry

Readme

@linnify/cli

CLI tool that pulls boilerplate and skills from the Linnify Registry.

Installation

pnpm add -g @linnify/cli

Or run directly:

pnpm dlx @linnify/cli list

Prerequisites

  • GitHub CLI installed and authenticated (gh auth login)
  • Access to the linnify/linnify-registry private repo

Commands

Boilerplate

Pull the full monorepo boilerplate with selected app starters. Each --app flag takes a JSON object with name (target folder inside apps/) and app (starter to use).

Available starters: web, api, job.

linnify boilerplate \
  --app='{"name":"web","app":"web"}' \
  --app='{"name":"admin","app":"web"}' \
  --app='{"name":"jobs","app":"job"}'

This copies the entire boilerplate (root configs, packages/, .github/, etc.) into the current directory, and creates only the selected apps inside apps/:

| --app value | Result | |---------------|--------| | {"name":"web","app":"web"} | apps/web/ using the web starter (Next.js) | | {"name":"admin","app":"web"} | apps/admin/ using the web starter (Next.js) | | {"name":"jobs","app":"job"} | apps/jobs/ using the job starter (background jobs) | | {"name":"api","app":"api"} | apps/api/ using the api starter (Fastify) |

Skills

Pull one or more skills into .agents/skills/ with symlinks at .claude/skills/ and .cursor/skills/:

linnify skills web                              # single skill
linnify skills web,terraform,document-feature   # multiple skills (comma-separated)

Available skills:

| Name | Aliases | Description | |------|---------|-------------| | web | — | Next.js conventions, server actions, data loading, forms | | terraform | — | Terraform on GCP patterns, modules, environments | | document-feature | docs | Product-focused feature documentation | | create-prompt | prompt | LLM prompt creation patterns |

Files are placed in .agents/skills/<name>/ and relative symlinks are created:

  • .claude/skills/<name>../../.agents/skills/<name>
  • .cursor/skills/<name>../../.agents/skills/<name>

List

linnify list          # all starters and skills
linnify list:skills   # skills only

Flags

| Flag | Applies to | Description | |------|-----------|-------------| | --app <json> | boilerplate | App to include (repeatable) | | --force | boilerplate | Overwrite existing app directories | | --branch <b> | all | Pull from a specific branch (default: main) |

Development

cd cli
pnpm install
pnpm dev boilerplate --help      # run in dev mode
pnpm build                       # bundle to dist/index.js
pnpm type-check                  # typecheck only

Adding new starters or skills

Edit src/lib/config.ts — starters are listed in boilerplate.availableApps, skills are auto-registered from the skills map.

Publishing a new version

The package is published to the public npm registry as @linnify/cli.

Prerequisites: you must be logged in to npm with an account that has publish access to the @linnify org:

npm login

Steps:

  1. Bump the version in cli/package.json following semver:

    | Change type | Command | |-------------|---------| | Bug fix | npm version patch | | New feature (backwards-compatible) | npm version minor | | Breaking change | npm version major |

    Or edit the "version" field manually.

  2. Publish from the cli/ directory — the prepublishOnly script builds automatically:

    cd cli
    npm publish
  3. Commit and push the version bump:

    git add cli/package.json
    git commit -m "chore(cli): release v$(node -p "require('./cli/package.json').version")"
    git push

Note: The package is scoped (@linnify/cli) and published with "access": "public", so no extra flags are needed.