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.
Wealth snapshot dashboard with net worth overview
Goal
Overview of wealth
Context
Dashboard
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const WealthDashboardPresentation = definePresentation({
meta: {
key: 'wealth-snapshot.dashboard',
version: '1.0.0',
title: 'Wealth Dashboard',
description: 'Wealth snapshot dashboard with net worth overview',
domain: 'finance',
owners: ['@wealth-snapshot'],
tags: ['finance', 'wealth', 'dashboard'],
stability: StabilityEnum.Experimental,
goal: 'Overview of wealth',
context: 'Dashboard',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'WealthDashboard',
},
targets: ['react', 'markdown'],
policy: {
flags: ['wealth.dashboard.enabled'],
},
});