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.
Abort an execution-lane run immediately.
Goal
Provide a hard terminal stop distinct from graceful shutdown.
Context
Used when operators must terminate a lane instead of pausing or shutting it down gracefully.
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 ControlPlaneExecutionAbortCommand = defineCommand({
meta: {
key: 'controlPlane.execution.abort',
title: 'Abort Execution Lane',
version: '1.0.0',
description: 'Abort an execution-lane run immediately.',
goal: 'Provide a hard terminal stop distinct from graceful shutdown.',
context:
'Used when operators must terminate a lane instead of pausing or shutting it down gracefully.',
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: ControlPlaneExecutionAbortInput,
output: ControlPlaneExecutionAbortOutput,
},
policy: {
auth: 'admin',
pii: [],
},
});