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.
Resume a paused execution-lane run.
Goal
Return a lane to active execution after operator intervention.
Context
Used when paused work is allowed to continue.
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 ControlPlaneExecutionResumeCommand = defineCommand({
meta: {
key: 'controlPlane.execution.resume',
title: 'Resume Execution Lane',
version: '1.0.0',
description: 'Resume a paused execution-lane run.',
goal: 'Return a lane to active execution after operator intervention.',
context: 'Used when paused work is allowed to continue.',
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: ControlPlaneExecutionResumeInput,
output: ControlPlaneExecutionResumeOutput,
},
policy: {
auth: 'admin',
pii: [],
},
});