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.
Main CRM dashboard with pipeline overview, deal stats, and activities
Goal
Provide a high-level overview of CRM performance and active deals.
Context
The landing page for CRM users.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const CrmDashboardPresentation = definePresentation({
meta: {
key: 'crm.dashboard',
version: '1.0.0',
title: 'CRM Dashboard',
description:
'Main CRM dashboard with pipeline overview, deal stats, and activities',
domain: 'crm-pipeline',
owners: ['@crm-team'],
tags: ['dashboard', 'overview'],
stability: StabilityEnum.Experimental,
goal: 'Provide a high-level overview of CRM performance and active deals.',
context: 'The landing page for CRM users.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'CrmDashboard',
},
targets: ['react', 'markdown'],
policy: {
flags: ['crm.enabled'],
},
});