Metadata-Version: 2.4
Name: smartpr-ai
Version: 0.1.0
Summary: AI-powered local development agent that converts requirements from Jira, PDFs, DOCX, and code context into validated GitHub pull requests.
Project-URL: Homepage, https://github.com/roshanguptamca/ai-dev-agent
Project-URL: Repository, https://github.com/roshanguptamca/ai-dev-agent
Project-URL: Issues, https://github.com/roshanguptamca/ai-dev-agent/issues
Author: Roshan Gupta
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: ai,automation,code-generation,developer-tools,github,jira,openai,python,rag
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Version Control :: Git
Classifier: Topic :: Utilities
Requires-Python: >=3.11
Requires-Dist: gitpython>=3.1.40
Requires-Dist: openai>=1.0.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: requests>=2.31.0
Provides-Extra: dev
Requires-Dist: build>=1.2.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: ruff>=0.4.0; extra == 'dev'
Requires-Dist: twine>=5.0.0; extra == 'dev'
Provides-Extra: docs
Requires-Dist: mkdocs>=1.6.0; extra == 'docs'
Provides-Extra: rag
Requires-Dist: faiss-cpu>=1.8.0; extra == 'rag'
Description-Content-Type: text/markdown

# AI Dev Agent

AI-powered local development agent that converts requirements from Jira, PDFs, DOCX, and code context into validated GitHub pull requests.

## Install

```bash
pip install ai-dev-agent
```

## Usage

```bash
ai-dev-agent --help
```

## Development

```bash
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev,rag]"
pytest
ruff check .
```

## Build locally

```bash
python -m build
twine check dist/*
```

## Publish

This repository is configured for GitHub Actions + PyPI Trusted Publishing.
Create a GitHub release or push a tag like:

```bash
git tag v0.1.0
git push origin v0.1.0
```
