Metadata-Version: 2.4
Name: qualidoo
Version: 0.5.2
Summary: AI-powered Odoo addon quality analyzer
Project-URL: Homepage, https://qualidoo.com
Project-URL: Repository, https://github.com/aidooit/qualidoo
Author: Qualidoo Team
License-Expression: MIT
License-File: LICENSE
Keywords: addon,analyzer,module,odoo,quality
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
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
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: rich>=13.0.0
Requires-Dist: tomli-w>=1.0.0
Requires-Dist: tomli>=2.0.0; python_version < '3.11'
Requires-Dist: typer>=0.12.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: respx>=0.21.0; extra == 'dev'
Description-Content-Type: text/markdown

<p align="center">
  <img src="qualidoo.png" alt="Qualidoo Logo" width="400">
</p>

<p align="center">
  <strong>AI-powered quality analysis tool for Odoo addons.</strong>
</p>

## Overview

Qualidoo CLI is a command-line tool for analyzing Odoo addon quality. It uploads your addon to https://qualidoo.com for analysis and displays results directly in your terminal.

Features:
- Analyze addons from any directory
- **Scan GitHub repositories** for Odoo addons (requires GitHub connection via web UI)
- View results with detailed findings and recommendations
- Save analysis results as JSON for CI/CD integration
- Progress feedback during analysis
- **Team tier support**: Attribute scans to organizations and teams

## Installation

```bash
pip install qualidoo
```

## Quick Start

```bash
# 1. Configure your API key (get it from https://qualidoo.com/settings)
qualidoo login

# 2. Analyze an addon
cd /path/to/my_addon
qualidoo check

# Or specify a path
qualidoo check /path/to/my_addon
```

## Authentication

The CLI requires an API key from your Qualidoo account. API access is available on PRO, TEAM, and BETA tiers.

### Getting an API Key

1. Visit https://qualidoo.com/settings
2. Generate a new API key (format: `qdoo_xxxxxxxxxxxx`)
3. Run `qualidoo login` and enter your key

### Configuring the API Key

**Option 1: Interactive login (recommended)**

```bash
qualidoo login
```

You'll be prompted to enter your API key securely.

**Option 2: Command-line flag**

```bash
qualidoo login --key qdoo_your_api_key_here
```

**Option 3: Environment variable**

```bash
export QUALIDOO_API_KEY=qdoo_your_api_key_here
qualidoo check
```

The environment variable takes precedence over the stored configuration.

## Commands

### `qualidoo login`

Configure API key for authentication.

```bash
qualidoo login                    # Interactive prompt
qualidoo login --key qdoo_xxx     # Provide key directly
qualidoo login -k qdoo_xxx        # Short form
```

The API key is validated against the server before saving.

### `qualidoo logout`

Remove stored API key.

```bash
qualidoo logout
```

### `qualidoo whoami`

Show current authentication status and user information.

```bash
qualidoo whoami
```

Displays your email, current tier, and API usage information.

### `qualidoo check`

Analyze an Odoo addon for quality issues.

```bash
qualidoo check [PATH] [OPTIONS]
```

**Arguments:**

| Argument | Description |
|----------|-------------|
| `PATH` | Path to the Odoo addon directory (defaults to current directory) |

**Options:**

| Option | Short | Description |
|--------|-------|-------------|
| `--verbose` | `-v` | Show detailed findings with file paths and suggestions |
| `--save FILE` | `-s` | Save full JSON result to file |
| `--timeout SECONDS` | `-t` | Maximum time to wait for analysis (default: 300) |
| `--org TEXT` | `-o` | Organization name/ID to attribute scan to (Team tier) |
| `--team TEXT` |  | Team name/ID within the organization (Team tier) |

**Examples:**

```bash
# Analyze current directory
qualidoo check

# Analyze specific addon
qualidoo check /path/to/sale_extension

# Show detailed output
qualidoo check --verbose

# Save results for CI/CD
qualidoo check --save result.json

# Attribute scan to a team (Team tier)
qualidoo check --org AidooIT --team "Backend Team"

# Combine options
qualidoo check /path/to/addon -v -s analysis.json -t 600
```

**Output:**

The check command displays:
- Overall score (0-100) and grade
- Summary of findings by severity (CRITICAL, MAJOR, MINOR, INFO)
- Per-agent scores
- Top recommendations

With `--verbose`, it also shows:
- Each finding with file path and line number
- Detailed descriptions
- Improvement suggestions

### `qualidoo config`

View current configuration.

```bash
qualidoo config
qualidoo config --show    # Explicit show flag
qualidoo config -s        # Short form
```

Displays the configuration file path and current settings (API key is masked).

### `qualidoo integrations`

Show connected integrations (GitHub, etc.).

```bash
qualidoo integrations
```

Displays the status of your connected integrations. GitHub must be connected via the web UI at https://qualidoo.com/settings Integrations tab before using `qualidoo repo` commands.

### `qualidoo repo check`

Analyze Odoo addons directly from a GitHub repository.

```bash
qualidoo repo check <REPO> [OPTIONS]
```

**Arguments:**

| Argument | Description |
|----------|-------------|
| `REPO` | GitHub repository (owner/repo format or full URL) |

**Options:**

| Option | Short | Description |
|--------|-------|-------------|
| `--branch TEXT` | `-b` | Branch to analyze (defaults to repository default) |
| `--addon TEXT` | `-a` | Analyze only this specific addon |
| `--verbose` | `-v` | Show detailed output |
| `--save FILE` | `-s` | Save results to JSON file |
| `--timeout SECONDS` | `-t` | Maximum time to wait for analysis (default: 600) |
| `--org TEXT` | `-o` | Organization name/ID to attribute scans to (Team tier) |
| `--team TEXT` |  | Team name/ID within the organization (Team tier) |

**Examples:**

```bash
# Analyze all addons in a repository
qualidoo repo check oca/account-financial-tools

# Analyze a specific branch
qualidoo repo check oca/account-financial-tools --branch 16.0

# Analyze using full GitHub URL
qualidoo repo check https://github.com/owner/repo

# Analyze a single addon
qualidoo repo check owner/repo --addon account_invoice_validation

# Save results for CI/CD
qualidoo repo check owner/repo --save results.json

# Attribute scans to a team (Team tier)
qualidoo repo check owner/repo --team "Backend Team"

# Combine options
qualidoo repo check oca/account-financial-tools -b 16.0 -v -s analysis.json
```

**Prerequisites:**

Before using `qualidoo repo check`, you must connect your GitHub account:

1. Visit https://qualidoo.com/settings `Integrations` Tab
2. Click "Connect GitHub"
3. Authorize Qualidoo to access your repositories
4. Verify connection with `qualidoo integrations`

**Output:**

The command displays:
- Discovery progress (finding addons in the repository)
- Analysis progress with a progress bar
- Results table showing each addon's score, grade, and issue counts
- Summary statistics (average score, score range)

**Supported Repository Formats:**

| Format | Example |
|--------|---------|
| owner/repo | `oca/account-financial-tools` |
| HTTPS URL | `https://github.com/oca/account-financial-tools` |
| HTTPS with .git | `https://github.com/oca/account-financial-tools.git` |
| SSH URL | `git@github.com:oca/account-financial-tools.git` |

## Team Tier Commands

These commands are available for users with Team tier subscriptions. They allow you to manage organization/team context and view team-specific analytics.

### `qualidoo org list`

List all organizations you're a member of, with their teams.

```bash
qualidoo org list
```

**Output:**

```
Organizations:
  AidooIT (org_abc123)
  |-- Backend Team (team_def456) <- current
  |-- Frontend Team (team_ghi789)
  `-- DevOps (team_jkl012)

  ClientCorp (org_mno345)
  `-- Odoo Modules (team_pqr678)
```

### `qualidoo org use`

Set the default organization and team for scans.

```bash
qualidoo org use <ORG> [OPTIONS]
```

**Options:**

| Option | Short | Description |
|--------|-------|-------------|
| `--team TEXT` | `-t` | Team name or ID within the organization |

**Examples:**

```bash
# Set default organization (no team)
qualidoo org use AidooIT

# Set organization and team
qualidoo org use AidooIT --team "Backend Team"
qualidoo org use AidooIT -t "Backend Team"
```

Once set, all scans will be attributed to this context until you change or clear it.

### `qualidoo org current`

Show the current organization/team context.

```bash
qualidoo org current
```

### `qualidoo org clear`

Clear the organization/team context. After clearing, scans will go to your personal history.

```bash
qualidoo org clear
```

## Configuration

### Config File Location

Configuration is stored in:

```
~/.qualidoo/config.toml
```

The file is created with secure permissions (readable only by owner).

### Configuration Format

```toml
api_key = "qdoo_your_api_key_here"
```

### Environment Variables

| Variable | Description |
|----------|-------------|
| `QUALIDOO_API_KEY` | API key (overrides config file) |
| `QUALIDOO_API_URL` | API URL (default: https://qualidoo.com) |

## CI/CD Integration

Use the CLI in your CI/CD pipeline to enforce quality standards:

```yaml
# GitHub Actions example
- name: Install Qualidoo CLI
  run: pip install qualidoo

- name: Analyze addon
  env:
    QUALIDOO_API_KEY: ${{ secrets.QUALIDOO_API_KEY }}
  run: |
    qualidoo check ./my_addon --save result.json
    # Parse result.json and fail if score < threshold
```

## Error Handling

### Common Errors

| Error | Cause | Solution |
|-------|-------|----------|
| "Not logged in" | No API key configured | Run `qualidoo login` |
| "Invalid API key" | Key is incorrect or expired | Get a new key from settings page |
| "Authentication failed" | API key no longer valid | Run `qualidoo login` to reconfigure |
| "Rate limit exceeded" | Too many API requests | Wait and try again later |
| "Not a valid Odoo addon" | Missing `__manifest__.py` | Ensure path points to valid addon |
| "Analysis timed out" | Server processing took too long | Increase `--timeout` or try again |
| "GitHub not connected" | No GitHub integration | Connect at https://qualidoo.com/settings Integrations tab |
| "Repository not found" | Invalid repo or no access | Check repo name and GitHub permissions |
| "No Odoo addons found" | Repo has no `__manifest__.py` files | Ensure repo contains Odoo addons |
| "Addon not found in repository" | Specified addon doesn't exist | Check addon name with `--verbose` |

### Exit Codes

| Code | Meaning |
|------|---------|
| 0 | Success |
| 1 | Error (authentication, API, or validation failure) |

## Requirements

- Python 3.10+
- PRO, TEAM, or BETA tier for API access (FREE tier has no API access)

## Development

### Setting Up the Development Environment

Clone the repository and install with development dependencies:

```bash
git clone https://github.com/aidooit/qualidoo.git
cd qualidoo-cli
pip install -e ".[dev]"
```

### Running Tests

The test suite uses pytest with respx for HTTP mocking. To run all tests:

```bash
# Run all tests with verbose output
pytest -v

# Run tests for a specific module
pytest tests/test_config.py -v
pytest tests/test_api_client.py -v
pytest tests/test_output.py -v
pytest tests/test_cli.py -v

# Run a specific test class
pytest tests/test_cli.py::TestCheckCommand -v

# Run a specific test
pytest tests/test_config.py::TestValidateApiKeyFormat::test_valid_key -v

# Run tests with coverage (requires pytest-cov)
pytest --cov=qualidoo --cov-report=term-missing
```

### Test Structure

```
tests/
├── __init__.py
├── conftest.py           # Shared fixtures (mock data, temp directories)
├── test_config.py        # Configuration module tests (~22 tests)
├── test_api_client.py    # API client tests (~34 tests)
├── test_output.py        # Output formatting tests (~25 tests)
├── test_cli.py           # CLI command tests (~21 tests)
├── test_github.py        # GitHub URL parsing tests (~14 tests)
└── test_org_commands.py  # Organization commands tests
```

### Test Coverage

The test suite covers:

- **Configuration** (`test_config.py`): API key validation, config file operations, environment variable handling
- **API Client** (`test_api_client.py`): HTTP requests, error handling, file uploads, job polling, GitHub repo scanning
- **Output** (`test_output.py`): Grade calculations, terminal formatting, progress callbacks
- **CLI** (`test_cli.py`): All commands (login, logout, whoami, check, config) with various scenarios
- **GitHub** (`test_github.py`): Repository URL parsing for various formats

### Dev Dependencies

| Package | Purpose |
|---------|---------|
| `pytest>=8.0.0` | Test framework |
| `respx>=0.21.0` | HTTP mocking for httpx |

## License

MIT License
