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-code-enforcer

v1.0.1

Published

An AI-powered, AST-based architectural and style enforcer for TypeScript and React projects.

Readme

🚀 AI Code Enforcer

An advanced, AI-powered, AST-based architectural and style enforcer for TypeScript, React, and Next.js projects.

Unlike traditional linters that use simple regex, AI Code Enforcer leverages ts-morph to parse your code into a full Abstract Syntax Tree (AST), enabling high-fidelity structural analysis and automated refactoring.

🌟 Key Features

  • AST-Based Rules: Precise detection of naming conventions, component size, and async error handling.
  • Cross-File Duplicate Logic Detection: Identify redundant functional patterns across your entire codebase.
  • AI-Powered Enrichment: Get sophisticated refactoring and performance suggestions from GPT-4o-mini (Optional).
  • Automated Refactoring (--fix): Safely rename variables and functions project-wide using AST-safe transformations.
  • Next.js Optimized: Built-in rules for React and Next.js project structure best practices.
  • Highly Configurable: Control rules and severity levels via ai-enforcer.config.json.
  • Developer First: Clean CLI interface with grouped results and actionable suggestions.

📦 Installation

# Install globally
npm install -g ai-code-enforcer

# Or run instantly via npx
npx ai-code-enforcer scan .

🛠 Usage

Basic Scan

ai-code-enforcer scan .

Auto-Fix Mode

# Automatically fix naming issues project-wide with full AST safety.
# A backup is automatically created before any changes.
ai-code-enforcer scan . --fix

AI-Powered Analysis

# Requires OPENAI_API_KEY in your environment
ai-code-enforcer scan . --ai

Custom Configuration

Create an ai-enforcer.config.json in your root:

{
  "rules": {
    "naming-convention": { "enabled": true },
    "large-component": { "enabled": true, "severity": "error" },
    "duplicate-logic": { "enabled": false }
  },
  "exclude": ["tests/**", "legacy/**"]
}

🏗 Rules Overview

| Rule | Description | Auto-Fix | | :--- | :--- | :---: | | naming-convention | Enforce camelCase/PascalCase | ✅ | | generic-names | Detect data, val, temp | ❌ | | large-component | Flag React components > 150 lines | ❌ | | async-error-handling | Detect missing try/catch in async functions | ❌ | | nextjs-structure | Enforce Next.js folder conventions | ❌ | | duplicate-logic | Find repeated function bodies across files | ❌ |

🛡 Security & Backups

When using --fix, the tool automatically creates a backup of the affected files in .ai-enforcer/backups/. Your code integrity is our priority.

📄 License

ISC


Built with ❤️ by the Antigravity AI Team.