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.
Job board with kanban view
Goal
Visual job management
Context
Field service scheduling
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const JobBoardPresentation = definePresentation({
meta: {
key: 'service-business-os.job.board',
version: '1.0.0',
title: 'Job Board',
description: 'Job board with kanban view',
domain: 'services',
owners: ['@service-os'],
tags: ['services', 'jobs', 'board', 'kanban'],
stability: StabilityEnum.Experimental,
goal: 'Visual job management',
context: 'Field service scheduling',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'JobBoard',
},
targets: ['react'],
policy: {
flags: ['service.jobs.enabled'],
},
});