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 task.
Goal
View and edit task details.
Context
Task modal or page.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const TaskDetailPresentation = definePresentation({
meta: {
key: 'team-hub.task.detail',
version: '1.0.0',
title: 'Task Detail',
description: 'Detailed view of a task.',
domain: 'team-hub',
owners: ['@team-hub'],
stability: StabilityEnum.Experimental,
goal: 'View and edit task details.',
context: 'Task modal or page.',
tags: ['task', 'detail'],
},
source: {
type: 'component',
framework: 'react',
componentKey: 'TaskDetail',
},
targets: ['react'],
});