[ESTANDAR-ORCHESTRATION] refactor: Consolidate to standard structure
Some checks are pending
Build / Build Backend (push) Waiting to run
Build / Build Docker Image (push) Blocked by required conditions
Build / Build Mobile (TypeScript Check) (push) Waiting to run
Lint / Lint Backend (push) Waiting to run
Lint / Lint Mobile (push) Waiting to run
Test / Backend E2E Tests (push) Waiting to run
Test / Mobile Unit Tests (push) Waiting to run
Some checks are pending
Build / Build Backend (push) Waiting to run
Build / Build Docker Image (push) Blocked by required conditions
Build / Build Mobile (TypeScript Check) (push) Waiting to run
Lint / Lint Backend (push) Waiting to run
Lint / Lint Mobile (push) Waiting to run
Test / Backend E2E Tests (push) Waiting to run
Test / Mobile Unit Tests (push) Waiting to run
- Move 5 non-standard folders to _archive/ - Archive 2 extra root files - Update _MAP.md with standardized structure Standard: SIMCO-ESTANDAR-ORCHESTRATION v1.0.0 Level: CONSUMER (L2) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
5e5f2f9578
commit
e101c7b94c
2
backend
2
backend
@ -1 +1 @@
|
||||
Subproject commit 383f6af06723c36ebfb37ed646ece029a88a7648
|
||||
Subproject commit aa708e667db1a5d7de33a994152282234281c556
|
||||
2
database
2
database
@ -1 +1 @@
|
||||
Subproject commit 8406ea9fddaabe246b92af200e871cad765e7016
|
||||
Subproject commit 6c2db1f4c102de69925b19c3d71efe4562cf4aff
|
||||
@ -1,18 +1,19 @@
|
||||
# _MAP.md - MiInventario Orchestration
|
||||
|
||||
**Sistema:** SIMCO v4.3.0 + NEXUS v4.0
|
||||
**Estandar:** SIMCO-ESTANDAR-ORCHESTRATION v1.0.0
|
||||
**Proyecto:** MiInventario
|
||||
**Tipo:** STANDALONE
|
||||
**Nivel:** CONSUMER (L2)
|
||||
**Fecha:** 2026-01-24
|
||||
|
||||
---
|
||||
|
||||
## Estructura de Navegacion
|
||||
## Estructura Estandarizada (CONSUMER L2)
|
||||
|
||||
```
|
||||
orchestration/
|
||||
├── _MAP.md <- ESTE ARCHIVO (mapa de navegacion)
|
||||
├── _inheritance.yml <- Declaracion de herencia (STANDALONE)
|
||||
├── _inheritance.yml <- Declaracion de herencia
|
||||
├── BOOTLOADER.md <- Protocolo de arranque
|
||||
├── CONTEXT-MAP.yml <- Mapa central de contexto
|
||||
├── PROJECT-PROFILE.yml <- Perfil y metadata
|
||||
@ -21,82 +22,84 @@ orchestration/
|
||||
├── DEPENDENCY-GRAPH.yml <- Grafo de dependencias
|
||||
├── TRACEABILITY.yml <- Trazabilidad del proyecto
|
||||
├── MAPA-DOCUMENTACION.yml <- Mapa de documentacion
|
||||
├── PLAN-IMPLEMENTACION.md <- Plan de implementacion
|
||||
├── README.md <- Descripcion general
|
||||
│
|
||||
├── _refs/ <- Referencias externas
|
||||
│ └── WS-REFERENCES.yml <- Referencias al workspace
|
||||
│
|
||||
├── 00-guidelines/ <- Guias del proyecto
|
||||
│ ├── CONTEXTO-PROYECTO.md <- Contexto general
|
||||
│ └── HERENCIA-SIMCO.md <- Como hereda de SIMCO
|
||||
│
|
||||
├── 90-transversal/ <- Configuraciones transversales
|
||||
│ └── PRODUCTION-CONFIG.md <- Configuracion de produccion
|
||||
│
|
||||
├── agents/ <- Configuracion de agentes
|
||||
│ ├── README.md
|
||||
│ ├── perfiles/ <- Perfiles especializados
|
||||
│ │ ├── PERFIL-BACKEND-AGENT.md
|
||||
│ │ ├── PERFIL-DDL-AGENT.md
|
||||
│ │ └── PERFIL-MOBILE-AGENT.md
|
||||
│ └── trazas/
|
||||
│ └── _INDEX.yml
|
||||
│
|
||||
├── analisis/ <- Analisis realizados
|
||||
│ ├── ANALISIS-BRECHAS-*.md
|
||||
│ ├── ANALISIS-DEPENDENCIAS-*.md
|
||||
│ ├── PLAN-*.md
|
||||
│ └── VALIDACION-*.md
|
||||
│
|
||||
├── directivas/ <- Directivas locales
|
||||
├── directivas/ <- Directivas locales (opcional)
|
||||
│ ├── README.md
|
||||
│ └── proyecto-triggers/
|
||||
│ ├── TRIGGER-COHERENCIA-CAPAS.md
|
||||
│ └── TRIGGER-INVENTARIOS.md
|
||||
│
|
||||
├── environment/ <- Configuracion de ambiente
|
||||
│ └── ENVIRONMENT-INVENTORY.yml
|
||||
│
|
||||
├── inventarios/ <- Inventarios del proyecto
|
||||
│ ├── MASTER_INVENTORY.yml <- Inventario maestro
|
||||
│ ├── DATABASE_INVENTORY.yml <- Tablas DDL
|
||||
│ ├── BACKEND_INVENTORY.yml <- Entities/Services
|
||||
│ └── FRONTEND_INVENTORY.yml <- Componentes mobile
|
||||
│
|
||||
└── trazas/ <- Trazas de ejecucion
|
||||
├── TRAZA-TAREAS-BACKEND.md
|
||||
├── TRAZA-TAREAS-DATABASE.md
|
||||
└── TRAZA-TAREAS-MOBILE.md
|
||||
├── trazas/ <- Trazas de ejecucion
|
||||
│ ├── TRAZA-TAREAS-BACKEND.md
|
||||
│ ├── TRAZA-TAREAS-DATABASE.md
|
||||
│ └── TRAZA-TAREAS-MOBILE.md
|
||||
│
|
||||
└── _archive/ <- Material archivado
|
||||
├── root-files/ <- Archivos root no estandar
|
||||
│ ├── PLAN-IMPLEMENTACION.md
|
||||
│ └── README.md
|
||||
├── _refs/ <- Referencias externas
|
||||
│ └── WS-REFERENCES.yml
|
||||
├── 90-transversal/ <- Configuraciones transversales
|
||||
│ └── PRODUCTION-CONFIG.md
|
||||
├── agents/ <- Configuracion de agentes
|
||||
│ ├── README.md
|
||||
│ ├── perfiles/
|
||||
│ └── trazas/
|
||||
├── analisis/ <- Analisis realizados
|
||||
│ ├── ANALISIS-*.md
|
||||
│ ├── PLAN-*.md
|
||||
│ └── VALIDACION-*.md
|
||||
└── environment/ <- Configuracion de ambiente
|
||||
└── ENVIRONMENT-INVENTORY.yml
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Archivos por Proposito
|
||||
## Archivos Obligatorios (10 root)
|
||||
|
||||
### Arranque y Contexto
|
||||
| Archivo | Proposito |
|
||||
|---------|-----------|
|
||||
| BOOTLOADER.md | Protocolo de arranque (5 pasos) |
|
||||
| CONTEXT-MAP.yml | Variables, rutas, aliases |
|
||||
| PROJECT-PROFILE.yml | Metadata y stack tecnologico |
|
||||
| _inheritance.yml | Declaracion STANDALONE |
|
||||
| # | Archivo | Estado | Proposito |
|
||||
|---|---------|--------|-----------|
|
||||
| 1 | _MAP.md | OK | Mapa de navegacion |
|
||||
| 2 | _inheritance.yml | OK | Declaracion de herencia |
|
||||
| 3 | BOOTLOADER.md | OK | Protocolo de arranque |
|
||||
| 4 | CONTEXT-MAP.yml | OK | Variables, rutas, aliases |
|
||||
| 5 | PROJECT-PROFILE.yml | OK | Metadata y stack tecnologico |
|
||||
| 6 | PROJECT-STATUS.md | OK | Estado detallado del proyecto |
|
||||
| 7 | PROXIMA-ACCION.md | OK | Checkpoint de sesion |
|
||||
| 8 | DEPENDENCY-GRAPH.yml | OK | Dependencias internas/externas |
|
||||
| 9 | TRACEABILITY.yml | OK | Historial de cambios |
|
||||
| 10 | MAPA-DOCUMENTACION.yml | OK | Mapa de documentacion |
|
||||
|
||||
### Estado y Seguimiento
|
||||
| Archivo | Proposito |
|
||||
|---------|-----------|
|
||||
| PROJECT-STATUS.md | Estado detallado del proyecto |
|
||||
| PROXIMA-ACCION.md | Checkpoint para siguiente sesion |
|
||||
| PLAN-IMPLEMENTACION.md | Plan de desarrollo |
|
||||
## Carpetas Obligatorias (3 + archive)
|
||||
|
||||
### Trazabilidad
|
||||
| Archivo | Proposito |
|
||||
|---------|-----------|
|
||||
| DEPENDENCY-GRAPH.yml | Dependencias internas/externas |
|
||||
| TRACEABILITY.yml | Historial de cambios |
|
||||
| trazas/*.md | Trazas por dominio |
|
||||
| Carpeta | Estado | Contenido |
|
||||
|---------|--------|-----------|
|
||||
| 00-guidelines/ | OK | Guias del proyecto |
|
||||
| inventarios/ | OK | Inventarios por dominio |
|
||||
| trazas/ | OK | Trazas de ejecucion |
|
||||
| _archive/ | OK | Material archivado |
|
||||
|
||||
## Carpeta Opcional
|
||||
|
||||
| Carpeta | Estado | Contenido |
|
||||
|---------|--------|-----------|
|
||||
| directivas/ | OK | Triggers locales del proyecto |
|
||||
|
||||
---
|
||||
|
||||
## Inventarios
|
||||
|
||||
### Inventarios
|
||||
| Archivo | Proposito |
|
||||
|---------|-----------|
|
||||
| MASTER_INVENTORY.yml | Totales consolidados |
|
||||
@ -135,6 +138,10 @@ orchestration/
|
||||
2. Actualizar inventario correspondiente
|
||||
3. Registrar en `TRACEABILITY.yml`
|
||||
|
||||
### Recuperar Material Archivado
|
||||
- Ver `_archive/` para material no estandar
|
||||
- Incluye: analisis, perfiles de agentes, configuraciones
|
||||
|
||||
---
|
||||
|
||||
*_MAP.md MiInventario v1.0.0 - Sistema SIMCO v4.3.0*
|
||||
*_MAP.md MiInventario v1.1.0 - SIMCO-ESTANDAR-ORCHESTRATION v1.0.0*
|
||||
|
||||
Loading…
Reference in New Issue
Block a user