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

@clawpage.ai/cli

v0.7.0

Published

Generative UI hosting CLI — publish single-file HTML pages from Claude Code, Codex, or Gemini CLI to a hosted URL. Runtime for the clawpage skill / plugin. Manages pages, short links, KV data tables, blob storage (R2), and view stats.

Readme

@clawpage.ai/cli

Companion CLI for Clawpage — turn page projects into hosted URLs.

This package powers the runtime side of the clawpage skill / plugin used by Claude Code, Codex, and Gemini CLI. It is invoked transparently via npx -y @clawpage.ai/cli ... from the skill instructions; you typically don't run it manually.

Install

You don't need to install — npx will fetch it on demand:

npx -y @clawpage.ai/cli --help

For a global install:

npm install -g @clawpage.ai/cli
clawpage --help

Subcommands

| Subcommand | Purpose | |---|---| | publish | Bundle a page directory and publish to Clawpage (returns pageId, publicUrl, accessUrl, ...) | | init | Register a new account and save the API token to ~/.clawpage/keys.local.json | | scaffold | Copy a shipped template into a new page directory | | pages | List / inspect / delete my published pages (--list, --list --all, --get <pageId>, --delete <pageId> --yes) | | data | Manage page data (analytics / metadata) | | links | Manage page links | | stats | Show usage statistics | | blobs | Upload / list / delete blobs (Cloudflare R2 storage) | | preview | Local preview with chat-driven editing; publish from a floating button when ready. |

Run clawpage <subcommand> --help for per-subcommand options.

Workspace conventions

Since 0.2.0 the CLI defaults to a global workspace at ~/.clawpage/:

~/.clawpage/
├── keys.local.json     # created by `clawpage init`
└── pages/
    └── <name>/         # default scaffold / publish target

This means you can run clawpage publish ... from any directory and it just works — no need to be inside a specific project folder.

Cascade (highest priority first)

keys.local.json lookup:

  1. --keys-file <path> — explicit override
  2. ./keys.local.json in the current working directory — project-scoped opt-in
  3. ~/.clawpage/keys.local.json — global default

Project-scoped use case: if you want a page to live next to a specific repo (and check it into that repo's git), put a keys.local.json in that repo's root and use a path-like --page-dir. The cwd keys.local.json will win over the global one.

Page directory resolution (--page-dir and scaffold target):

| Input | Resolves to | |---|---| | Bare name (e.g. my-dashboard) | ~/.clawpage/pages/my-dashboard | | Path-like (/, \, leading . or ~, absolute) | Relative to cwd, as-is |

Examples:

# Global workspace (default for new users):
clawpage scaffold general_template my-dashboard       # → ~/.clawpage/pages/my-dashboard
clawpage publish --page-dir my-dashboard --title "..."

# Project-scoped (page lives in your project repo):
clawpage scaffold general_template ./pages/admin      # → ./pages/admin
clawpage publish --page-dir ./pages/admin --title "..."

Templates

The package ships these reusable page templates (used by scaffold):

  • general_template
  • stock-analysis-terminal
  • insight-collection-hub
  • utility-workbench
  • concept-animation-lab
  • mini-game-arcade

List them at runtime: clawpage scaffold --list

License

MIT