34 lines
531 B
Markdown
34 lines
531 B
Markdown
# AI Code Audit CLI
|
|
|
|
A CLI tool for scanning code and auditing for issues using AI.
|
|
|
|
## Features
|
|
|
|
- Scan Python, JavaScript, and TypeScript files
|
|
- Multiple output formats (terminal, JSON, markdown)
|
|
- Severity-based filtering
|
|
- Confidence scoring for results
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
pip install ai-code-audit-cli
|
|
```
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
audit scan <path> [--format terminal|json|markdown] [--severity low|medium|high|critical]
|
|
```
|
|
|
|
## Configuration
|
|
|
|
Create a `.env` file with:
|
|
```
|
|
OPENAI_API_KEY=your_api_key
|
|
```
|
|
|
|
## License
|
|
|
|
MIT
|