workspace-v1/projects/erp-construccion/orchestration
rckrdmrd 66161b1566 feat: Workspace-v1 complete migration with NEXUS v3.4
Sistema NEXUS v3.4 migrado con:

Estructura principal:
- core/orchestration: Sistema SIMCO + CAPVED (27 directivas, 28 perfiles)
- core/catalog: Catalogo de funcionalidades reutilizables
- shared/knowledge-base: Base de conocimiento compartida
- devtools/scripts: Herramientas de desarrollo
- control-plane/registries: Control de servicios y CI/CD
- orchestration/: Configuracion de orquestacion de agentes

Proyectos incluidos (11):
- gamilit (submodule -> GitHub)
- trading-platform (OrbiquanTIA)
- erp-suite con 5 verticales:
  - erp-core, construccion, vidrio-templado
  - mecanicas-diesel, retail, clinicas
- betting-analytics
- inmobiliaria-analytics
- platform_marketing_content
- pos-micro, erp-basico

Configuracion:
- .gitignore completo para Node.js/Python/Docker
- gamilit como submodule (git@github.com:rckrdmrd/gamilit-workspace.git)
- Sistema de puertos estandarizado (3005-3199)

Generated with NEXUS v3.4 Migration System
EPIC-010: Configuracion Git y Repositorios
2026-01-04 03:37:42 -06:00
..
00-guidelines feat: Workspace-v1 complete migration with NEXUS v3.4 2026-01-04 03:37:42 -06:00
analisis feat: Workspace-v1 complete migration with NEXUS v3.4 2026-01-04 03:37:42 -06:00
directivas feat: Workspace-v1 complete migration with NEXUS v3.4 2026-01-04 03:37:42 -06:00
environment feat: Workspace-v1 complete migration with NEXUS v3.4 2026-01-04 03:37:42 -06:00
estados feat: Workspace-v1 complete migration with NEXUS v3.4 2026-01-04 03:37:42 -06:00
inventarios feat: Workspace-v1 complete migration with NEXUS v3.4 2026-01-04 03:37:42 -06:00
prompts feat: Workspace-v1 complete migration with NEXUS v3.4 2026-01-04 03:37:42 -06:00
referencias feat: Workspace-v1 complete migration with NEXUS v3.4 2026-01-04 03:37:42 -06:00
trazas feat: Workspace-v1 complete migration with NEXUS v3.4 2026-01-04 03:37:42 -06:00
NAMING-CONVENTIONS.md feat: Workspace-v1 complete migration with NEXUS v3.4 2026-01-04 03:37:42 -06:00
PROXIMA-ACCION.md feat: Workspace-v1 complete migration with NEXUS v3.4 2026-01-04 03:37:42 -06:00
README.md feat: Workspace-v1 complete migration with NEXUS v3.4 2026-01-04 03:37:42 -06:00

Sistema de Orquestación - ERP Construcción (Vertical)

Descripción

Sistema de orquestación de agentes NEXUS para el proyecto ERP Construcción. Este proyecto extiende erp-core y tiene documentación específica para 15 módulos MAI-* y 3 épicas MAE-*.

Estructura de Directorios

orchestration/
├── 00-guidelines/              # Contexto y directivas
│   ├── CONTEXTO-PROYECTO.md   # Configuración del proyecto
│   └── HERENCIA-DIRECTIVAS.md # Mapeo de directivas heredadas
│
├── 01-analisis/               # Fase 1: Análisis
├── 02-planeacion/             # Fase 2: Planeación
├── 03-tareas/                 # Descomposición de work
├── 04-ejecucion-logs/         # Fase 4: Logs
├── 05-validaciones/           # Validaciones (pre/durante/post)
│   ├── pre/
│   ├── durante/
│   └── post/
├── 06-subagentes/             # Gestión de subagentes
│
├── agentes/                   # Ejecuciones por agente
├── directivas/                # Directivas específicas de construcción
├── estados/                   # Estado de agentes
├── inventarios/               # Inventarios YAML
├── prompts/                   # Prompts específicos
├── reportes/                  # Reportes de ciclos
├── templates/                 # Templates
├── trazas/                    # Historial de tareas
│
├── PROXIMA-ACCION.md          # Siguiente tarea
└── README.md                  # Este archivo

Herencia de Directivas

Este proyecto hereda directivas en orden:

  1. Globales: /home/isem/workspace/core/orchestration/directivas/
  2. ERP-Suite: /home/isem/workspace/projects/erp-suite/orchestration/directivas/
  3. ERP-Core: ../../../erp-core/orchestration/directivas/
  4. Construcción: ./directivas/

Documentación Disponible

Este proyecto cuenta con 403+ archivos de documentación técnica:

/docs/
├── 01-fase-alcance-inicial/    # 15 módulos MAI-*
│   ├── MAI-001-fundamentos/
│   ├── MAI-002-proyectos/
│   ├── ...
│   └── MAI-013-administracion/
├── 02-fase-enterprise/         # 3 épicas MAE-*
│   ├── MAE-014-finanzas/
│   ├── MAE-015-activos/
│   └── MAE-016-dms/
├── 02-modelado/
│   └── database-design/schemas/  # 11 archivos SQL
└── 03-fase-avanzada/           # MAA-017 HSE

Uso Rápido

# Ver siguiente tarea
cat PROXIMA-ACCION.md

# Ver contexto
cat 00-guidelines/CONTEXTO-PROYECTO.md

# Ver directivas heredadas
cat 00-guidelines/HERENCIA-DIRECTIVAS.md

# Ver módulos disponibles
ls ../docs/01-fase-alcance-inicial/

# Ver schemas SQL
ls ../docs/02-modelado/database-design/schemas/

Flujo de 5 Fases

Toda tarea debe seguir:

  1. Análisis → 01-analisis/
  2. Planeación → 02-planeacion/
  3. Validación → 05-validaciones/pre/
  4. Ejecución → 04-ejecucion-logs/
  5. Cierre → 05-validaciones/post/

Referencias


Sistema NEXUS - ERP Construcción (Vertical)