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.
Service business dashboard with overview metrics
Goal
Overview of service business metrics
Context
Service home page
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const ServiceDashboardPresentation = definePresentation({
meta: {
key: 'service-business-os.dashboard',
version: '1.0.0',
title: 'Service Dashboard',
description: 'Service business dashboard with overview metrics',
domain: 'services',
owners: ['@service-os'],
tags: ['services', 'dashboard'],
stability: StabilityEnum.Experimental,
goal: 'Overview of service business metrics',
context: 'Service home page',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'ServiceDashboard',
},
targets: ['react', 'markdown'],
policy: {
flags: ['service.dashboard.enabled'],
},
});