elsabro 2.3.0 → 3.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/README.md +698 -20
  2. package/bin/install.js +0 -0
  3. package/flows/development-flow.json +452 -0
  4. package/flows/quick-flow.json +118 -0
  5. package/hooks/hooks-config-updated.json +285 -0
  6. package/hooks/skill-discovery.sh +539 -0
  7. package/package.json +3 -2
  8. package/references/SYSTEM_INDEX.md +400 -5
  9. package/references/agent-marketplace.md +2274 -0
  10. package/references/agent-protocol.md +1126 -0
  11. package/references/ai-code-suggestions.md +2413 -0
  12. package/references/checkpointing.md +595 -0
  13. package/references/collaboration-patterns.md +851 -0
  14. package/references/collaborative-sessions.md +1081 -0
  15. package/references/configuration-management.md +1810 -0
  16. package/references/cost-tracking.md +1095 -0
  17. package/references/enterprise-sso.md +2001 -0
  18. package/references/error-contracts-v2.md +968 -0
  19. package/references/event-driven.md +1031 -0
  20. package/references/flow-orchestration.md +940 -0
  21. package/references/flow-visualization.md +1557 -0
  22. package/references/ide-integrations.md +3513 -0
  23. package/references/interrupt-system.md +681 -0
  24. package/references/kubernetes-deployment.md +3099 -0
  25. package/references/memory-system.md +683 -0
  26. package/references/mobile-companion.md +3236 -0
  27. package/references/multi-llm-providers.md +2494 -0
  28. package/references/multi-project-memory.md +1182 -0
  29. package/references/observability.md +793 -0
  30. package/references/output-schemas.md +858 -0
  31. package/references/performance-profiler.md +955 -0
  32. package/references/plugin-system.md +1526 -0
  33. package/references/prompt-management.md +292 -0
  34. package/references/sandbox-execution.md +303 -0
  35. package/references/security-system.md +1253 -0
  36. package/references/skill-marketplace-integration.md +3901 -0
  37. package/references/streaming.md +696 -0
  38. package/references/testing-framework.md +1151 -0
  39. package/references/time-travel.md +802 -0
  40. package/references/tool-registry.md +886 -0
  41. package/references/voice-commands.md +3296 -0
  42. package/templates/agent-marketplace-config.json +220 -0
  43. package/templates/agent-protocol-config.json +136 -0
  44. package/templates/ai-suggestions-config.json +100 -0
  45. package/templates/checkpoint-state.json +61 -0
  46. package/templates/collaboration-config.json +157 -0
  47. package/templates/collaborative-sessions-config.json +153 -0
  48. package/templates/configuration-config.json +245 -0
  49. package/templates/cost-tracking-config.json +148 -0
  50. package/templates/enterprise-sso-config.json +438 -0
  51. package/templates/events-config.json +148 -0
  52. package/templates/flow-visualization-config.json +196 -0
  53. package/templates/ide-integrations-config.json +442 -0
  54. package/templates/kubernetes-config.json +764 -0
  55. package/templates/memory-state.json +84 -0
  56. package/templates/mobile-companion-config.json +600 -0
  57. package/templates/multi-llm-config.json +544 -0
  58. package/templates/multi-project-memory-config.json +145 -0
  59. package/templates/observability-config.json +109 -0
  60. package/templates/performance-profiler-config.json +125 -0
  61. package/templates/plugin-config.json +170 -0
  62. package/templates/prompt-management-config.json +86 -0
  63. package/templates/sandbox-config.json +185 -0
  64. package/templates/schemas-config.json +65 -0
  65. package/templates/security-config.json +120 -0
  66. package/templates/skill-marketplace-config.json +441 -0
  67. package/templates/streaming-config.json +72 -0
  68. package/templates/testing-config.json +81 -0
  69. package/templates/timetravel-config.json +62 -0
  70. package/templates/tool-registry-config.json +109 -0
  71. package/templates/voice-commands-config.json +658 -0
@@ -108,6 +108,323 @@
108
108
  - Lazy loading
109
109
  - Wave execution
110
110
 
111
+ ### 8. `checkpointing.md` (v3.0)
112
+ **Propósito**: Sistema de checkpointing persistente
113
+ **Contiene**:
114
+ - Lifecycle de checkpoints (INIT → ACTIVE → PAUSED → DONE)
115
+ - Tipos: auto, manual, interrupt
116
+ - API de CheckpointManager
117
+ - Comandos: save, list, restore, diff
118
+
119
+ ### 9. `memory-system.md` (v3.0)
120
+ **Propósito**: Sistema de memoria multi-nivel
121
+ **Contiene**:
122
+ - 4 niveles: short-term, long-term, entity, contextual
123
+ - API de MemoryManager
124
+ - Integración con agentes
125
+ - Triggers de auto-learning
126
+
127
+ ### 10. `flow-orchestration.md` (v3.0)
128
+ **Propósito**: Orquestación basada en grafos
129
+ **Contiene**:
130
+ - 10 tipos de nodos
131
+ - Parallel branches y subflows
132
+ - API de FlowEngine
133
+ - Flows predefinidos
134
+
135
+ ### 11. `error-contracts-v2.md` (v3.0)
136
+ **Propósito**: Contratos de resiliencia expandidos
137
+ **Contiene**:
138
+ - ContractCircuitBreaker
139
+ - ContractBulkhead
140
+ - ContractFallback
141
+ - Integración de los 10 contratos
142
+
143
+ ### 12. `interrupt-system.md` (v3.0)
144
+ **Propósito**: Sistema de interrupts para intervención humana
145
+ **Contiene**:
146
+ - 6 tipos de interrupt
147
+ - API de InterruptManager
148
+ - Integración con flows
149
+ - Configuración de auto-interrupts
150
+
151
+ ### 13. `observability.md` (v3.1)
152
+ **Propósito**: Sistema de observabilidad con OpenTelemetry
153
+ **Contiene**:
154
+ - Distributed tracing (spans por agente)
155
+ - Métricas (counters, gauges, histograms)
156
+ - Logging estructurado
157
+ - Dashboard ASCII
158
+ - Exporters (console, file, Jaeger, Langtrace)
159
+
160
+ ### 14. `streaming.md` (v3.1)
161
+ **Propósito**: Sistema de streaming de progreso en tiempo real
162
+ **Contiene**:
163
+ - 3 modos: values, updates, messages
164
+ - Progress bar ASCII
165
+ - Throttling y buffering
166
+ - Integración con Flow Engine
167
+
168
+ ### 15. `output-schemas.md` (v3.1)
169
+ **Propósito**: Validación de outputs de agentes
170
+ **Contiene**:
171
+ - 5 schemas predefinidos
172
+ - JSON Schema validation
173
+ - Coerción de tipos
174
+ - Retry con hints
175
+ - Type-safe agent communication
176
+
177
+ ### 16. `time-travel.md` (v3.2)
178
+ **Propósito**: Sistema de Time-Travel Debugging
179
+ **Contiene**:
180
+ - TimelineManager para navegación temporal
181
+ - ReplayEngine para reproducción paso a paso
182
+ - WhatIfAnalyzer para análisis de escenarios
183
+ - Branching para timelines alternativos
184
+ - Comandos: /elsabro:timeline, /elsabro:replay, /elsabro:whatif
185
+
186
+ ### 17. `agent-protocol.md` (v3.2)
187
+ **Propósito**: API REST estándar para interoperabilidad
188
+ **Contiene**:
189
+ - OpenAPI 3.1 spec completa
190
+ - Endpoints: /tasks, /steps, /artifacts, /agent
191
+ - TaskMapper y StepMapper
192
+ - ArtifactStore para archivos
193
+ - WebSocket streaming extension
194
+
195
+ ### 18. `sandbox-execution.md` (v3.2)
196
+ **Propósito**: Ejecución aislada de código
197
+ **Contiene**:
198
+ - SandboxManager con múltiples providers
199
+ - DockerProvider, E2BProvider, ProcessProvider
200
+ - Resource limits (CPU, memory, disk, PIDs)
201
+ - Network policies
202
+ - Interactive sessions (REPL)
203
+
204
+ ### 19. `event-driven.md` (v3.2)
205
+ **Propósito**: Arquitectura orientada a eventos
206
+ **Contiene**:
207
+ - EventBus con pub/sub
208
+ - EventStore para event sourcing
209
+ - WebhookManager para integraciones externas
210
+ - Event types predefinidos
211
+ - Retry y dead letter queue
212
+
213
+ ### 20. `cost-tracking.md` (v3.3)
214
+ **Propósito**: Sistema de tracking de costos y optimización
215
+ **Contiene**:
216
+ - TokenTracker para metering por request
217
+ - BudgetManager con alertas (80%, 95%, 100%)
218
+ - ModelOptimizer para selección inteligente de modelos
219
+ - Dashboard de costos ASCII
220
+ - Comandos: /elsabro:cost summary|budget|optimize
221
+
222
+ ### 21. `tool-registry.md` (v3.3)
223
+ **Propósito**: Registro dinámico de herramientas
224
+ **Contiene**:
225
+ - ToolRegistry con registro y versionado
226
+ - ToolDiscovery para búsqueda inteligente
227
+ - CapabilityMatcher para matching de requisitos
228
+ - Built-in tool definitions
229
+ - Comandos: /elsabro:tools list|search|register
230
+
231
+ ### 22. `collaboration-patterns.md` (v3.3)
232
+ **Propósito**: Patrones de colaboración entre agentes
233
+ **Contiene**:
234
+ - 6 patrones: supervisor, hierarchical, consensus, debate, round-robin, swarm
235
+ - CollaborationManager con auto-selección
236
+ - Blackboard communication para swarm
237
+ - Configuración por patrón
238
+
239
+ ### 23. `prompt-management.md` (v3.3)
240
+ **Propósito**: Gestión de prompts con A/B testing
241
+ **Contiene**:
242
+ - PromptRegistry con versionado
243
+ - TemplateEngine tipo Handlebars
244
+ - PromptOptimizer para A/B testing
245
+ - Templates predefinidos (explore, implement, review)
246
+ - Comandos: /elsabro:prompt list|test|experiment
247
+
248
+ ### 24. `testing-framework.md` (v3.4)
249
+ **Propósito**: Framework completo de testing para agentes
250
+ **Contiene**:
251
+ - AgentTestRunner con suites y retries
252
+ - MockProvider para LLM y herramientas
253
+ - SimulationEngine para escenarios multi-agente
254
+ - AssertionEngine con 12+ tipos (behavioral, property, semantic)
255
+ - Comandos: /elsabro:test run|watch|coverage|mock
256
+
257
+ ### 25. `security-system.md` (v3.4)
258
+ **Propósito**: Sistema de seguridad enterprise
259
+ **Contiene**:
260
+ - RBACManager con herencia de roles
261
+ - SecretsVault con AES-256-GCM
262
+ - AuditLogger con alertas automáticas
263
+ - PolicyEngine con conditions (time, IP, rate_limit)
264
+ - Built-in roles: admin, agent:explore, agent:implement, agent:review
265
+
266
+ ### 26. `configuration-management.md` (v3.4)
267
+ **Propósito**: Gestión avanzada de configuración
268
+ **Contiene**:
269
+ - ConfigManager con múltiples fuentes (file, env, remote)
270
+ - FeatureFlags con targeting y porcentaje rollout
271
+ - EnvResolver con herencia y secretos
272
+ - ConfigValidator con JSON Schema
273
+ - RemoteConfigSync con polling y fallback
274
+
275
+ ### 27. `plugin-system.md` (v3.4)
276
+ **Propósito**: Sistema de plugins extensible
277
+ **Contiene**:
278
+ - PluginLoader con discovery y validación
279
+ - PluginRegistry con contribuciones (agents, tools, commands, hooks)
280
+ - PluginManager con lifecycle y hot-reload
281
+ - HookSystem con middleware chain
282
+ - Sandbox y permissions para seguridad
283
+
284
+ ### 28. `flow-visualization.md` (v3.5)
285
+ **Propósito**: Visualización y edición visual de flows
286
+ **Contiene**:
287
+ - FlowVisualizer con múltiples renderers (ASCII, SVG, HTML)
288
+ - GraphRenderer con layout algorithms (dagre, elk, force, tree)
289
+ - NodeEditor para configuración de nodos
290
+ - ConnectionManager con validación y auto-routing
291
+ - Comandos: /elsabro:flow visualize|edit
292
+
293
+ ### 29. `multi-project-memory.md` (v3.5)
294
+ **Propósito**: Memoria compartida entre proyectos
295
+ **Contiene**:
296
+ - SharedMemoryHub con namespaces y versionado
297
+ - ProjectLinker para relaciones entre proyectos
298
+ - KnowledgeSync con manejo de conflictos
299
+ - CrossProjectSearch con búsqueda semántica
300
+ - KnowledgeExtractor para auto-extracción de patrones
301
+
302
+ ### 30. `collaborative-sessions.md` (v3.5)
303
+ **Propósito**: Sesiones colaborativas en tiempo real
304
+ **Contiene**:
305
+ - SessionManager con lifecycle y permisos
306
+ - RealtimeSync con WebSocket y reconexión
307
+ - ConflictResolver con OT/CRDT
308
+ - PresenceTracker para cursores y actividad
309
+ - Comandos: /elsabro:collab create|join|leave
310
+
311
+ ### 31. `performance-profiler.md` (v3.5)
312
+ **Propósito**: Profiling y optimización de rendimiento
313
+ **Contiene**:
314
+ - Profiler con sampling y tracing
315
+ - BottleneckDetector con root cause analysis
316
+ - MemoryAnalyzer para detección de leaks
317
+ - LatencyTracker con percentiles (P50/P95/P99)
318
+ - Dashboard ASCII con recomendaciones
319
+
320
+ ### 32. `kubernetes-deployment.md` (v3.6)
321
+ **Propósito**: Sistema completo de deployment en Kubernetes
322
+ **Contiene**:
323
+ - K8sDeployer para gestión de deployments, namespaces, ConfigMaps, Secrets
324
+ - HelmChartGenerator para creación de charts con values por environment
325
+ - ResourceScaler con HPA, VPA y custom metrics (queue_length, active_agents)
326
+ - HealthMonitor con liveness/readiness/startup probes y Prometheus metrics
327
+ - Infrastructure components (Redis, PostgreSQL, RabbitMQ)
328
+ - Docker multi-stage build optimizado
329
+ - Comandos: /elsabro:k8s deploy|scale|status|logs|rollout
330
+
331
+ ### 33. `multi-llm-providers.md` (v3.6)
332
+ **Propósito**: Soporte multi-proveedor de LLM
333
+ **Contiene**:
334
+ - ProviderRegistry para registro y gestión de proveedores
335
+ - ClaudeProvider, OpenAIProvider, GeminiProvider, LocalProvider (Ollama), AzureProvider
336
+ - ModelRouter para selección inteligente basada en costo/latencia/capacidad
337
+ - ProviderHealthChecker con circuit breaker y failover automático
338
+ - CostOptimizer para minimización de costos manteniendo calidad
339
+ - StreamingAdapter para normalización de respuestas streaming
340
+ - Comandos: /elsabro:llm providers|route|costs|health
341
+
342
+ ### 34. `enterprise-sso.md` (v3.6)
343
+ **Propósito**: Single Sign-On enterprise
344
+ **Contiene**:
345
+ - SSOManager para gestión unificada de autenticación
346
+ - SAMLProvider para SAML 2.0 con metadata automático
347
+ - OIDCProvider para OpenID Connect con PKCE
348
+ - SCIM 2.0 para provisioning y deprovisioning automático
349
+ - TokenService con cifrado y rotación
350
+ - Integración con Okta, Azure AD, Google Workspace, Auth0, Keycloak
351
+ - Comandos: /elsabro:sso configure|test|users|audit
352
+
353
+ ### 35. `agent-marketplace.md` (v3.6)
354
+ **Propósito**: Marketplace de agentes reutilizables
355
+ **Contiene**:
356
+ - MarketplaceRegistry para descubrimiento y listado de agentes
357
+ - AgentPackager para empaquetado con firma criptográfica
358
+ - PublishingPipeline para review y publicación
359
+ - ReviewSystem con ratings, reviews y reportes
360
+ - InstallationManager con sandboxing y permisos
361
+ - Versionado semántico y actualizaciones automáticas
362
+ - Comandos: /elsabro:marketplace search|install|publish|rate
363
+
364
+ ### 36. `mobile-companion.md` (v3.7)
365
+ **Propósito**: App móvil companion para ELSABRO
366
+ **Contiene**:
367
+ - MobileAppArchitecture con Expo SDK 52+, expo-router, Zustand, React Query
368
+ - SessionSync con WebSocket para sincronización en tiempo real
369
+ - PushNotificationManager con expo-notifications
370
+ - VoiceInputHandler con @react-native-voice/voice y expo-speech
371
+ - OfflineMode con AsyncStorage y queue de acciones pendientes
372
+ - BiometricAuth con expo-local-authentication
373
+ - Widget Support para iOS WidgetKit y Android App Widgets
374
+ - Comandos: /elsabro:mobile setup|sync|notify|voice
375
+
376
+ ### 37. `voice-commands.md` (v3.7)
377
+ **Propósito**: Sistema de comandos de voz y dictado
378
+ **Contiene**:
379
+ - VoiceCommandEngine con pipeline audio -> VAD -> ASR -> NLU -> action
380
+ - DictationTranscriber con puntuación automática y formato de código
381
+ - IntentClassifier para comandos ELSABRO con fallback a LLM
382
+ - MultiLanguageSupport para español, inglés, portugués
383
+ - WakeWordDetector con Porcupine/Picovoice on-device
384
+ - AudioFeedback con TTS multi-proveedor
385
+ - NoiseReduction con WebRTC VAD y cancelación de eco
386
+ - Comandos: /elsabro:voice start|stop|language|calibrate
387
+
388
+ ### 38. `ai-code-suggestions.md` (v3.7)
389
+ **Propósito**: Sugerencias de código AI-powered
390
+ **Contiene**:
391
+ - CodeSuggestionEngine con context gathering y embedding cache
392
+ - CompletionProvider con autocompletado inline y ghost text
393
+ - RefactoringAdvisor para extract function/variable/rename
394
+ - PatternDetector para anti-patterns y SOLID violations
395
+ - DocumentationGenerator para JSDoc/TSDoc/README/API docs
396
+ - TestSuggester para unit tests y edge cases
397
+ - SecurityScanner para OWASP Top 10 y secrets
398
+ - PerformanceAdvisor para N+1 queries y memory leaks
399
+ - Comandos: /elsabro:suggest enable|disable|settings|stats
400
+
401
+ ### 39. `ide-integrations.md` (v3.7)
402
+ **Propósito**: Integraciones con IDEs populares
403
+ **Contiene**:
404
+ - VSCodeExtension completa con WebView y contributes
405
+ - JetBrainsPlugin para IntelliJ/WebStorm/PyCharm
406
+ - LSPServer para cualquier editor compatible
407
+ - SidebarPanel con TreeView de tareas y agentes
408
+ - InlineAnnotations con CodeLens y decorations
409
+ - QuickActions con code actions y refactoring
410
+ - StatusBarIntegration con estado y progreso
411
+ - KeybindingManager con atajos personalizables
412
+ - Comandos: /elsabro:ide install|configure|shortcuts|sync
413
+
414
+ ### 40. `skill-marketplace-integration.md` (v3.8)
415
+ **Propósito**: Integración automática con skills.sh ecosystem
416
+ **Contiene**:
417
+ - SkillDiscoveryEngine con keyword extraction y scoring algorithm
418
+ - SkillInstallManager para instalación/actualización con semver
419
+ - SkillCacheManager con TTL (searches: 1h, versions: 6h)
420
+ - AutoSkillResolver con resolución de dependencias topológica
421
+ - FlowIntegration con pre-command hooks
422
+ - 25 keyword mappings (auth→clerk, payments→stripe, etc.)
423
+ - 16 categorías de skills organizadas
424
+ - Registry file: `~/.agents/.skill-lock.json`
425
+ - API endpoint: `https://add-skill.vercel.sh/check-updates`
426
+ - Comandos: /elsabro:skills search|install|update|list|config
427
+
111
428
  ---
112
429
 
113
430
  ## ESTADO UNIFICADO
@@ -229,13 +546,91 @@ Para verificar que el sistema está correctamente configurado:
229
546
 
230
547
  ## REGLAS DE ORO
231
548
 
549
+ ### Tareas y Estado
232
550
  1. **TaskCreate ANTES de cualquier acción**
233
551
  2. **TaskUpdate(in_progress) ANTES de Task()**
234
552
  3. **Tasks API como backend único** (NO duplicar con sistemas custom)
235
553
  4. **Metadata schema consistente** para type, priority, category
236
554
  5. **TaskList para sincronización** (NO archivos .md separados)
237
- 6. **Mínimo 3 agentes HAIKU para exploración**
238
- 7. **OPUS para implementación y verificación**
239
- 8. **Context7 ANTES de escribir código con librerías**
240
- 9. **Paralelismo OBLIGATORIO cuando las tareas son independientes**
241
- 10. **Pasar contexto via Task metadata** al siguiente comando
555
+
556
+ ### Agentes y Modelos
557
+ 6. **4 agentes HAIKU para exploración** (Explore, Plan, code-explorer, general-purpose)
558
+ 7. **2 agentes OPUS para implementación** (executor, qa)
559
+ 8. **3 agentes OPUS para code review** (code-reviewer, silent-failure-hunter, staff)
560
+ 9. **Context7 ANTES de escribir código con librerías**
561
+ 10. **Paralelismo OBLIGATORIO cuando las tareas son independientes**
562
+
563
+ ### Resiliencia (v3.0)
564
+ 11. **Checkpoint automático** en cada fase/wave
565
+ 12. **Circuit Breaker** después de 5 fallos consecutivos
566
+ 13. **Bulkhead** para aislar particiones (exploration: 4, implementation: 4, verification: 2)
567
+ 14. **Fallback** con alternativas cuando operaciones fallan
568
+ 15. **Interrupts** para approval gates y error recovery
569
+
570
+ ### Memoria (v3.0)
571
+ 16. **Short-term** para contexto de sesión
572
+ 17. **Long-term** para patterns y mistakes
573
+ 18. **Entity** para conocimiento del codebase
574
+ 19. **Contextual** para RAG semántico
575
+ 20. **Auto-learn** de correcciones del usuario
576
+
577
+ ### Interoperabilidad (v3.2)
578
+ 21. **Agent Protocol** para comunicación con otros frameworks
579
+ 22. **Sandbox Execution** para código no confiable
580
+ 23. **Event-Driven** para desacoplamiento de componentes
581
+ 24. **Time-Travel** para debugging y análisis what-if
582
+ 25. **Webhooks** para integraciones externas
583
+
584
+ ### Optimización (v3.3)
585
+ 26. **Cost Tracking** con presupuestos y alertas automáticas
586
+ 27. **Tool Registry** para descubrimiento dinámico de herramientas
587
+ 28. **Collaboration Patterns** para orquestación multi-agente avanzada
588
+ 29. **Prompt Management** con templates y A/B testing
589
+ 30. **Model Optimizer** para selección inteligente de modelo por tarea
590
+
591
+ ### Enterprise (v3.4)
592
+ 31. **Testing Framework** para validación de agentes con mocks y simulación
593
+ 32. **RBAC** para control de acceso basado en roles con herencia
594
+ 33. **Secrets Vault** con cifrado AES-256-GCM y rotación
595
+ 34. **Audit Logging** con alertas automáticas y retención configurable
596
+ 35. **Plugin System** para extensibilidad con hot-reload y sandboxing
597
+ 36. **Feature Flags** para rollout gradual y A/B testing de features
598
+ 37. **Remote Config** para actualización de configuración sin re-deploy
599
+
600
+ ### Colaboración & UX (v3.5)
601
+ 38. **Flow Visualization** para edición visual de workflows con graph editor
602
+ 39. **Multi-Project Memory** para compartir conocimiento entre proyectos
603
+ 40. **Collaborative Sessions** para trabajo simultáneo en tiempo real
604
+ 41. **Performance Profiler** para identificar y optimizar bottlenecks
605
+ 42. **Presence Tracking** para ver cursores y actividad de colaboradores
606
+ 43. **Conflict Resolution** con OT para edición concurrente
607
+
608
+ ### Kubernetes & DevOps (v3.6)
609
+ 44. **K8sDeployer** para deployment automatizado en Kubernetes
610
+ 45. **HelmChartGenerator** para generación de charts con múltiples environments
611
+ 46. **ResourceScaler** con HPA/VPA y custom metrics para auto-scaling
612
+ 47. **HealthMonitor** con probes, métricas Prometheus y alertas
613
+ 48. **Infrastructure as Code** con Redis, PostgreSQL, RabbitMQ
614
+ 49. **Docker Multi-Stage** build optimizado para producción
615
+ 50. **GitOps Ready** con configuración declarativa completa
616
+
617
+ ### Multi-Provider & Enterprise (v3.6)
618
+ 51. **Multi-LLM Providers** con routing inteligente entre Claude/OpenAI/Gemini/Local
619
+ 52. **Model Router** para selección basada en costo/latencia/capacidad
620
+ 53. **Enterprise SSO** con SAML 2.0, OIDC y SCIM 2.0
621
+ 54. **Agent Marketplace** para descubrimiento e instalación de agentes
622
+ 55. **Provider Health** con circuit breaker y failover automático
623
+
624
+ ### Mobile & IDE (v3.7)
625
+ 56. **Mobile Companion** app con Expo SDK 52+ y sync en tiempo real
626
+ 57. **Voice Commands** con wake word detection y multi-idioma
627
+ 58. **AI Code Suggestions** con completions, refactoring y security scanning
628
+ 59. **IDE Integrations** para VSCode y JetBrains con LSP
629
+ 60. **Offline Mode** con cache local y sync automático
630
+
631
+ ### Skill Marketplace (v3.8)
632
+ 61. **SkillDiscoveryEngine** para descubrimiento automático de skills por keywords
633
+ 62. **SkillInstallManager** con instalación/actualización automática y semver
634
+ 63. **AutoSkillResolver** para resolución de dependencias y ordenamiento topológico
635
+ 64. **FlowIntegration** con pre-command hooks para auto-discovery
636
+ 65. **SkillCacheManager** con cache multi-nivel para búsquedas y versiones