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 of service clients
Goal
Browse and manage service clients
Context
Client management
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const ClientListPresentation = definePresentation({
meta: {
key: 'service-business-os.client.list',
version: '1.0.0',
title: 'Client List',
description: 'List of service clients',
domain: 'services',
owners: ['@service-os'],
tags: ['services', 'clients', 'list'],
stability: StabilityEnum.Experimental,
goal: 'Browse and manage service clients',
context: 'Client management',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'ClientList',
},
targets: ['react', 'markdown'],
policy: {
flags: ['service.clients.enabled'],
},
});