Analysis and Documentation: - Add ANALISIS-ALINEACION-WORKSPACE-2025-12-08.md with comprehensive gap analysis - Document SIMCO v3.2 system with 20+ directives - Identify alignment gaps between orchestration and projects New SaaS Products Structure: - Create apps/products/pos-micro/ - Ultra basic POS (~100 MXN/month) - Target: Mexican informal market (street vendors, small stores) - Features: Offline-first PWA, WhatsApp bot, minimal DB (~10 tables) - Create apps/products/erp-basico/ - Austere ERP (~300-500 MXN/month) - Target: SMBs needing full ERP without complexity - Features: Inherits from erp-core, modular pricing SaaS Layer: - Create apps/saas/ structure (billing, portal, admin, onboarding) - Add README.md and CONTEXTO-SAAS.md documentation Vertical Alignment: - Verify HERENCIA-ERP-CORE.md exists in all verticals - Add HERENCIA-SPECS-CORE.md to verticals - Update orchestration inventories Updates: - Update WORKSPACE-STATUS.md with new products and analysis - Update suite inventories with new structure 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| catalog | ||
| devtools/environment | ||
| orchestration | ||
| standards | ||
| README.md | ||
Core - Núcleo de la Fábrica de Software
Descripción
El directorio core/ contiene todo lo que se comparte a nivel de fábrica, no de proyecto individual:
- Sistema de orquestación de agentes
- Módulos de código reutilizables
- Estándares técnicos y de negocio
- Directivas globales para agentes/subagentes
Estructura
core/
├── orchestration/ # Sistema de agentes unificado
│ ├── agents/ # Prompts de agentes NEXUS
│ ├── directivas/ # Directivas globales (33+)
│ ├── templates/ # Templates para subagentes
│ ├── referencias/ # Contextos y paths globales
│ └── claude/ # Configuración Claude Code
│
├── modules/ # Módulos de código reutilizables
│ ├── auth/ # Autenticación/autorización
│ ├── billing/ # Facturación y billing
│ ├── payments/ # Integración de pagos
│ ├── notifications/ # Sistema de notificaciones
│ └── multitenant/ # Soporte multi-tenant
│
└── standards/ # Estándares técnicos globales
├── CODING-STANDARDS.md
├── TESTING-STANDARDS.md
├── API-STANDARDS.md
└── DATABASE-STANDARDS.md
Uso
Sistema de Orquestación
Los agentes cargan automáticamente las directivas de core/orchestration/directivas/ al inicializar. Cada proyecto puede extender (pero no reducir) estas directivas.
Módulos Reutilizables
Los módulos en core/modules/ son dependencias compartidas que pueden ser importadas por cualquier proyecto.
Estándares
Los estándares en core/standards/ definen los mínimos de calidad para todos los proyectos.