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.

workflow.instance.detail

Detailed view of a workflow instance with step timeline

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @workflow-team
  • Tags: workflow, instance, detail, timeline
  • File: packages/examples/workflow-system/src/presentations/index.ts
  • field.key.label
    workflow.instance.detail
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    workflow.instance.detail
    field.description.label

    Detailed view of a workflow instance with step timeline

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @workflow-team
  • Tags: workflow, instance, detail, timeline
  • File: packages/examples/workflow-system/src/presentations/index.ts
  • field.tags.label
    workflow,instance,detail,timeline
    field.owners.label
    @workflow-team
    field.stability.label

    Detailed view of a workflow instance with step timeline

    Goal

    Detailed inspection of a specific workflow instance

    Context

    Case management and troubleshooting

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { ApprovalRequestModel } from '../approval/approval.schema';
    import { WorkflowInstanceModel } from '../instance/instance.schema';
    import { WorkflowDefinitionModel } from '../workflow/workflow.schema';
    
    export const InstanceDetailPresentation = definePresentation({
    	meta: {
    		key: 'workflow.instance.detail',
    		version: '1.0.0',
    		title: 'Instance Details',
    		description: 'Detailed view of a workflow instance with step timeline',
    		domain: 'workflow-system',
    		owners: ['@workflow-team'],
    		tags: ['workflow', 'instance', 'detail', 'timeline'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Detailed inspection of a specific workflow instance',
    		context: 'Case management and troubleshooting',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'WorkflowInstanceDetail',
    		props: WorkflowInstanceModel,
    	},
    	targets: ['react', 'markdown'],
    	policy: {
    		flags: ['workflow.enabled'],
    	},
    });