erp-transportistas-v2/.claude/README.md
Adrian Flores Cortes 37ed0aa919 feat: Initial project structure for ERP Transportistas
Vertical ERP for freight transport and logistics companies.

Includes:
- Project configuration (CLAUDE.md, SIMCO orchestration)
- Backend submodule (NestJS 10.x)
- Frontend submodule (React 18.x + Vite)
- Database submodule (PostgreSQL 15 + PostGIS)
- Requirements documentation (REQ-GIRO-TRANSPORTISTA.md)
- 20 modules defined (MAI/MAE/MAA phases)

Key features:
- Transport orders (OT) management
- Fleet and driver management
- Real-time GPS tracking
- POD (Proof of Delivery)
- CFDI with Carta Porte 3.1 compliance
- Fuel and maintenance control
- Third-party carrier management

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-25 09:53:54 -06:00

62 lines
1.7 KiB
Markdown

# Configuracion Claude Code - ERP Transportistas
Este directorio contiene la configuracion local de Claude Code para el proyecto ERP Transportistas.
## Estructura
```
.claude/
├── agents/ # Perfiles de agentes locales
│ └── _MAP.md # Indice de agentes
├── constants/ # Constantes del proyecto
│ └── CONSTANTS-PROJECT.yml # SSOT del proyecto
├── directivas/ # Directivas locales
│ ├── _MAP.md # Indice de directivas
│ └── DIRECTIVAS-LOCALES.md
└── referencias/ # Referencias y paths
└── PATHS-TRABAJO.md
```
## Sistema de Herencia
Este proyecto hereda de:
1. `workspace-v2/CLAUDE.md` - Directivas globales SIMCO
2. `erp-core/CLAUDE.md` - Directivas ERP base
Las directivas locales en este directorio **extienden** (no reemplazan) las directivas heredadas.
## Aliases Principales
- `@BACKEND` - backend/src/
- `@FRONTEND` - frontend/src/
- `@DDL` - database/ddl/
- `@DOCS` - docs/
- `@CONSTANTS` - .claude/constants/CONSTANTS-PROJECT.yml
- `@REQS` - docs/03-requerimientos/REQ-GIRO-TRANSPORTISTA.md
## Contexto del Giro
Este es un ERP vertical para **empresas de transporte de carga**. Los modulos especificos del giro incluyen:
- Ordenes de Transporte (OT)
- Tracking GPS en tiempo real
- POD (Proof of Delivery)
- CFDI con Carta Porte 3.1
- Control de flota y operadores
- Combustible y mantenimiento
## Antes de Implementar
1. Verificar si la funcionalidad ya existe en erp-core
2. Consultar REQ-GIRO-TRANSPORTISTA.md
3. Verificar coherencia DDL <-> Entity
4. Seguir nomenclatura MAI/MAE/MAA
## Validaciones
```bash
npm run build # Backend
npm run lint # Linting
npm run test # Tests
```