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.

controlPlane.execution.start

Start executing an approved compiled plan.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: execution
  • File: packages/libs/contracts-spec/src/control-plane/commands/controlPlaneExecutionStart.command.ts
  • field.key.label
    controlPlane.execution.start
    field.version.label
    1.0.0
    field.type.label
    operation (command)
    field.title.label
    controlPlane.execution.start
    field.description.label

    Start executing an approved compiled plan.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: execution
  • File: packages/libs/contracts-spec/src/control-plane/commands/controlPlaneExecutionStart.command.ts
  • field.tags.label
    execution
    field.owners.label
    field.stability.label

    Start executing an approved compiled plan.

    Goal

    Run deterministic plan steps through the governed runtime loop.

    Context

    Triggered after successful verification and optional approval decisions.

    Source Definition

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { defineCommand } from '../../operations';
    import {
    	CONTROL_PLANE_DOMAIN,
    	CONTROL_PLANE_OWNERS,
    	CONTROL_PLANE_STABILITY,
    	CONTROL_PLANE_TAGS,
    } from '../constants';
    
    export const ControlPlaneExecutionStartCommand = defineCommand({
    	meta: {
    		key: 'controlPlane.execution.start',
    		title: 'Start Execution',
    		version: '1.0.0',
    		description: 'Start executing an approved compiled plan.',
    		goal: 'Run deterministic plan steps through the governed runtime loop.',
    		context:
    			'Triggered after successful verification and optional approval decisions.',
    		domain: CONTROL_PLANE_DOMAIN,
    		owners: CONTROL_PLANE_OWNERS,
    		tags: [...CONTROL_PLANE_TAGS, 'execution'],
    		stability: CONTROL_PLANE_STABILITY,
    	},
    	capability: {
    		key: 'control-plane.core',
    		version: '1.0.0',
    	},
    	io: {
    		input: ControlPlaneExecutionStartInput,
    		output: ControlPlaneExecutionStartOutput,
    	},
    	policy: {
    		auth: 'admin',
    		pii: [],
    	},
    });