AILint

by lucianfialho

Not rated
GitHub

About

AI-powered code quality analysis to detect best practice violations, security issues, and architectural problems in real-time.

Details

Author
lucianfialho
Categories
Developer Tools, AI, Security

Setup

Install AILint in your MCP client (Claude Desktop, Cursor, Windsurf, and others).

Repository: https://github.com/lucianfialho/mcp-ailint

Follow the installation instructions in the repository README, then restart your MCP client.

AILint: Constraint Rules for AI Code Generation

Stop AI from generating problematic code – Enforce software engineering principles.

The Problem: AI assistants are incredible at generating functional code, but they often produce code that violates best practices, security principles, and architectural patterns. This leads to technical debt, security vulnerabilities, and maintainability nightmares.

The Solution: AILint provides a set of deterministic state machine rules that act as "guardrails" for AI code generation. By applying proven software engineering principles as constraintsduringthe code generation process, AILint ensures the output is high-quality, secure, and maintainable.

AI assistants, while powerful, frequently exhibit common pitfalls in code generation:

- Tightly Coupled & Untestable Code: Defaults to hardcoded dependencies and monolithic structures.
- Insecure Patterns: Introduces SQL injection vulnerabilities, weak cryptography, and other security flaws.
- Unreadable & Complex Code: Generates deeply nested logic and vague naming conventions.
- Inefficient Operations: Uses blocking calls instead of asynchronous, concurrent patterns.
- Inconsistent Practices: Produces non-standard commit messages, unhelpful error messages, and generic variable/function names.

AILint solves these issues by applying constraintsduringthe code generation process, not just after.

Each AILint rule is a sophisticatedstate machinedesigned to guide AI behavior:
- Detection: Identifies problematic patterns or anti-patterns in AI requests or generated code snippets.
- Analysis: Evaluates the context, intent, and potential implications of the detected pattern.
- Constraint: Applies specific architectural principles, security best practices, or code quality standards as constraints.
- Validation: Ensures the AI's output adheres to these constraints, providing feedback if violations occur.

AI Request → Detection → Analysis → Constraint → Validation → High-Quality Code

AILint's core strength lies in its universal rules, which are language-agnostic and apply fundamental software engineering principles. These rules are defined in.mdcfiles within therules/universal/directory.

- avoid-god-classes: Prevents AI from creating massive, multi-responsibility classes, enforcing the Single Responsibility Principle.
-
composition-over-inheritance: Guides AI to favor composition for flexible, testable designs over rigid inheritance hierarchies.
-
dependency-injection: Ensures AI generates code with proper dependency injection, promoting testability and loose coupling.

- secure-by-default: Enforces security-first patterns, preventing SQL injection, weak cryptography, and other common vulnerabilities.
-
promise-patterns: Guides AI to use concurrent asynchronous patterns, eliminating blocking operations and improving performance.

- prefer-early-returns: Eliminates deeply nested if-else chains by enforcing guard clauses and early return patterns.
-
conventional-commits: Ensures AI generates clear, structured commit messages following the Conventional Commits standard.
-
descriptive-function-names: Prevents vague function names (process,handle) by enforcing intention-revealing, behavior-specific naming.
-
explicit-error-messages: Guides AI to generate specific, actionable error messages instead of generic, unhelpful ones.
-
meaningful-variable-names: Eliminates vague variable names (data,result) by enforcing intention-revealing, context-specific naming.

See the dramatic improvement in AI-generated code when AILint's constraints are applied.

Without AILint (what AI typically generates):

# Tightly coupled, insecure, unreadable nightmare class UserService: def __init__(self): self.db = PostgresDatabase("localhost:5432") # Hardcoded! self.cache = RedisCache("localhost:6379") # Untestable! def login(self, username, password): # SQL injection vulnerability query = f"SELECT  FROM users WHERE username = '{username}'" user = self.db.execute(query).fetchone() # Weak password hashing password_hash = hashlib.md5(password.encode()).hexdigest() if user: if user.get('is_active'): if user.get('email'): if '@' in user['email']: if user.get('has_permission'): # Logic buried 5 levels deep! return user['email'].lower()
# Loosely coupled, secure, testable, and readable class UserService: def __init__(self, db, cache, logger): # Dependencies injected - fully testable! self.db = db self.cache = cache self.logger = logger def login(self, username, password): # Guard clauses - fail fast, clear flow if not username: raise ValueError('Username required') if not password: raise ValueError('Password required') # Parameterized query - SQL injection impossible query = "SELECT  FROM users WHERE username = ?" user = self.db.execute(query, (username,)).fetchone() # Secure password verification with bcrypt if user and bcrypt.checkpw(password.encode(), user['password_hash']): self.logger.info(f"User {username} logged in successfully") return user raise AuthenticationError('Invalid credentials')

- Choose a rulefrom therules/universal/directory (e.g.,secure-by-default.mdc).
- Copy the entire contentof the.mdcfile.
- Paste the rule contentdirectly into your AI assistant's promptbeforeyour code generation request.
- Generate code– the AI will automatically follow the constraints!

Example: To prevent hardcoded dependencies, copy the content ofdependency-injection.mdcinto your prompt.

For seamless, persistent integration with AI tools like Claude, Cursor, and others, use the AILint MCP (Model Context Protocol) server. This project (ailint-mcp) provides the server implementation.

See theailint-mcp repositoryfor detailed setup instructions for various IDEs and AI clients.

ailint/ ├── rules/ │ ├── universal/ # Language-agnostic rules (e.g., SRP, Security, Naming) │ │ ├── avoid-god-classes.mdc │ │ ├── composition-over-inheritance.mdc │ │ ├── conventional-commits.mdc │ │ ├── dependency-injection.mdc │ │ ├── descriptive-function-names.mdc │ │ ├── explicit-error-messages.mdc │ │ ├── meaningful-variable-names.mdc │ │ ├── prefer-early-returns.mdc │ │ ├── promise-patterns.mdc │ │ └── secure-by-default.mdc │ ├── language-specific/ # (Future) Rules for specific languages (e.g., Python, JS, Java) │ └── framework-specific/ # (Future) Rules for specific frameworks (e.g., React, Spring) ├── schemas/ # (Future) Schemas for rule validation │ └── rule-schema.json ├── docs/ # (Future) Documentation on writing rules, philosophy │ └── writing-rules.md ├── .gitignore └── README.md # This file

AILint rules are designed to be universal, but examples and adaptations are provided for clarity across different programming languages:

- Python: Primary examples, focusing on idiomatic Python patterns.
- JavaScript: ES6+ patterns, Promise-based async, modern module practices.
- Java: Enterprise patterns,CompletableFuture, Spring conventions.
- C#:.NET patterns,Task.WhenAll, secure coding practices.

We welcome contributions to expand AILint's rule set and improve its effectiveness!
- Identify an AI limitation: Pinpoint a common problematic pattern AI generates (e.g., "AI generates synchronous code when async is better").
- Create a rule file: Add a new.mdcfile inrules/universal/(or a new language/framework directory if applicable).
- Define the state machine: Structure your rule withtriggers,states,transitions, andactionsas demonstrated in existing.mdcfiles.
- Include clear examples: Provide "bad" (AI-generated without AILint) and "good" (AI-generated with AILint) code examples.
- Submit a Pull Request: Ensure your commit message follows Conventional Commits.

- Add language-specific adaptations or more diverse examples.
- Refine rule descriptions, triggers, or constraints.
- Optimize state machine logic for better detection.

- Bug reports: Describe unexpected AI behavior or rule failures with reproducible examples.
- Feature requests: Suggest new rules or enhancements to the AILint system.
- Documentation: Help improve clarity, examples, and guides.

- Phase 3 (Planned):

- AST-based Analysis: Implement deeper, more accurate code analysis.

- Custom Rule Creation UI: A user-friendly interface for defining new rules.
- Rule Marketplace: A platform for sharing and discovering community-contributed rules.
- Team Analytics & Dashboards: Insights into code quality trends over time.
- VS Code Extension: Direct integration into the VS Code editor.

- Language-specific rule packs (e.g., Python, JavaScript, Java).

- Framework-specific rule packs (e.g., React, Spring, Django).
- Integration APIs for popular AI coding assistants.

AILint is built on the principle thatconstraints enable creativity. By providing AI assistants with clear, well-defined boundaries based on proven software engineering principles, we empower them to generate not just functional code, butexcellentcode.

Think of it as"guardrails that prevent AI from generating problematic code"– keeping AI on the path to quality, security, and maintainability.

This project is licensed under the MIT License – see theLICENSEfile for details.

- GitHub Issues:Report bugs or request features
- Discussions:
Share ideas, ask questions, and collaborate
- Twitter: Follow
@ailint_devfor updates

Built with ❤️ by developers who are tired of AI generating problematic code.

"Stop the problematic code epidemic – one AI constraint at a time"– AILint Team

This is a web browser that enables your coding agent, such as Claude Code, to visit websites on your behalf and assist you in identifying bugs or creating UI test cases.

Strict AI code reviewer powered by Groq. Finds bugs, SQL injections, hardcoded secrets and vulnerabilities. Scores code 0–100 with concrete fixes.

Provides call graph analysis for LLMs using the nuanced library.

Boost security in your dev lifecycle via SAST, SCA, Secrets & IaC scanning with Cycode.

Enable AI agents to secure code with Semgrep.

A stateful LSP runtime for AI agents: warm language server sessions with 50+ tools for go-to-definition, find-references, diagnostics, rename, and more across 30+ languages.

AI-powered security scanning. Scans code, files, and git diffs for vulnerabilities in real-time using the Armis scanning API.

An experimental MCP server that uses the ast-grep CLI for code structural search, linting, and rewriting.

MCP server providing x402 micropayment-powered developer tools including screenshot capture, AI analysis, PDF generation, code security scanning, and dependency auditing via USDC payments on Base.

Diagnoses token waste in Claude Code sessions with 6 anomaly types and severity scoring. Fully local.

Access the Codacy API to analyze code quality, coverage, and security for your repositories.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.