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.
Detailed view of a project with settings and activity
Goal
View and edit project details
Context
Project detail page
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { ProjectModel } from './project.schema';
export const ProjectDetailPresentation = definePresentation({
meta: {
key: 'saas.project.detail',
version: '1.0.0',
title: 'Project Details',
description: 'Detailed view of a project with settings and activity',
domain: 'saas-boilerplate',
owners: ['@saas-team'],
tags: ['project', 'detail'],
stability: StabilityEnum.Beta,
goal: 'View and edit project details',
context: 'Project detail page',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'ProjectDetailView',
},
targets: ['react', 'markdown'],
policy: {
flags: ['saas.projects.enabled'],
},
});