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.

state-machine

State machine orchestration and transitions

  • Type: capability (capability)
  • Version: 1.0.0
  • Owners: platform.core
  • Tags: state-machine, workflow
  • File: packages/examples/workflow-system/src/workflow-system.capability.ts
  • field.key.label
    state-machine
    field.version.label
    1.0.0
    field.type.label
    capability (capability)
    field.title.label
    state-machine
    field.description.label

    State machine orchestration and transitions

  • Type: capability (capability)
  • Version: 1.0.0
  • Owners: platform.core
  • Tags: state-machine, workflow
  • File: packages/examples/workflow-system/src/workflow-system.capability.ts
  • field.tags.label
    state-machine,workflow
    field.owners.label
    platform.core
    field.stability.label

    State machine orchestration and transitions

    Source Definition

    import {
    	defineCapability,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    
    export const StateMachineCapability = defineCapability({
    	meta: {
    		key: 'state-machine',
    		version: '1.0.0',
    		kind: 'api',
    		stability: StabilityEnum.Experimental,
    		description: 'State machine orchestration and transitions',
    		owners: ['platform.core'],
    		tags: ['state-machine', 'workflow'],
    	},
    });