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

Visual workflow designer with drag-and-drop steps

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

    Visual workflow designer with drag-and-drop steps

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

    Visual workflow designer with drag-and-drop steps

    Goal

    Building and modifying workflow definitions

    Context

    Workflow administration and setup

    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 WorkflowDesignerPresentation = definePresentation({
    	meta: {
    		key: 'workflow.designer',
    		version: '1.0.0',
    		title: 'Workflow Designer',
    		description: 'Visual workflow designer with drag-and-drop steps',
    		domain: 'workflow-system',
    		owners: ['@workflow-team'],
    		tags: ['workflow', 'designer', 'admin'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Building and modifying workflow definitions',
    		context: 'Workflow administration and setup',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'WorkflowDesigner',
    		props: WorkflowDefinitionModel,
    	},
    	targets: ['react'],
    	policy: {
    		flags: ['workflow.designer.enabled'],
    	},
    });