OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Pipeline metrics and forecasting view
Goal
Track pipeline health and sales forecasts.
Context
Data-intensive widget for sales managers.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const PipelineMetricsPresentation = definePresentation({
meta: {
key: 'crm.pipeline.metrics',
version: '1.0.0',
title: 'Pipeline Metrics',
description: 'Pipeline metrics and forecasting view',
domain: 'crm-pipeline',
owners: ['@crm-team'],
tags: ['pipeline', 'metrics', 'forecast'],
stability: StabilityEnum.Experimental,
goal: 'Track pipeline health and sales forecasts.',
context: 'Data-intensive widget for sales managers.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'PipelineMetricsView',
},
targets: ['react', 'markdown'],
policy: {
flags: ['crm.metrics.enabled'],
},
});