Metadata-Version: 2.4
Name: xeolint
Version: 0.1.0
Summary: A GEO and SEO linter and autofixer for Next.js applications
Project-URL: Homepage, https://github.com/AntoineLevyy/XEO_lint
Project-URL: Repository, https://github.com/AntoineLevyy/XEO_lint
Author: Antoine Levy
License-Expression: MIT
Keywords: generative-engine-optimization,geo,linter,nextjs,seo
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Python: >=3.9
Requires-Dist: rich>=13.0.0
Requires-Dist: typer>=0.12.0
Description-Content-Type: text/markdown

<div align="center">
  <h1>🔍 XEOLint</h1>
  <p><strong>A fast, deterministic GEO and SEO linter & autofixer for Next.js</strong></p>
  <p>
    <a href="#philosophy">Philosophy</a> •
    <a href="#installation">Installation</a> •
    <a href="#usage">Usage</a> •
    <a href="#rules">Rules</a>
  </p>
</div>

---

## What is XEOLint?

**XEOLint** is an ESLint-like tool built specifically for **Generative Engine Optimization (GEO)** and **SEO**. 

As search evolves toward LLM-driven engines (like ChatGPT Search, Perplexity, and AI Overviews), structural clarity and machine-readability are more important than ever. XEOLint statically analyzes your Next.js project (supporting both the `app/` and `pages/` routers) to ensure your content is perfectly structured for both traditional crawlers and modern AI agents.

### ⚡ The V1 Philosophy
- **"ESLint for Discoverability"**: Useful, deterministic, and narrowly focused.
- **Audit-First**: Finds the missing metadata, broken hierarchies, and crawlability issues.
- **Safe Autofixing**: Modifies your code *only* when the fix is deterministic and extremely low-risk (e.g., generating missing `robots.txt` or `sitemap.xml`).
- **Deep Next.js Support**: Natively understands `export const metadata`, `"use client"` directives, and `<Head>` tags.

---

## 🚀 Installation

XEOLint is distributed as a Python CLI tool.

```bash
pip install xeolint
```

*(Note: XEOLint requires Python 3.9+)*

---

## 🛠️ Usage

Navigate to the root of your Next.js project and run:

### Audit (default — block format)
```bash
xeolint audit .
```

Output:
```
ERROR  missing_title
  File: src/pages/Terms.tsx
  Message: No <title> found inside <Head> on this page route.
  Fix: Inject a <title> element inside the Next.js <Head> component.

WARNING  missing_canonical
  File: src/pages/Terms.tsx
  Message: No canonical URL defined for this page.
  Fix: Add <link rel='canonical' href='...'> in <Head>.

✅ Passed: missing_robots_txt, missing_sitemap, missing_h1, ...

Summary: 5 errors · 9 warnings · 6 info · 12 passed
```

### Audit (table format)
```bash
xeolint audit . --table
```

### Fix
The `fix` command automatically generates missing files or metadata blocks when it is 100% safe to do so.

```bash
xeolint fix .
```

---

## 📐 The 20 Rules

### 🟢 Safe Auto-Fixes
These rules are automatically fixed when you run `xeolint fix`.

| Rule | What it checks |
|------|---------------|
| `missing_robots_txt` | `robots.txt` or `app/robots.ts` exists |
| `missing_sitemap` | `sitemap.xml` or `app/sitemap.ts` exists |

### 🔴 Errors (audit only)
| Rule | What it checks |
|------|---------------|
| `missing_title` | `<title>` or `metadata.title` is defined |
| `missing_h1` | Page has an `<h1>` tag |

### 🟡 Warnings (audit only)
| Rule | What it checks |
|------|---------------|
| `missing_meta_description` | `description` is defined in metadata |
| `missing_canonical` | Canonical URL is defined |
| `missing_open_graph` | `openGraph` object in metadata |
| `missing_twitter_card` | `twitter` object in metadata |
| `page_noindex_risk` | Accidental `noindex` directives |
| `client_only_critical_content` | Heavy text hidden behind `"use client"` |
| `multiple_h1` | More than one `<h1>` on a page |
| `weak_heading_hierarchy` | Heading levels are skipped (e.g. h1 → h3) |
| `missing_semantic_landmarks` | Missing `<main>`, `<nav>`, `<footer>` |
| `missing_alt_text` | Images missing meaningful `alt` text |
| `missing_json_ld` | No JSON-LD structured data found |
| `client_only_content_risk` | Multi-signal detection of heavy client-side rendering risk |

### 🔵 Info (audit only)
| Rule | What it checks |
|------|---------------|
| `unclear_page_purpose` | H1/hero text is too vague for GEO |
| `weak_entity_clarity` | Brand/product name missing from key areas |
| `missing_faq_or_structured_qa` | No FAQ section or FAQ schema |
| `orphan_risk_internal_linking` | Pages with no internal links pointing to them |
| `generic_anchor_text` | "Click here" / "Learn more" style links |

---

## 🤝 Contributing

### Local Development
1. Clone the repository.
2. Initialize the environment:
   ```bash
   python -m venv .venv
   source .venv/bin/activate
   pip install -e .
   pip install pytest
   ```
3. Run the test suite:
   ```bash
   pytest
   ```

---
*Built to help your code be understood by machines.*
