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

open-engineering-standard

v1.0.4

Published

Configure customized, standard rulesets (.cursorrules, .windsurfrules, .skills/oes.md) for AI coding assistants to follow in your repository.

Readme

🛡️ Open Engineering Standards (OES)

OES is a lightweight, zero-dependency CLI tool to define, check, and align AI coding assistants (like Cursor, Windsurf, and Antigravity) with your project's custom engineering standards.

Instead of writing agent prompt files from scratch, OES compiles your custom standards into configurations that IDE agents read automatically on startup.


🎯 Purpose & Audience

Why use OES?

AI agents are fast, but they can generate "code slop" (hardcoded colors, raw HTML tags, duplicate API logic, and insecure forms). OES ensures AI agents paired with you write clean, secure, and production-ready code that matches your style guides.

Who is this for?

  • Developers paired with AI assistants: Keeps your assistant aligned with your guidelines.
  • Team Leads: Standardizes AI developer patterns across multiple repositories.

🚀 Installation & Setup

Choose the installation method that fits your project type:

Option A: Local Installation (Best for Node.js / JS / TS projects)

Install OES as a development dependency inside your project:

npm install --save-dev open-engineering-standard

Run commands using npx:

npx oes init
npx oes check

(Make sure node_modules/ is in your .gitignore so library files aren't tracked by Git!)

Option B: Zero-Install (Best for quick runs & non-Node projects)

Run OES directly without installing it or adding any files/dependencies to your workspace:

npx open-engineering-standard init
npx open-engineering-standard check

Option C: Global Installation (Best for Flutter, Python, Go, and desktop apps)

Install OES globally on your machine:

npm install -g open-engineering-standard

Run commands directly in any directory:

oes init
oes check

🛠️ CLI Usage

Navigate to your project root and run one of the following commands:

1. Initialize Rules (oes init)

Analyzes your codebase to automatically detect the project type (Website Project/Web vs. Mobile App Project/Flutter) and launches an interactive wizard to choose:

  • AI Platform Targets: Choose which AI assistant rules to generate (Antigravity, Cursor, Windsurf, or All).
  • Rules Selection: Toggle specific engineering standards to enforce.
oes init

Generates configuration and rule files tailored to your selections:

  • .oes.config.json (OES settings)
  • .agents/skills/oes/SKILL.md (For Antigravity workspace skills)
  • .skills/oes.md (Fallback/backward-compatible skill rules)
  • .cursorrules (For Cursor IDE)
  • .windsurfrules (For Windsurf IDE)

2. Audit Codebase (oes check)

Scans your workspace for styling, naming, and architectural violations, returning a status and an aesthetic HTML report.

oes check

Creates a visual oes-report.html report in your root.

3. Import Remote Rules (oes add <owner/repo>)

Imports OES standards directly from a public GitHub repository.

oes add Vikashuvi/OpenEngineeringStandard

🛡️ Standard Rules Audited

OES checks for and aligns your assistant on:

  1. Folder Layouts: Directs code into /components, /services, /utils, /hooks.
  2. Naming Conventions: Enforces PascalCase components, camelCase utilities/hooks, and UPPER_SNAKE_CASE constants.
  3. API Isolation: Bans raw network requests (fetch/axios) inside UI components.
  4. Form CAPTCHA: Enforces bot protection on public forms.
  5. Theme Styling: Prevents hardcoded hex/rgb colors in favor of CSS variables.
  6. Optimized Assets: Demands modern WebP/AVIF image formats.
  7. Secrets Security: Scans for and prevents committed passwords/API keys.
  8. Component Reusability: Limits component lines and inline styles.

📄 License

MIT License.