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

@pleaseai/code-style

v0.0.1

Published

CLI to set up PleaseAI code style (eslint, prettier, editorconfig, AGENTS.md) in any project

Downloads

73

Readme

@pleaseai/code-style

CLI that wires PleaseAI's shared code style into any project — installs the eslint/prettier/editorconfig packages and manages the AGENTS.md rules block so AI coding assistants know how to write code that passes lint on the first try.

Inspired by ultracite and NaverPay's @naverpay/code-style-cli.

Usage

From the root of any project that has a package.json:

bunx @pleaseai/code-style         # same as `init`
bunx @pleaseai/code-style init    # interactive setup
bunx @pleaseai/code-style update  # re-apply the AGENTS.md rules block only
bunx @pleaseai/code-style doctor  # check current project status

Also works with npx, pnpm dlx, and yarn dlx.

What it does

The init command:

  1. Detects your package manager (bun → pnpm → yarn → npm, based on lockfile).
  2. Shows a checkbox UI listing PleaseAI code-style tools; already-installed ones are labelled (installed) / (설치됨).
  3. Installs the packages you selected as dev dependencies.
  4. Writes / updates the corresponding config files.

Supported tools

| Tool | npm package(s) | Config file | | --- | --- | --- | | eslint-config | @pleaseai/eslint-config, eslint | eslint.config.mjs | | prettier-config | @pleaseai/prettier-config, prettier | package.json#prettier | | editorconfig | @pleaseai/editorconfig | .editorconfig (copied from node_modules) | | agents-md | — | AGENTS.md (marker-managed block) |

AGENTS.md block

The CLI owns only the content between these markers — everything else in AGENTS.md is your content and is preserved verbatim:

<!-- pleaseai-code-style:start -->
...managed content...
<!-- pleaseai-code-style:end -->

Re-run pleaseai-code-style update any time you upgrade @pleaseai/code-style to refresh just this block. The full rules list is shipped as node_modules/@pleaseai/code-style/rules.md for reference.

Options

| Flag | Description | | --- | --- | | --yes, -y | Accept defaults, overwrite existing files without prompting | | --lang <ko\|en> | Force the CLI locale (defaults to $LANG) | | --help, -h | Print help | | --version, -v | Print version |

Localisation

The CLI auto-detects your locale from LC_ALL / LANG / LC_MESSAGES and currently ships Korean and English messages. Override with --lang ko or --lang en.

License

MIT