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.review.form

Form to approve or reject a KB change candidate.

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

    Form to approve or reject a KB change candidate.

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

    Form to approve or reject a KB change candidate.

    Goal

    Review

    Context

    Detail

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { ChangeCandidateModel, ReviewTaskModel } from './entities/models';
    
    export const KbReviewFormPresentation = definePresentation({
    	meta: {
    		key: 'kb.review.form',
    		version: '1.0.0',
    		title: 'Review Change',
    		description: 'Form to approve or reject a KB change candidate.',
    		domain: 'knowledge',
    		owners: ['@examples'],
    		tags: ['form', 'review'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Review',
    		context: 'Detail',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'ReviewDecisionForm',
    		props: ReviewTaskModel,
    	},
    	targets: ['react'],
    });