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

@clawforge/cli

v0.0.2

Published

The clawforge CLI — install Claude Code skills, agents, hooks, and MCP servers.

Readme

@clawforge/cli

The clawforge CLI — install Claude Code skills, agents, hooks, and MCP servers with one command.

Install

npm install -g @clawforge/cli
# or
npx clawforge --help

Commands

| Command | Description | |---|---| | init | Initialise a clawforge manifest in the chosen scope | | add <id> | Install an entry (e.g. skill:tdd-workflow) | | list | List installed entries from the manifest | | info <id> | Show metadata for an entry | | search <query> | Search the registry by name / tag / description | | remove <id> | Uninstall an entry, reverting files and JSON merges | | update [id] | Check for and apply updates to tracked entries | | doctor | Verify installed entries against the manifest | | browse | Print (or open) the clawforge web site URL |

Global flags

| Flag | Purpose | |---|---| | --scope <global\|project> | Install scope (default depends on entry kind) | | --registry <url> | Alternate registry CDN (default: https://cdn.clawforge.dev) | | --track | Record installs in .clawforge/manifest.json so update / remove can manage them | | --force | Auto-answer overwrite on file/JSON conflicts | | --dry-run | Print the plan; write nothing | | --yes, -y | Non-interactive; accept defaults for all prompts | | --json | Machine-readable output | | --no-cache | Bypass the 24-hour registry cache |

Example

clawforge init
clawforge add skill:tdd-workflow --track
clawforge list
clawforge remove skill:tdd-workflow

Scope defaults

  • skill, agent, hook, mcpglobal (~/.claude/)
  • cmd, presetproject (./.claude/)
  • Override with --scope global or --scope project.

Reversibility

Every install records:

  • Exact files written
  • JSON merge before snapshot for settings.json paths
  • sha256 of the content artefact
  • Source commit of the registry

remove uses these to cleanly restore state.

Programmatic API

Every command is available as a function via @clawforge/cli:

import { addCommand, HttpRegistryClient } from "@clawforge/cli";

await addCommand({
  id: "skill:tdd-workflow",
  client: new HttpRegistryClient({ cdnBase: "https://cdn.clawforge.dev" }),
  track: true,
  force: false,
  dryRun: false,
  onPrompt: async () => "overwrite",
  downloadDir: "/tmp/clawforge-dl",
});

Deferred for v2

  • Preset (bundle) installer recursive fetch — design stubbed; currently errors if you try to add a preset:.
  • MeiliSearch-backed fuzzy search (MVP uses local substring match over the cached index).
  • Interactive --yes-overrideable prompt UX polish.

License: MIT.