File size: 3,872 Bytes
a8b4b87 | 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 | import type { RoadmapPhase } from './types';
export const AMARU_ROADMAP: readonly RoadmapPhase[] = [
{
id: 'phase-1-discover',
phase: 1,
title: 'Discover',
tagline: 'Bring every source under the spine.',
description:
'Cartographer connects warehouses, OLTP stores, event streams, object stores, and ticketing systems. PII is detected on first touch; freshness is monitored from the first refresh.',
status: 'complete',
capabilities: [
'Source connectors (24 demo adapters, contract-typed)',
'PII inference with redacted sampling',
'Freshness clock per source',
'Quality score baseline',
],
verticalImpact: ['lyte', 'terra', 'vessels', 'counsel', 'carlota', 'aegis', 'sentra'],
evidence: ['src.profile_v1 receipts', 'lutar Σ ≥ 0.74 across all green sources'],
},
{
id: 'phase-2-model',
phase: 2,
title: 'Model',
tagline: 'Compose entities the business actually uses.',
description:
'Cartographer + Mapper turn raw sources into entity-typed activation models with explicit fields, cursors, and quality. Every model is replay-grade.',
status: 'complete',
capabilities: ['Entity inference', 'SQL preview', 'Quality + PII scoring', 'Activation readiness rollup'],
verticalImpact: ['lyte', 'terra', 'vessels', 'counsel', 'carlota', 'aegis', 'sentra'],
evidence: ['model.candidate_v1', 'fields.classified_v1'],
},
{
id: 'phase-3-govern',
phase: 3,
title: 'Govern',
tagline: 'No batch ships without a witness.',
description:
'Sentinel evaluates every batch against the policy registry. Verity reconciles every acknowledgement. Scribe writes the proof ledger. The Lutar Σ envelope is computed per run.',
status: 'active',
capabilities: [
'Policy registry (30+ policies)',
'Approval queue with reason codes',
'Hash-chained proof ledger',
'Lutar Σ per run',
'Evidence pack export',
],
verticalImpact: ['counsel', 'aegis', 'sentra', 'lyte', 'vessels'],
evidence: ['policy.checked_v1', 'receipt.decision_v1', 'sigil.composition_v1'],
},
{
id: 'phase-4-activate',
phase: 4,
title: 'Activate',
tagline: 'Move the receipt, not the rumour.',
description:
'Courier delivers governed batches into 36+ destinations across CRM, support, marketing, collab, data, webhook, finance, and logistics. Every batch carries its receipt.',
status: 'active',
capabilities: ['Batched delivery', 'Retry/backoff', 'Quarantine with evidence', 'Cross-destination idempotency keys'],
verticalImpact: ['lyte', 'terra', 'vessels', 'counsel', 'carlota', 'aegis'],
evidence: ['delivery.batch_v1', 'delivery.settled_v1'],
},
{
id: 'phase-5-learn',
phase: 5,
title: 'Learn',
tagline: 'Close the loop on lift.',
description:
'Forecaster predicts the lift each sync should produce on its destination KPI. The actual is observed and the prediction error is fed back into the cadence recommender.',
status: 'planned',
capabilities: ['Lift forecast', 'Prediction error tracking', 'Cadence recommender', 'Retirement review'],
verticalImpact: ['lyte', 'terra', 'carlota'],
evidence: ['outcome.forecast_v1', 'outcome.actual_v1'],
},
{
id: 'phase-6-federate',
phase: 6,
title: 'Federate',
tagline: 'One spine, many sovereign deployments.',
description:
'Amaru becomes a federation primitive: each tenant runs its own spine, shares only proofs and receipts. Cross-tenant policies are negotiated, not assumed.',
status: 'planned',
capabilities: ['Tenant-scoped spines', 'Federated proof exchange', 'Cross-tenant policy negotiation', 'Sovereign deployment recipes'],
verticalImpact: ['counsel', 'aegis', 'sentra'],
evidence: ['federation.handshake_v1', 'policy.negotiated_v1'],
},
];
|