Metadata-Version: 2.4
Name: codepilotx
Version: 0.2.0
Summary: Local AI coding copilot CLI - runs on your own hardware
Author: CodePilotX
License: MIT
Project-URL: Homepage, https://github.com/fooxygg/CodePilotX
Keywords: ai,copilot,cli,coding,ollama,local-ai
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Classifier: Topic :: Software Development
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27
Requires-Dist: typer>=0.12
Requires-Dist: rich>=13
Requires-Dist: websockets>=12
Requires-Dist: fastapi>=0.111
Requires-Dist: uvicorn>=0.30
Requires-Dist: python-dotenv>=1.0

# CodePilotX

Local AI Coding Copilot - corre en tu propio hardware, usalo desde cualquier lugar.

## Instalacion rapida

**Linux / Ubuntu (VPS):**
```bash
curl -fsSL https://raw.githubusercontent.com/fooxygg/CodePilotX/main/scripts/install.sh | bash
```

**Windows PowerShell:**
```powershell
irm https://raw.githubusercontent.com/fooxygg/CodePilotX/main/scripts/install.ps1 | iex
```

**Windows CMD:**
```cmd
curl -fsSL https://raw.githubusercontent.com/fooxygg/CodePilotX/main/scripts/install.cmd -o install.cmd && install.cmd && del install.cmd
```

**O directo con pip:**
```bash
pip install codepilotx
```

## Uso

```bash
cpx                          # chat interactivo
cpx ask "explica este error" # pregunta rapida
cpx serve --port 4444        # inicia servidor en tu PC
cpx config server <url>      # conectar a servidor remoto
cpx config api-key <clave>   # proteger con API key
cpx status                   # ver estado de conexion
```

## Arquitectura

```
VPS / cualquier maquina          TU PC (GPU local)
┌─────────────────────┐          ┌─────────────────────┐
│  pip install        │  HTTP →  │  cpx serve          │
│  codepilotx         │          │  Ollama + modelo    │
│  cpx chat           │          │  puerto 4444        │
└─────────────────────┘          └─────────────────────┘
```

El modelo corre 100% en tu hardware. Sin costos, sin restricciones, sin privacidad comprometida.

## Requisitos (servidor / tu PC)

- Python 3.9+
- [Ollama](https://ollama.com)
- Modelo: `ollama pull qwen2.5-coder:7b`

## Licencia

MIT
