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

Retry the current lane execution phase.

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

    Retry the current lane execution phase.

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

    Retry the current lane execution phase.

    Goal

    Allow operators to restart remediation without re-creating the run.

    Context

    Used when evidence, verification, or worker failure requires a retry.

    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 ControlPlaneExecutionRetryCommand = defineCommand({
    	meta: {
    		key: 'controlPlane.execution.retry',
    		title: 'Retry Execution Lane',
    		version: '1.0.0',
    		description: 'Retry the current lane execution phase.',
    		goal: 'Allow operators to restart remediation without re-creating the run.',
    		context:
    			'Used when evidence, verification, or worker failure requires a retry.',
    		domain: CONTROL_PLANE_DOMAIN,
    		owners: CONTROL_PLANE_OWNERS,
    		tags: [...CONTROL_PLANE_TAGS, 'execution', 'lane'],
    		stability: CONTROL_PLANE_STABILITY,
    	},
    	capability: {
    		key: 'control-plane.core',
    		version: '1.0.0',
    	},
    	io: {
    		input: ControlPlaneExecutionRetryInput,
    		output: ControlPlaneExecutionRetryOutput,
    	},
    	policy: {
    		auth: 'admin',
    		pii: [],
    	},
    });