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-conventions-cli

v1.0.3

Published

CLI to generate convention files from ai-conventions templates

Downloads

616

Readme

ai-conventions-cli

npm

Generate AI coding assistant convention files (CLAUDE.md, AGENTS.md, docs/) for your project.
AI 코딩 어시스턴트(Claude, Codex 등)가 프로젝트 컨벤션을 따르도록 규칙 파일을 자동으로 생성합니다.

Supported Stacks

| Category | Options | |----------|---------| | Frontend | React + TypeScript — Vite/SPA (react-router), Next.js (App Router) | | Backend | Spring Boot, NestJS | | Service layer | Spring Boot only: with ServiceImpl interface / without |

Installation

npm install -g ai-conventions-cli

Usage

Run in the root of your project:

npx ai-conventions init

Interactive prompts will guide you through stack selection.
프로젝트 루트에서 실행하면 스택을 선택하는 대화형 프롬프트가 시작됩니다.

Generated Output

your-project/
├── docs/
│   ├── naming.md
│   ├── frontend/
│   │   ├── components.md
│   │   ├── routing.md
│   │   └── ...
│   └── backend/
│       ├── api-design.md
│       ├── exception-handling.md
│       └── ...
├── CLAUDE.md
└── AGENTS.md

CLAUDE.md and AGENTS.md are generated with @docs/... references so Claude Code, Cursor, and other AI assistants automatically read all convention files.
CLAUDE.mdAGENTS.md@docs/... 참조 형식으로 생성되어 Claude Code, Cursor 등의 AI 어시스턴트가 모든 컨벤션 파일을 자동으로 읽습니다.

Contributing

Templates live under templates/. Add or edit .md files there — no code changes needed for existing stacks.
templates/ 아래의 .md 파일을 추가하거나 수정하면 됩니다. 기존 스택의 경우 코드 변경 없이 템플릿만 수정하면 됩니다.