Socket
Book a DemoInstallSign in
Socket

ai-rulez

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ai-rulez

⚡ One config to rule them all. Centralized AI assistant configuration management - generate rules for Claude, Cursor, Copilot, Windsurf and more from a single YAML file.

latest
Source
npmnpm
Version
2.3.4
Version published
Weekly downloads
71
-67.13%
Maintainers
1
Weekly downloads
 
Created
Source

ai-rulez ⚡

ai-rulez logo

AI-powered development governance. One config to rule them all.

Go Version NPM Version PyPI Version Homebrew

Documentation: goldziher.github.io/ai-rulez

Why ai-rulez

  • One YAML file stays in sync with every AI assistant format (CLAUDE.md, .cursorrules, .windsurfrules, MCP configs, and more).
  • AI agents enforce your rules in real time with optional auto-fix and review loops.
  • Git hooks, CI, and MCP integrations keep governance in every stage of your workflow.
  • Works for individuals and teams with presets, remote includes, and monorepo support.

AI-Rulez Configuration Demo

What You Get

  • Universal configuration managementai-rulez analyzes your repo and generates native configuration files for every assistant.
  • AI-powered enforcement – Run ai-rulez enforce to catch violations, apply fixes, and gate merges with configurable quality thresholds.
  • Automation built-in – Smart .gitignore updates, Git hook integration (lefthook, pre-commit, husky), and CI ready commands.
  • MCP everywhere – Automatically wire MCP servers into Claude CLI, Gemini CLI, Cursor, and other supported tools.

Quick Start

Configuration Management

# Analyze your project and scaffold configuration
npx ai-rulez@latest init "My Project" --preset popular

# Generate all assistant configuration files
npx ai-rulez@latest generate

Rule Enforcement

# Check for violations (read-only)
uvx ai-rulez@latest enforce --agent claude

# Apply fixes or run multi-agent reviews
uvx ai-rulez@latest enforce --agent claude --fix
uvx ai-rulez@latest enforce --agent gemini --review --review-iterations 2

Optional: Auto-Configure Git Hooks

# Detect pre-commit, lefthook, or husky and add ai-rulez validation
npx ai-rulez@latest init --setup-hooks

--setup-hooks adds the official hooks for the detected system and keeps existing configuration intact.

Example ai-rulez.yaml

$schema: https://github.com/Goldziher/ai-rulez/schema/ai-rules-v2.schema.json

metadata:
  name: "My SaaS Platform"

presets:
  - "popular"  # Claude, Cursor, Windsurf, Copilot, Gemini

rules:
  - name: "Go Code Standards"
    priority: high
    content: "Follow standard Go project layout and export only what is necessary."

sections:
  - name: "Project Structure"
    priority: critical
    content: |
      - `cmd/`: Main application entry point
      - `internal/`: Private application code
      - `pkg/`: Public-facing libraries

agents:
  - name: "go-developer"
    description: "Expert Go developer focused on idiomatic code and tests."

mcp_servers:
  - name: "ai-rulez"
    command: "npx"
    args: ["-y", "ai-rulez@latest", "mcp"]
    description: "Configuration management server"

Installation Options

  • No install required
    • npx ai-rulez@latest ... for Node/JS environments
    • uvx ai-rulez@latest ... for Python users
    • go run github.com/Goldziher/ai-rulez/cmd@latest ... for Go projects
  • Global installs
    • brew install goldziher/tap/ai-rulez
    • npm install -g ai-rulez
    • pip install ai-rulez
    • go install github.com/Goldziher/ai-rulez/cmd@latest

Git Hooks & Automation

  • Official pre-commit hooks

    repos:
      - repo: https://github.com/Goldziher/ai-rulez
        rev: v2.3.4
        hooks:
          - id: ai-rulez-validate
          - id: ai-rulez-generate
    
  • CLI hook setup – Run ai-rulez init --setup-hooks to auto-configure pre-commit, lefthook, or husky if they are present in your repo.

  • No-Go requirement – Hooks use scripts/pre-commit/run-ai-rulez.sh, which fetches the correct prebuilt binary on-demand (override with AI_RULEZ_BINARY if you already have one installed).

  • CI/CD examples – See the Enforcement guide for GitHub Actions, pipeline tips, and advanced workflows.

More to Explore

Contributing

We welcome contributions! Read the CONTRIBUTING.md for development setup, coding standards, and release process details.

Keywords

ai

FAQs

Package last updated on 01 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts