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.
Kanban board for team tasks.
Goal
Visualize task progress.
Context
Project management view.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const TaskBoardPresentation = definePresentation({
meta: {
key: 'team-hub.task.board',
version: '1.0.0',
title: 'Task Board',
description: 'Kanban board for team tasks.',
domain: 'team-hub',
owners: ['@team-hub'],
stability: StabilityEnum.Experimental,
goal: 'Visualize task progress.',
context: 'Project management view.',
tags: ['task', 'board'],
},
source: {
type: 'component',
framework: 'react',
componentKey: 'TaskBoard',
},
targets: ['react'],
});