Metadata-Version: 2.4
Name: ai-guard-cli
Version: 0.4.0
Summary: AI Code Quality Guard — detect common failure patterns in AI-generated code
Project-URL: Homepage, https://github.com/GurjotSinghAulakh/aiguard
Project-URL: Repository, https://github.com/GurjotSinghAulakh/aiguard
Project-URL: Issues, https://github.com/GurjotSinghAulakh/aiguard/issues
Author: AIGuard Contributors
License-Expression: MIT
License-File: LICENSE
Keywords: ai,ai-generated-code,code-quality,linter,static-analysis
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.9
Requires-Dist: click>=8.0
Requires-Dist: pathspec>=0.11
Requires-Dist: pyyaml>=6.0
Requires-Dist: rich>=13.0
Provides-Extra: dev
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: js
Requires-Dist: tree-sitter-javascript>=0.21; extra == 'js'
Requires-Dist: tree-sitter>=0.21; extra == 'js'
Description-Content-Type: text/markdown

# AIGuard

**AI Code Quality Guard - catch the bugs AI leaves behind.**

[![CI](https://github.com/GurjotSinghAulakh/aiguard/actions/workflows/ci.yml/badge.svg)](https://github.com/GurjotSinghAulakh/aiguard/actions/workflows/ci.yml)
[![PyPI](https://img.shields.io/pypi/v/aiguard)](https://pypi.org/project/aiguard/)
[![Python](https://img.shields.io/pypi/pyversions/aiguard)](https://pypi.org/project/aiguard/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
![Release](https://img.shields.io/github/v/release/GurjotSinghAulakh/aiguard)

AI-generated code is **"almost right"** - it compiles, passes linting, follows conventions... but has subtle bugs that are harder to find than writing it yourself. **66% of developers** say this is their #1 frustration with AI coding tools.

AIGuard is a static analysis tool that catches the **specific patterns where AI-generated code goes wrong**: shallow error handling, hallucinated imports, copy-paste duplication, missing validation, placeholder code disguised as complete - and now **malicious content hidden in AI agent prompts and skill files**.

<p align="center">
  <img src="demo.gif" alt="AIGuard demo" width="800">
</p>

```
$ aiguard scan ./src

src/api/handlers.py
  E       12  Bare 'except:' catches all exceptions including KeyboardInterrupt  AIG001
  W       34  Functions 'get_users' and 'get_admins' are 92% similar             AIG005
  W       67  Public function 'process' has 4 params but no input validation     AIG006

src/utils/helpers.py
  I       5   Variable 'data' is too generic - use a descriptive name            AIG010
  W       22  Function 'transform' has only 'pass' - placeholder code            AIG007

  ┌─────────────────── AI Code Health Score ───────────────────┐
  │  ████████████████████████████░░░░░░░░░░░░  72/100  ~       │
  └────────────────────────────────────────────────────────────┘
```

## Prompt Security Scanner (NEW)

People blindly trust AI agent prompts, skills, and `.md` config files - but they can contain **hidden malicious instructions**. AIGuard now scans markdown files for threats that are invisible to human reviewers.

<p align="center">
  <img src="demo-prompt-scan.gif" alt="AIGuard Prompt Security Scanner demo" width="800">
</p>

```bash
# Scan a prompt/skill file for hidden threats
aiguard scan agent-instructions.md

# Scan all markdown files in a directory
aiguard scan ./prompts/
```

**What it catches:**

- **Prompt injection** - "ignore previous instructions", role hijacking, stealth commands
- **Hidden content** - zero-width Unicode characters, invisible HTML (`display:none`), base64-encoded payloads
- **Data exfiltration** - `curl` sending secrets, reading `.ssh`/`.env`/credentials, leaking `$API_KEY`
- **Dangerous commands** - `rm -rf`, `curl | bash`, reverse shells, `chmod 777`, untrusted package installs

### Installation / Package Name

- **PyPI package:** `ai-guard-cli`
- **CLI command:** `aiguard`
  
## Quick Start

```bash
pip install ai-guard-cli
```

```bash
# Scan a directory
aiguard scan ./src

# Scan a single file
aiguard scan app.py

# Only scan changed lines (vs last commit)
aiguard scan --diff HEAD

# Only scan changed lines (vs main branch)
aiguard scan --diff main

# Only scan staged files (for pre-commit hooks)
aiguard scan --staged

# JSON output for CI pipelines
aiguard scan ./src --format json

# SARIF for GitHub Code Scanning
aiguard scan ./src --format sarif --output results.sarif

# Fail CI if score is below 70
aiguard scan ./src --fail-under 70
```

## Detection Rules

### Python Code Quality (AIG001-AIG010)

| Rule | Name | What It Catches | Severity |
|------|------|----------------|----------|
| **AIG001** | shallow-error-handling | Bare `except:`, catching `Exception`, empty handlers | Error |
| **AIG002** | tautological-code | `if True`, unreachable code after `return`, `x == x` | Warning |
| **AIG003** | over-commenting | `# Initialize the variable` for `x = 0` (AI loves this) | Info |
| **AIG004** | hallucinated-imports | Imports that don't exist in your environment | Error |
| **AIG005** | copy-paste-duplication | Near-identical functions with minor variations | Warning |
| **AIG006** | missing-input-validation | Public functions with params but no guards | Warning |
| **AIG007** | placeholder-code | `pass`/`...`/`NotImplementedError` disguised as done | Warning |
| **AIG008** | complex-one-liners | Nested comprehensions, chained ternaries | Warning |
| **AIG009** | unused-variables | Assigned but never referenced | Info |
| **AIG010** | generic-naming | `data`, `result`, `temp`, `val` - meaningless names | Info |

### Prompt Security (AIG011-AIG014)

| Rule | Name | What It Catches | Severity |
|------|------|----------------|----------|
| **AIG011** | prompt-injection | "Ignore previous instructions", role hijacking, stealth commands | Error |
| **AIG012** | hidden-content | Zero-width Unicode chars, invisible HTML, base64 payloads, suspicious comments | Error |
| **AIG013** | data-exfiltration | `curl`/`wget` leaking secrets, reading `.ssh`/`.env`/credentials | Error |
| **AIG014** | dangerous-commands | `rm -rf`, `curl \| bash`, reverse shells, `chmod 777`, untrusted installs | Error |

List all rules:

```bash
aiguard list-rules
```

## Configuration

Generate a config file:

```bash
aiguard init
```

This creates `.aiguard.yml`:

```yaml
rules:
  AIG001:
    enabled: true
    severity: error
  AIG003:
    enabled: true
    max_comment_ratio: 0.6
  AIG005:
    enabled: true
    similarity_threshold: 0.85

ignore:
  - "tests/**"
  - "migrations/**"

score:
  fail_threshold: 60
  weights:
    error: 10
    warning: 3
    info: 1
```

## Pre-commit Hook

Add AIGuard to your pre-commit config so it runs on every commit:

```yaml
# .pre-commit-config.yaml
repos:
  - repo: https://github.com/GurjotSinghAulakh/aiguard
    rev: v0.4.0
    hooks:
      - id: aiguard                  # Python code quality
        args: ["--fail-under", "60"]
      - id: aiguard-prompt-scan      # Prompt/markdown security
        args: ["--fail-under", "80"]
```

Then install:

```bash
pip install pre-commit
pre-commit install
```

Now AIGuard runs automatically on every `git commit` - scanning Python code for quality issues **and** markdown files for hidden threats.

## Diff Mode (Only Scan New Code)

The killer feature for existing projects - only flag issues in **new or changed code**, not the entire codebase:

```bash
# Issues introduced since last commit
aiguard scan --diff HEAD

# Issues introduced vs main branch (perfect for PR checks)
aiguard scan --diff main

# Issues in staged files only (same as pre-commit)
aiguard scan --staged
```

This means you can adopt AIGuard on any codebase without drowning in existing issues.

## GitHub Actions

Add to your workflow:

```yaml
# .github/workflows/aiguard.yml
name: AI Code Quality
on: [push, pull_request]

jobs:
  aiguard:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: GurjotSinghAulakh/aiguard@v1
        with:
          path: './src'
          fail-under: '70'
```

Findings appear as **inline annotations** on your PRs via GitHub Code Scanning (SARIF).

## Output Formats

| Format | Use Case | Flag |
|--------|----------|------|
| `terminal` | Local development (default) | `--format terminal` |
| `json` | CI pipelines, custom tooling | `--format json` |
| `sarif` | GitHub Code Scanning | `--format sarif` |

## Writing Custom Rules (Plugins)

Create a detector in your own package:

```python
from aiguard.detectors import register
from aiguard.detectors.base import BaseDetector
from aiguard.models import Finding, Language, Severity

@register
class MyCustomDetector(BaseDetector):
    rule_id = "CUSTOM001"
    rule_name = "my-custom-rule"
    description = "Detects my specific pattern"
    severity = Severity.WARNING
    languages = (Language.PYTHON,)

    def detect(self, source, ast_tree, file_path):
        findings = []
        # Your detection logic using ast_tree
        return findings
```

Register via entry points in your `pyproject.toml`:

```toml
[project.entry-points."aiguard.detectors"]
my_rule = "my_package:MyCustomDetector"
```

## Why AIGuard?

Traditional linters (pylint, ruff, eslint) catch **syntax-level** issues. AI-generated code passes all of those. The bugs are at a **higher level**:

- The error handling *exists* but is **shallow** (catches everything, does nothing)
- The code *works* but is **copy-pasted** 5 times with minor changes
- The function *has parameters* but **never validates** them
- The import *looks right* but the **package doesn't exist**
- The code *looks complete* but it's just **`pass` with a docstring**

AIGuard catches these patterns because they are **specific to how AI generates code**.

## Contributing

We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for details.

Good first issues are labeled [`good first issue`](https://github.com/GurjotSinghAulakh/aiguard/labels/good%20first%20issue).

## License

MIT License. See [LICENSE](LICENSE) for details.
