Metadata-Version: 2.4
Name: maintsight
Version: 0.0.3
Summary: AI-powered maintenance risk predictor for git repositories with interactive HTML reports and database integration
Home-page: https://github.com/techdebtgpt/maintsight-pip
Author: TechDebtGPT Team
Author-email: TechDebtGPT Team <support@techdebtgpt.com>
Maintainer-email: TechDebtGPT Team <support@techdebtgpt.com>
License: Apache-2.0
Project-URL: Homepage, https://github.com/techdebtgpt/maintsight-pip
Project-URL: Documentation, https://github.com/techdebtgpt/maintsight-pip#readme
Project-URL: Repository, https://github.com/techdebtgpt/maintsight-pip
Project-URL: Bug Tracker, https://github.com/techdebtgpt/maintsight-pip/issues
Keywords: maintenance,technical-debt,risk-prediction,xgboost,git,code-quality,machine-learning,repository-health
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
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 :: Version Control :: Git
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0.0
Requires-Dist: dill>=0.3.6
Requires-Dist: gitpython>=3.1.0
Requires-Dist: joblib>=1.3.0
Requires-Dist: numpy>=1.21.0
Requires-Dist: pandas>=1.3.0
Requires-Dist: scikit-learn>=1.1.0
Requires-Dist: xgboost>=1.7.0
Requires-Dist: rich>=12.0.0
Requires-Dist: tqdm>=4.62.0
Requires-Dist: typing-extensions>=4.0.0; python_version < "3.10"
Requires-Dist: requests>=2.25.0
Requires-Dist: python-dotenv>=1.0.0
Provides-Extra: dev
Requires-Dist: pytest>=6.0.0; extra == "dev"
Requires-Dist: pytest-cov>=2.12.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Requires-Dist: mypy>=0.950; extra == "dev"
Requires-Dist: pre-commit>=2.15.0; extra == "dev"
Provides-Extra: api
Requires-Dist: fastapi>=0.104.0; extra == "api"
Requires-Dist: uvicorn[standard]>=0.24.0; extra == "api"
Requires-Dist: pydantic>=2.4.0; extra == "api"
Requires-Dist: sqlalchemy>=2.0.0; extra == "api"
Requires-Dist: psycopg2-binary>=2.9.0; extra == "api"
Requires-Dist: alembic>=1.12.0; extra == "api"
Requires-Dist: python-dotenv>=1.0.0; extra == "api"
Requires-Dist: python-multipart>=0.0.6; extra == "api"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# 🔍 MaintSight

[![PyPI version](https://img.shields.io/pypi/v/maintsight.svg)](https://pypi.org/project/maintsight/)
[![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Python](https://img.shields.io/badge/Python-3.8+-blue.svg)](https://www.python.org/)

> **AI-powered maintenance degradation predictor for git repositories using XGBoost machine learning**

MaintSight analyzes your git repository's commit history and code patterns to predict maintenance degradation at the file level. Using a trained XGBoost model, it identifies code quality trends and helps prioritize refactoring efforts by detecting files that are degrading over time.

## 📋 Table of Contents

- [Features](#-features)
- [Quick Start](#-quick-start)
- [Installation](#-installation)
- [Usage](#-usage)
- [Output Formats](#-output-formats)
- [Degradation Categories](#-degradation-categories)
- [Command Reference](#-command-reference)
- [Model Information](#-model-information)
- [Development](#-development)
- [Testing](#-testing)
- [Contributing](#-contributing)
- [License](#-license)

## ✨ Features

- 🤖 **XGBoost ML Predictions**: Pre-trained model for maintenance degradation scoring
- 📊 **Git History Analysis**: Analyzes commits, changes, and collaboration patterns
- 📈 **Multiple Output Formats**: JSON, CSV, Markdown, or interactive HTML reports
- 🎯 **Degradation Categorization**: Four-level classification (Improved/Stable/Degraded/Severely Degraded)
- 🔍 **Threshold Filtering**: Focus on degraded files only
- 🌐 **Interactive HTML Reports**: Rich, interactive analysis with visualizations
- ⚡ **Fast & Efficient**: Analyzes hundreds of files in seconds
- 🛠️ **Easy Integration**: Simple CLI interface and pip package

## 🚀 Quick Start

```bash
# Install from PyPI
pip install maintsight

# Run predictions on current directory (generates interactive HTML report)
maintsight predict

# Show only degraded files with threshold
maintsight predict --threshold 0.1

# Generate JSON output
maintsight predict --format json

# Analyze specific repository
maintsight predict /path/to/repo
```

## 📦 Installation

### From PyPI (Recommended)

```bash
pip install maintsight
```

### From Source

```bash
git clone https://github.com/techdebtgpt/maintsight-pip.git
cd maintsight-pip
pip install -r requirements.txt

# Install in development mode
pip install -e .
```

### Development Installation

```bash
pip install -e ".[dev]"
```

## 📖 Usage

### Basic Prediction

```bash
# Analyze current directory (generates HTML report)
maintsight predict

# Analyze specific repository
maintsight predict /path/to/repo

# Generate summary output with threshold
maintsight predict --threshold 0.1
```

### Advanced Options

```bash
# Analyze specific branch
maintsight predict --branch develop

# Limit commit analysis window
maintsight predict --window-size-days 90

# Limit number of commits
maintsight predict --max-commits 5000

# Generate JSON output
maintsight predict --format json

# All options together
maintsight predict /path/to/repo --branch main --window-size-days 150 --max-commits 1000 --format html
```

### Python API Usage

```python
from maintsight import GitCommitCollector, MockPredictor
from maintsight.utils.html_generator import generate_html_report

# Collect git data
collector = GitCommitCollector(repo_path="./", branch="main")
commit_data = collector.fetch_commit_data()

# Generate predictions
predictor = MockPredictor()
predictions = predictor.predict(commit_data)

# Generate HTML report
html_path = generate_html_report(predictions, commit_data, "./")
```

## 📊 Output Formats

### JSON (Default)

```json
[
  {
    "module": "src/legacy/parser.ts",
    "normalized_score": 0.3456,
    "raw_prediction": 0.3456,
    "risk_category": "severely_degraded"
  },
  {
    "module": "src/utils/helpers.ts",
    "normalized_score": -0.1234,
    "raw_prediction": -0.1234,
    "risk_category": "improved"
  }
]
```

### CSV

```csv
module,normalized_score,raw_prediction,risk_category
"src/legacy/parser.ts","0.3456","0.3456","severely_degraded"
"src/utils/helpers.ts","-0.1234","-0.1234","improved"
```

### Markdown Report

Generates a comprehensive report with:

- Degradation distribution summary
- Top 20 most degraded files
- Category breakdown with percentages
- Actionable recommendations

### Interactive HTML Report

Always generated automatically in `.maintsight/` folder with:

- Visual degradation trends
- Interactive file explorer
- Detailed metrics per file
- Commit history analysis

## 🎯 Degradation Categories

| Score Range | Category             | Description                      | Action                     |
| ----------- | -------------------- | -------------------------------- | -------------------------- |
| < 0.0       | 🟢 Improved          | Code quality improving over time | Continue good practices    |
| 0.0-0.1     | 🔵 Stable            | Code quality stable              | Regular maintenance        |
| 0.1-0.2     | 🟡 Degraded          | Code quality declining           | Schedule for refactoring   |
| > 0.2       | 🔴 Severely Degraded | Rapid quality decline            | Immediate attention needed |

## 📚 Command Reference

### `maintsight predict`

Analyze repository and predict maintenance degradation.

```bash
maintsight predict [PATH] [OPTIONS]
```

**Arguments:**

- `PATH` - Repository path (default: current directory)

**Options:**

- `-b, --branch BRANCH` - Git branch to analyze (default: "main")
- `-n, --max-commits N` - Maximum commits to analyze (default: 1000)
- `-w, --window-size-days N` - Time window in days for analysis (default: 150)
- `-f, --format FORMAT` - Output format: json|csv|markdown|html (default: "html")
- `-t, --threshold FLOAT` - Only show files above degradation threshold
- `-o, --output PATH` - Output file path
- `-v, --verbose` - Verbose output
- `-h, --help` - Show help information

### Examples

```bash
# Generate HTML report with default settings
maintsight predict

# Analyze last 90 days on develop branch
maintsight predict --branch develop --window-size-days 90

# Get JSON output for processing
maintsight predict --format json --output results.json

# Show only degraded files
maintsight predict --threshold 0.1
```

## 🧠 Model Information

MaintSight uses an XGBoost model trained on software maintenance degradation patterns. The model predicts how code quality changes over time by analyzing git commit patterns and code evolution metrics.

### Key Features Analyzed

The model considers multiple dimensions of code evolution:

- **Commit patterns**: Frequency, size, and timing of changes
- **Author collaboration**: Number of contributors and collaboration patterns
- **Code churn**: Lines added, removed, and modified over time
- **Change consistency**: Regularity and predictability of modifications
- **Bug indicators**: Patterns suggesting defects or fixes
- **Temporal factors**: File age and time since last modification

### Prediction Output

- **normalized_score**: Numerical score indicating code quality trend
  - Negative values: Quality improving
  - Positive values: Quality degrading
  - Higher magnitude = stronger trend
- **risk_category**: Classification based on degradation severity
- **raw_prediction**: Unprocessed model output

## 🔧 Development

### Prerequisites

- Python >= 3.8
- Git

### Setup

```bash
# Clone repository
git clone https://github.com/techdebtgpt/maintsight-pip.git
cd maintsight-pip

# Install in development mode
pip install -e ".[dev]"

# Or install requirements directly
pip install -r requirements.txt

# Test the CLI
maintsight predict --help

# Run pre-publish validation
python scripts/pre_publish.py
```

### Project Structure

```
maintsight-pip/
├── maintsight/                    # Python package
│   ├── __init__.py
│   ├── cli.py                     # Click-based CLI
│   ├── models/                    # Data models
│   │   ├── __init__.py
│   │   ├── commit_data.py         # CommitData dataclass
│   │   ├── risk_category.py       # RiskCategory enum
│   │   ├── risk_prediction.py     # RiskPrediction dataclass
│   │   ├── file_stats.py          # FileStats dataclass
│   │   ├── xgboost_model.py       # XGBoost model structures
│   │   ├── xgboost_model.pkl.pkl      # Pre-trained model
│   │   └── xgboost_model_metadata.json  # Model metadata
│   ├── services/                  # Core services
│   │   ├── __init__.py
│   │   ├── git_commit_collector.py
│   │   ├── feature_engineer.py
│   │   └── xgboost_predictor.py
│   └── utils/                     # Utilities
│       ├── __init__.py
│       ├── logger.py              # Rich-based logger
│       └── html_generator.py      # HTML report generator
├── tests/                         # pytest tests
│   ├── __init__.py
│   └── test_risk_category.py
├── cli.py                         # Main CLI entry point
├── pyproject.toml                 # Modern Python packaging
├── setup.py                       # Legacy setuptools support
├── requirements.txt               # Runtime dependencies
└── requirements-dev.txt           # Development dependencies
```

## 🧪 Testing

```bash
# Run all tests
pytest

# Run with coverage
pytest --cov=maintsight

# Run specific test file
pytest tests/test_risk_category.py

# Run with verbose output
pytest -v

# Install test dependencies
pip install -e ".[dev]"
```

### Test Coverage Goals

- Services: 80%+
- Utils: 90%+
- CLI: 70%+

## 🚀 Pre-publish Validation

Before publishing to PyPI, run the comprehensive pre-publish validation script:

```bash
# Run all quality checks (tests, formatting, linting, building)
python scripts/pre_publish.py

# This will:
# ✅ Validate package configuration
# ✅ Run all tests
# ✅ Auto-format code with ruff
# ✅ Check linting with ruff
# ✅ Verify type hints with mypy (non-blocking)
# ✅ Build and verify package artifacts
```

The script ensures your code is ready for production by running the same checks as the CI pipeline.

## 🤝 Contributing

We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.

### Quick Start

1. Fork the repository
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
3. Write tests for your changes
4. Ensure all tests pass (`pytest`)
5. Run pre-publish validation (`python scripts/pre_publish.py`)
6. Commit your changes (`git commit -m 'Add amazing feature'`)
7. Push to the branch (`git push origin feature/amazing-feature`)
8. Open a Pull Request

### Code Style

- Use Python 3.8+ features
- Follow PEP 8 style guide
- Use ruff for code formatting and linting
- Use type hints where appropriate
- Write meaningful commit messages
- Add tests for new features
- Update documentation as needed

```bash
# Format and fix code issues
ruff format .
ruff check . --fix

# Type checking
mypy .

# Run pre-publish validation (includes all checks)
python scripts/pre_publish.py
```

## 🐛 Bug Reports

Found a bug? Please [open an issue](https://github.com/techdebtgpt/maintsight-pip/issues/new) with:

- MaintSight version (`maintsight --help`)
- Python version
- Operating system
- Steps to reproduce
- Expected vs actual behavior
- Error messages/stack traces

## 📄 License

This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details.

## 🙏 Acknowledgments

- XGBoost community for the excellent gradient boosting framework
- Git community for robust version control
- All contributors who help improve MaintSight

---

**Made with ❤️ by the TechDebtGPT Team**

[Repository](https://github.com/techdebtgpt/maintsight) | [Documentation](https://github.com/techdebtgpt/maintsight#readme) | [Issues](https://github.com/techdebtgpt/maintsight/issues)
