import type { RoadmapPhase, VerticalId } from './types'; const ALL: readonly VerticalId[] = ['terra', 'vessels', 'counsel', 'carlota', 'aegis', 'lyte', 'sentra']; export const ROADMAP_PHASES: readonly RoadmapPhase[] = [ { id: 'phase-1', phase: 1, title: 'Visual Command Fabric', description: 'Seeded data, vertical cockpit, universal schemas, cross-links, and executive command view across all verticals.', items: [ 'Cross-vertical signal mesh with unified schema', 'Domain Command Twins for each vertical', 'Seeded risk, decision, and evidence data', 'Executive cockpit with ecosystem KPIs', 'Vertical profile cards with health scoring', 'Cross-vertical routing and navigation', ], status: 'complete', verticalImpact: ALL, }, { id: 'phase-2', phase: 2, title: 'Workflow Intelligence', description: 'Real connector adapters, ticket and task ingestion, document ingestion, approval routing, and evidence bundles.', items: [ 'Connector adapters for vertical-specific data sources', 'Ticket and task ingestion from operational systems', 'Document ingestion with classification and routing', 'Approval routing with Sentra governance enforcement', 'Evidence bundle assembly for audit and compliance', 'Real-time signal ingestion from connected systems', ], status: 'active', verticalImpact: ALL, }, { id: 'phase-3', phase: 3, title: 'Consequence Modeling', description: 'Chainlight scenario modeling, risk simulations, decision confidence scoring, and prediction error tracking.', items: [ 'Chainlight scenario modeling for cross-vertical risks', 'Monte Carlo risk simulations with seeded parameters', 'Decision confidence scoring with evidence weighting', 'Prediction error tracking and Argo learning feedback', 'Consequence chain visualization across verticals', 'What-if analysis for executive decision support', ], status: 'planned', verticalImpact: ALL, }, { id: 'phase-4', phase: 4, title: 'Governed Execution', description: 'Sentra approval enforcement, rollback readiness, audit trails, and human-reviewed execution across all verticals.', items: [ 'Sentra approval enforcement for all high-impact actions', 'Automated rollback readiness verification', 'Immutable audit trails with Proof Chain anchoring', 'Human-reviewed execution with approval gates', 'Emergency override protocol with retrospective audit', 'Cross-vertical governance SLA monitoring', ], status: 'planned', verticalImpact: ALL, }, { id: 'phase-5', phase: 5, title: 'Learning Ecosystem', description: 'Argo outcome learning, policy recommendations, and vertical-specific improvement loops.', items: [ 'Argo outcome learning with prediction error feedback', 'Policy update recommendations from outcome patterns', 'Vertical-specific improvement loops with domain context', 'Cross-vertical lesson transfer and pattern sharing', 'Operating model evolution tracking and versioning', 'Recommendation confidence calibration', ], status: 'planned', verticalImpact: ALL, }, { id: 'phase-6', phase: 6, title: 'Enterprise Trust Layer', description: 'Compliance exports, board reports, customer-safe summaries, and security posture evidence for enterprise trust.', items: [ 'SOC 2 / ISO 27001 compliance evidence exports', 'Board-ready operating briefs with governance posture', 'Customer-safe summaries with redaction enforcement', 'Security posture evidence with continuous attestation', 'Regulatory reporting templates for each vertical', 'Trust score computation across the ecosystem', ], status: 'planned', verticalImpact: ALL, }, ] as const;