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