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.
Start executing an approved compiled plan.
Goal
Run deterministic plan steps through the governed runtime loop.
Context
Triggered after successful verification and optional approval decisions.
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 ControlPlaneExecutionStartCommand = defineCommand({
meta: {
key: 'controlPlane.execution.start',
title: 'Start Execution',
version: '1.0.0',
description: 'Start executing an approved compiled plan.',
goal: 'Run deterministic plan steps through the governed runtime loop.',
context:
'Triggered after successful verification and optional approval decisions.',
domain: CONTROL_PLANE_DOMAIN,
owners: CONTROL_PLANE_OWNERS,
tags: [...CONTROL_PLANE_TAGS, 'execution'],
stability: CONTROL_PLANE_STABILITY,
},
capability: {
key: 'control-plane.core',
version: '1.0.0',
},
io: {
input: ControlPlaneExecutionStartInput,
output: ControlPlaneExecutionStartOutput,
},
policy: {
auth: 'admin',
pii: [],
},
});