Spaces:
Running
Running
File size: 3,941 Bytes
518343a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | 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;
|