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.
Overview of KB change candidates and review tasks.
Goal
Visualize status
Context
Dashboard
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { ChangeCandidateModel, ReviewTaskModel } from './entities/models';
export const KbDashboardPresentation = definePresentation({
meta: {
key: 'kb.dashboard',
version: '1.0.0',
title: 'KB Update Dashboard',
description: 'Overview of KB change candidates and review tasks.',
domain: 'knowledge',
owners: ['@examples'],
tags: ['dashboard', 'knowledge'],
stability: StabilityEnum.Experimental,
goal: 'Visualize status',
context: 'Dashboard',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'KbDashboard',
props: ChangeCandidateModel, // Simplified props mapping for example
},
targets: ['react', 'markdown'],
});