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 SaaS dashboard with project overview, usage stats, and quick actions
Goal
Overview of SaaS activity and metrics
Context
Main dashboard
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const SaasDashboardPresentation = definePresentation({
meta: {
key: 'saas.dashboard',
version: '1.0.0',
title: 'SaaS Dashboard',
description:
'Main SaaS dashboard with project overview, usage stats, and quick actions',
domain: 'saas-boilerplate',
owners: ['@saas-team'],
tags: ['dashboard', 'overview'],
stability: StabilityEnum.Beta,
goal: 'Overview of SaaS activity and metrics',
context: 'Main dashboard',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'SaasDashboard',
},
targets: ['react', 'markdown'],
policy: {
flags: ['saas.enabled'],
},
});