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.
Pause an active execution-lane run.
Goal
Let operators halt lane progress without losing runtime state.
Context
Used for operator intervention when a lane should stop in-place.
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 ControlPlaneExecutionPauseCommand = defineCommand({
meta: {
key: 'controlPlane.execution.pause',
title: 'Pause Execution Lane',
version: '1.0.0',
description: 'Pause an active execution-lane run.',
goal: 'Let operators halt lane progress without losing runtime state.',
context: 'Used for operator intervention when a lane should stop in-place.',
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: ControlPlaneExecutionPauseInput,
output: ControlPlaneExecutionPauseOutput,
},
policy: {
auth: 'admin',
pii: [],
},
});