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.
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: [],
},
});