Metadata-Version: 2.4
Name: ai-auditor
Version: 0.1.0
Summary: AI-powered code auditor: security, tests, and improvement suggestions via LLM.
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: openai
Requires-Dist: python-dotenv
Requires-Dist: rich

# AI Auditor

An AI-powered code auditor that scans your project and generates security reports, unit tests, and improvement suggestions using a free LLM via [OpenRouter](https://openrouter.ai).

## Setup

```bash
pip install .
```

Or for development (editable install):

```bash
pip install -e .
```

## Configuration

Create a `.env` file in your working directory:

```
OPENROUTER_API_KEY=your_key_here
PROJECT_PATH=/path/to/project   # optional, defaults to current directory
```

## Usage

After installation, run from anywhere:

```bash
ai-auditor
```

Or directly (from project root):

```bash
python main.py
```
