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

@itaromi/airul

v0.1.1

Published

One source of truth for your AI rules. Sync to Claude, Cursor, Copilot, Windsurf and more.

Readme

airul

One source of truth for all your AI coding rules.

Stop maintaining .cursorrules, CLAUDE.md, .windsurfrules separately. Write your rules once in .airul, sync everywhere.

Install

npm install -g @itaromi/airul

Usage

# Initialize a .airul file in your project
airul init

# Generate all AI rule files
airul sync

# Watch mode — auto-sync on save
airul watch

# Install a git pre-commit hook (auto-sync before every commit)
airul add-hook

# Validate generated files are up to date (useful in CI)
airul validate

Supported targets

| Tool | File generated | |------|----------------| | Claude Code | CLAUDE.md | | Cursor | .cursorrules | | GitHub Copilot | .github/copilot-instructions.md | | Windsurf | .windsurfrules | | Gemini CLI | GEMINI.md |

The .airul format

# .airul — single source of truth for your AI coding rules
version: 1

targets:
  - claude
  - cursor
  - copilot
  - windsurf
  - gemini

rules:
  - id: lang
    content: "Always respond in the same language the user writes in."

  - id: stack
    content: |
      Stack: Next.js 14, TypeScript strict, Tailwind CSS, Prisma + PostgreSQL.
      Never use `any`. Prefer TypeScript utility types.

  - id: style
    content: "React components as arrow functions. No inline CSS classes."

  - id: tests
    content: "Write Vitest tests for every utility function."

  # Rule targeted to specific tools only
  - id: commits
    content: "Use Conventional Commits format."
    only: [claude, cursor]

Rule fields

| Field | Required | Description | |-------|----------|-------------| | id | yes | Unique identifier | | content | yes | The rule text (supports multi-line with \|) | | only | no | Restrict this rule to specific targets | | except | no | Exclude this rule from specific targets |

Options

airul sync --dry-run                  # Preview output without writing files
airul sync --targets claude,cursor    # Override which targets to sync
airul sync --config path/to/.airul    # Use a custom config file
airul sync --quiet                    # Suppress output

CI usage

Add to your pipeline to ensure rule files are always in sync:

- run: npx @itaromi/airul validate

Exits with code 1 if any generated file is missing or out of sync.