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.list

List of pending review tasks for the current user.

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

    List of pending review tasks for the current user.

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

    List of pending review tasks for the current user.

    Goal

    List tasks

    Context

    Inbox

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { ChangeCandidateModel, ReviewTaskModel } from './entities/models';
    
    export const KbReviewListPresentation = definePresentation({
    	meta: {
    		key: 'kb.review.list',
    		version: '1.0.0',
    		title: 'Review Tasks',
    		description: 'List of pending review tasks for the current user.',
    		domain: 'knowledge',
    		owners: ['@examples'],
    		tags: ['list', 'review'],
    		stability: StabilityEnum.Experimental,
    		goal: 'List tasks',
    		context: 'Inbox',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'ReviewTaskList',
    		props: ReviewTaskModel,
    	},
    	targets: ['react', 'markdown'],
    });