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.
List view of projects with status, tags, and last updated info
Goal
Browse and manage projects
Context
Project list page
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { ProjectModel } from './project.schema';
export const ProjectListPresentation = definePresentation({
meta: {
key: 'saas.project.list',
version: '1.0.0',
title: 'Project List',
description:
'List view of projects with status, tags, and last updated info',
domain: 'saas-boilerplate',
owners: ['@saas-team'],
tags: ['project', 'list', 'dashboard'],
stability: StabilityEnum.Beta,
goal: 'Browse and manage projects',
context: 'Project list page',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'ProjectListView',
props: ProjectModel,
},
targets: ['react', 'markdown', 'application/json'],
policy: {
flags: ['saas.projects.enabled'],
},
});