[ESTANDAR-ORCHESTRATION] refactor: Consolidate to standard structure
- Move 6 non-standard folders to _archive/ - Maintain directivas/ (has local content) - Update _MAP.md with standardized structure Standard: SIMCO-ESTANDAR-ORCHESTRATION v1.0.0 Level: SUB-CONSUMER Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
caa623cbdb
commit
8407ab1763
2
backend
2
backend
@ -1 +1 @@
|
|||||||
Subproject commit eb23d86519632ca955563393dcbee0446fe5b537
|
Subproject commit 5169565752ff93989b76bf56e52a856cb7b6738e
|
||||||
2
database
2
database
@ -1 +1 @@
|
|||||||
Subproject commit 0330700dd9ebee0204f14fe713887d6bb3a6642b
|
Subproject commit 3fb40d599cc59cc265033d2e13fcb1b2d5847bbd
|
||||||
2
frontend
2
frontend
@ -1 +1 @@
|
|||||||
Subproject commit df812e8bbcc298393f4d9f7c95c7e4e0f5de24c4
|
Subproject commit 9c27ad9c2e6ca97a55e7336105d0656bd4dd9c1f
|
||||||
@ -1,48 +1,131 @@
|
|||||||
# MAPA DE ORQUESTACION: clinica-dental
|
# MAPA DE ORQUESTACION: clinica-dental
|
||||||
|
|
||||||
**Proyecto:** clinica-dental
|
**Proyecto:** clinica-dental
|
||||||
**Nivel:** NIVEL_2B.2
|
**Nivel:** SUB-CONSUMER (hereda de erp-clinicas)
|
||||||
**Sistema:** NEXUS v4.0 + SIMCO + SAAD
|
**Sistema:** NEXUS v4.0 + SIMCO + SAAD
|
||||||
**Ultima actualizacion:** 2026-01-10
|
**Estandar:** SIMCO-ESTANDAR-ORCHESTRATION v1.0.0
|
||||||
|
**Ultima actualizacion:** 2026-01-24
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Estructura
|
## Estructura Estandarizada
|
||||||
|
|
||||||
```
|
```
|
||||||
orchestration/
|
orchestration/
|
||||||
├── 00-guidelines/
|
├── _MAP.md # [OBLIGATORIO] Mapa de navegacion
|
||||||
│ └── CONTEXTO-PROYECTO.md
|
├── _inheritance.yml # [OBLIGATORIO] Herencia de erp-clinicas
|
||||||
├── environment/
|
├── BOOTLOADER.md # [OBLIGATORIO] Protocolo de arranque
|
||||||
├── inventarios/
|
├── CONTEXT-MAP.yml # [OBLIGATORIO] Mapa de contexto NEXUS
|
||||||
├── trazas/
|
├── PROJECT-PROFILE.yml # [OBLIGATORIO] Perfil del proyecto
|
||||||
├── CONTEXT-MAP.yml
|
├── PROJECT-STATUS.md # [OBLIGATORIO] Estado actual
|
||||||
├── PROJECT-STATUS.md
|
├── PROXIMA-ACCION.md # [OBLIGATORIO] Checkpoint de sesion
|
||||||
├── PROXIMA-ACCION.md
|
├── DEPENDENCY-GRAPH.yml # [OBLIGATORIO] Grafo de dependencias
|
||||||
└── _MAP.md
|
├── TRACEABILITY.yml # [OBLIGATORIO] Trazabilidad
|
||||||
|
├── MAPA-DOCUMENTACION.yml # [OBLIGATORIO] Mapa de documentacion
|
||||||
|
│
|
||||||
|
├── 00-guidelines/ # [OBLIGATORIO] Guias y contexto
|
||||||
|
│ ├── CONTEXTO-PROYECTO.md
|
||||||
|
│ ├── HERENCIA-ERP-CLINICAS.md
|
||||||
|
│ ├── HERENCIA-ERP-CORE.md
|
||||||
|
│ └── HERENCIA-SIMCO.md
|
||||||
|
│
|
||||||
|
├── inventarios/ # [OBLIGATORIO] Inventarios
|
||||||
|
│ ├── MASTER_INVENTORY.yml
|
||||||
|
│ ├── DATABASE_INVENTORY.yml
|
||||||
|
│ ├── BACKEND_INVENTORY.yml
|
||||||
|
│ └── FRONTEND_INVENTORY.yml
|
||||||
|
│
|
||||||
|
├── trazas/ # [OBLIGATORIO] Trazas de operaciones
|
||||||
|
│ ├── REPORTE-EJECUCION-*.md
|
||||||
|
│ └── TRAZA-TAREAS-DATABASE.md
|
||||||
|
│
|
||||||
|
├── directivas/ # [OPCIONAL] Directivas especificas locales
|
||||||
|
│ ├── checklists/
|
||||||
|
│ ├── principios/
|
||||||
|
│ ├── simco/
|
||||||
|
│ └── triggers/
|
||||||
|
│
|
||||||
|
└── _archive/ # Carpetas archivadas (no estandar)
|
||||||
|
├── _definitions/
|
||||||
|
├── _refs/
|
||||||
|
├── agents/
|
||||||
|
├── environment/
|
||||||
|
├── referencias/
|
||||||
|
└── tareas/
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Archivos Obligatorios (10/10)
|
||||||
|
|
||||||
|
| Archivo | Proposito | Estado |
|
||||||
|
|---------|-----------|--------|
|
||||||
|
| _MAP.md | Mapa de navegacion | OK |
|
||||||
|
| _inheritance.yml | Herencia de erp-clinicas | OK |
|
||||||
|
| BOOTLOADER.md | Protocolo de arranque NEXUS | OK |
|
||||||
|
| CONTEXT-MAP.yml | Configuracion de contexto | OK |
|
||||||
|
| PROJECT-PROFILE.yml | Perfil y metadata | OK |
|
||||||
|
| PROJECT-STATUS.md | Estado actual del proyecto | OK |
|
||||||
|
| PROXIMA-ACCION.md | Checkpoint de sesion | OK |
|
||||||
|
| DEPENDENCY-GRAPH.yml | Grafo de dependencias | OK |
|
||||||
|
| TRACEABILITY.yml | Trazabilidad del proyecto | OK |
|
||||||
|
| MAPA-DOCUMENTACION.yml | Mapa de documentacion | OK |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Carpetas Obligatorias (3/3)
|
||||||
|
|
||||||
|
| Carpeta | Contenido Minimo | Estado |
|
||||||
|
|---------|------------------|--------|
|
||||||
|
| 00-guidelines/ | CONTEXTO-PROYECTO.md | OK |
|
||||||
|
| inventarios/ | MASTER_INVENTORY.yml | OK |
|
||||||
|
| trazas/ | Trazas por capa | OK |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## Navegacion
|
## Navegacion
|
||||||
|
|
||||||
| Destino | Enlace |
|
| Destino | Enlace |
|
||||||
|---------|--------|
|
|---------|--------|
|
||||||
| Documentacion | [../docs/_MAP.md](../docs/_MAP.md) |
|
| Documentacion Proyecto | [../docs/_MAP.md](../docs/_MAP.md) |
|
||||||
| Orchestration Central | [../../orchestration/_MAP.md](../../orchestration/_MAP.md) |
|
| Orchestration Central | [../../orchestration/_MAP.md](../../orchestration/_MAP.md) |
|
||||||
| Directivas SIMCO | [../../orchestration/directivas/simco/_INDEX.md](../../orchestration/directivas/simco/_INDEX.md) |
|
| Directivas SIMCO | [../../orchestration/directivas/simco/](../../orchestration/directivas/simco/) |
|
||||||
|
| erp-clinicas (padre) | [../erp-clinicas/orchestration/_MAP.md](../erp-clinicas/orchestration/_MAP.md) |
|
||||||
|
| erp-core (abuelo) | [../erp-core/orchestration/_MAP.md](../erp-core/orchestration/_MAP.md) |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Archivos Principales
|
## Cadena de Herencia
|
||||||
|
|
||||||
| Archivo | Proposito |
|
```
|
||||||
|---------|-----------|
|
workspace-v2/orchestration/ (LEVEL 0 - Workspace Root)
|
||||||
| CONTEXT-MAP.yml | Configuracion contexto |
|
↓
|
||||||
| CONTEXTO-PROYECTO.md | Descripcion proyecto |
|
template-saas/orchestration/ (LEVEL 1A - Provider)
|
||||||
| PROJECT-STATUS.md | Estado actual |
|
↓
|
||||||
| PROXIMA-ACCION.md | Siguiente tarea |
|
erp-core/orchestration/ (LEVEL 1B - Intermediate)
|
||||||
|
↓
|
||||||
|
erp-clinicas/orchestration/ (LEVEL 2 - Consumer)
|
||||||
|
↓
|
||||||
|
clinica-dental/orchestration/ (SUB-CONSUMER) ← ESTE
|
||||||
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
**Actualizado:** 2026-01-10
|
## Nota sobre _archive/
|
||||||
|
|
||||||
|
Las siguientes carpetas fueron movidas a `_archive/` por no ser parte del estandar
|
||||||
|
SIMCO-ESTANDAR-ORCHESTRATION v1.0.0 para nivel SUB-CONSUMER:
|
||||||
|
|
||||||
|
- `_definitions/` - Usar workspace central
|
||||||
|
- `_refs/` - Usar workspace central
|
||||||
|
- `agents/` - Hereda de workspace (opcional para CONSUMER)
|
||||||
|
- `environment/` - Consolidar con inventarios
|
||||||
|
- `referencias/` - Usar workspace central
|
||||||
|
- `tareas/` - Hereda de workspace (opcional para CONSUMER)
|
||||||
|
|
||||||
|
El contenido puede ser recuperado si se requiere.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Actualizado:** 2026-01-24
|
||||||
|
**Estandar aplicado:** SIMCO-ESTANDAR-ORCHESTRATION v1.0.0
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user