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.

kb.dashboard

Overview of KB change candidates and review tasks.

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @examples
  • Tags: dashboard, knowledge
  • File: packages/examples/kb-update-pipeline/src/presentations.ts
  • field.key.label
    kb.dashboard
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    kb.dashboard
    field.description.label

    Overview of KB change candidates and review tasks.

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @examples
  • Tags: dashboard, knowledge
  • File: packages/examples/kb-update-pipeline/src/presentations.ts
  • field.tags.label
    dashboard,knowledge
    field.owners.label
    @examples
    field.stability.label

    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'],
    });