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

ai-tao

v0.1.0

Published

Setup and maintain CLAUDE.md files for your projects

Readme

claudefy

Setup and maintain CLAUDE.md files for your projects with opinionated best practices.

Installation

# Using bunx (no installation required)
bunx claudefy

# Using npx
npx claudefy

# Or install globally
bun add -g claudefy
npm install -g claudefy

Usage

# Create or update CLAUDE.md in the current directory
bunx claudefy

# Add framework-specific guidance (flavors)
bunx claudefy nextjs

# Create CLAUDE.local.md (gitignored) for personal preferences
bunx claudefy --local
bunx claudefy -l

# Combine options
bunx claudefy nextjs --local

Available Flavors

| Flavor | Description | |--------|-------------| | nextjs | Next.js App Router conventions, Server Components, Server Actions, routing patterns |

More flavors coming soon! Contributions welcome.

What it does

  1. Fetches the latest CLAUDE.md template from the claudefy repository
  2. Creates or updates your project's CLAUDE.md (or CLAUDE.local.md)
  3. Adds framework-specific guidance based on selected flavors
  4. Preserves any custom content you've added outside the managed section
  5. Adds to .gitignore (local mode only)

Managed Section

The template content is wrapped in markers:

<!-- CLAUDEFY:START -->
... template content from GitHub ...
<!-- CLAUDEFY:END -->

You can add your own project-specific content outside these markers, and it will be preserved when you update:

# My Project-Specific Notes

Custom content here is preserved!

<!-- CLAUDEFY:START -->
... auto-managed template ...
<!-- CLAUDEFY:END -->

## More Custom Content

This is also preserved!

Local Mode

Use --local or -l to create CLAUDE.local.md instead:

bunx claudefy --local

This will:

  • Create/update CLAUDE.local.md instead of CLAUDE.md
  • Automatically add CLAUDE.local.md to your .gitignore

This is useful when you want project-specific Claude instructions that shouldn't be committed to the repository (personal preferences, local paths, etc.).

Options

| Option | Description | |--------|-------------| | nextjs | Add Next.js flavor | | -l, --local | Create/update CLAUDE.local.md (gitignored) | | -h, --help | Show help message |

Contributing Flavors

To add a new flavor:

  1. Create a new file in CLAUDE/flavors/<flavor-name>.md
  2. Add the flavor name to AVAILABLE_FLAVORS in src/claudefy.ts
  3. Submit a PR!

License

MIT