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

@plinng/ai-code-assistant-tools

v1.0.3

Published

CLI installer for Plinng platform AI coding standards

Readme

@plinng/ai-code-assistant-tools

Versioned, modular AI coding standards for the Plinng platform. Provides behavioral and architectural rules for Claude Code and Cursor that encode what linters and formatters cannot: architectural intent, error philosophy, and design discipline.


What this is

These are not linter rules. ESLint, Prettier, Ruff, and Biome handle formatting and style deterministically at zero LLM token cost. These rules encode the decisions that static analysis has no reach into:

  • Which layer is responsible for what.
  • When and how to handle errors.
  • Which design patterns to prefer and why.
  • SOLID principles and how to apply them in this codebase.

Rules included

| Rule file | Tool | Activated when | Enforces | |---|---|---|---| | CLAUDE.md / universal.mdc | Both | Always | How to work, commits, task runner, error + architecture summary | | error-handling.md/mdc | Both | **/*.ts, **/*.py | No silent catches; structured boundary logging; propagation discipline | | architecture.md/mdc | Both | **/handlers/**, **/resolvers/**, **/routes/**, **/app/** | Layer ordering; no DB client in handlers; factory injection | | solid-principles.md/mdc | Both | **/*.ts, **/*.tsx | SRP, OCP, LSP, ISP, DIP; don't refactor violations unless asked | | clean-architecture.md/mdc | Both | **/*.ts, **/*.py | Four-layer model; domain types from repositories; coupling detector | | design-patterns.md/mdc | Both | Always (Claude) / Agent Requested (Cursor) | Propose pattern + rationale before implementing |


Install

Interactive CLI

npx @plinng/ai-code-assistant-tools

The installer will ask which AI assistant you use (Claude Code / Cursor / Both) and, for Cursor, whether to install at project scope or user scope. Existing files are backed up automatically as <file>.backup-<timestamp>

Manual install — Claude Code

cp claude-code/CLAUDE.md ~/.claude/CLAUDE.md
cp claude-code/rules/*.md ~/.claude/rules/

Manual install — Cursor (project scope)

cp -r cursor/rules/ .cursor/rules/

Cursor scope note

Project scope (.cursor/rules/) is the reliably enforced path for teams. Rules installed there are version-controlled and apply to every developer who opens the project in Cursor.

User scope (~/.cursor/rules/) is a filesystem convention. Cursor reads user rules from its Settings UI (plain text), not from a filesystem path directly. To apply user rules from this install, paste the content of each .mdc file into Cursor Settings → General → Rules for AI, or use Cursor Team Rules (requires Cursor Team/Enterprise plan) for enforced team standards.


Updating

Re-run the installer to get the latest rules. Existing files will be backed up before overwriting:

npx @plinng/ai-code-assistant-tools

Contributing

Before adding or modifying a rule, verify it meets this checklist:

  1. Cannot be enforced by a linter — if ESLint/Ruff can catch it, it belongs in tool config, not here
  2. Imperative with motivation — "Use X because Y", not "Consider using X"
  3. Both .md and .mdc updated — keep Claude Code and Cursor rule content in sync
  4. Line count passes — run moon run ai-code-assistant-tools:lint-rules
  5. PR to platform team — rules affect all engineers; review is required
moon run ai-code-assistant-tools:lint-rules