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

@bitforgehq/ai-instructions

v1.1.3

Published

AI coding instruction files and CLI for syncing standards

Readme

@bitforgehq/ai-instructions

AI coding instruction files, IDE rules, and CLI tool for syncing standards to consumer projects.

Installation

bun add -D @bitforgehq/ai-instructions

Usage

CLI Tool

The standards CLI syncs two things to your project:

  1. Instructions (AI_GUIDE.md) → .ai/ folder
  2. IDE rules (e.g. Cursor rules) → IDE-specific directories

Web Projects

bunx standards sync-ai --type web

Ionic Projects

bunx standards sync-ai --type ionic

Controlling IDE Rules

By default, rules for all supported IDEs are synced. Use --ide to target a specific one:

# Sync only Cursor rules
bunx standards sync-ai --type web --ide cursor

# Explicitly sync all IDE rules
bunx standards sync-ai --type web --ide all

Package.json Script

Add to your package.json:

{
  "scripts": {
    "standards:sync": "standards sync-ai --type web"
  }
}

For Ionic projects:

{
  "scripts": {
    "standards:sync": "standards sync-ai --type ionic"
  }
}

Then run:

bun run standards:sync

What Gets Synced

Instructions → .ai/

  • AI_GUIDE.md — Comprehensive engineering principles and guidelines

IDE Rules

Rules are synced to each IDE's expected directory:

| IDE | Target directory | Files | | ------- | ------------------ | ----------------------------- | | Cursor | .cursor/rules/ | cursor-instructions.mdc | | Claude | . (project root) | CLAUDE.md | | GitHub | .github/ | copilot-instructions.md |

More IDEs can be added in the future (Windsurf, etc.) by adding rule files under rules/<ide>/.

Adding Rules for a New IDE

To add support for a new IDE:

  1. Create a directory under rules/<ide-name>/ with the rule files in whatever format that IDE expects
  2. Register the IDE in bin/standards.js by adding an entry to the IDE_TARGETS map with the sourceDir and targetDir
  3. That's it — the CLI will pick it up automatically

Updating

To update standards in your project, run the sync command again. All files are overwritten with the latest versions.

Examples

See examples/consumer-web/ and examples/consumer-ionic/ for complete setup examples.