Metadata-Version: 2.4
Name: aixgit
Version: 0.1.3
Summary: A context-aware AI CLI proxy for Git.
Author-email: Your Name <your.email@example.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: rich

# aixgit - AI powered Git Assistant

aixgit is a context-aware AI CLI proxy for Git that translates natural language intent into Git commands.
essly, acting as a smart wrapper around Git.

## Installation
```bash
# Clone the repository and install it locally
pip install -e .
```

## Basic Usage

**Check Environment**:
```bash
aixgit --doctor
# 或者使用简写
aixgit -d
```

**Initialize aixgit** (in any Git repository):
```bash
aixgit --init
```

**Common Examples**:
```bash
# Commit changes
aixgit commit "your message"
```
# This creates a `.aixgit` directory in the repository. (Note: we should probably consider if the config dir needs renaming too, but keeping .aixgit for now)
# You must edit `.aixgit/config.json` to insert your OpenAI/Anthropic keys.
# Remember to add `.aixgit` (or at least `.aixgit/config.json`) to your `.gitignore`.

# Once configured:
aixgit "Fix the login bug and push to main"
```

## Troubleshooting (Windows)
If you get a `command not found` error after installation:
1. Ensure your Python `Scripts` directory is in your system **PATH**.
2. Alternatively, use `python -m aixgit` instead of `aixgit`.
3. Try restarting your terminal.
