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

Approve a pending execution step for continuation.

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

    Approve a pending execution step for continuation.

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

    Approve a pending execution step for continuation.

    Goal

    Enable human-in-the-loop control for risky actions.

    Context

    Used in assist mode when a step requires explicit approval before dispatch.

    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 ControlPlaneExecutionApproveCommand = defineCommand({
    	meta: {
    		key: 'controlPlane.execution.approve',
    		title: 'Approve Execution Step',
    		version: '1.0.0',
    		description: 'Approve a pending execution step for continuation.',
    		goal: 'Enable human-in-the-loop control for risky actions.',
    		context:
    			'Used in assist mode when a step requires explicit approval before dispatch.',
    		domain: CONTROL_PLANE_DOMAIN,
    		owners: CONTROL_PLANE_OWNERS,
    		tags: [...CONTROL_PLANE_TAGS, 'approval'],
    		stability: CONTROL_PLANE_STABILITY,
    	},
    	capability: {
    		key: 'control-plane.approval',
    		version: '1.0.0',
    	},
    	io: {
    		input: ControlPlaneExecutionApproveInput,
    		output: ControlPlaneExecutionApproveOutput,
    	},
    	policy: {
    		auth: 'admin',
    		pii: [],
    	},
    });