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.
Approve a pending execution step for continuation.
Goal
Enable human-in-the-loop control for risky actions.
Context
Used in assist mode when a step requires explicit approval before dispatch.
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 ControlPlaneExecutionApproveCommand = defineCommand({
meta: {
key: 'controlPlane.execution.approve',
title: 'Approve Execution Step',
version: '1.0.0',
description: 'Approve a pending execution step for continuation.',
goal: 'Enable human-in-the-loop control for risky actions.',
context:
'Used in assist mode when a step requires explicit approval before dispatch.',
domain: CONTROL_PLANE_DOMAIN,
owners: CONTROL_PLANE_OWNERS,
tags: [...CONTROL_PLANE_TAGS, 'approval'],
stability: CONTROL_PLANE_STABILITY,
},
capability: {
key: 'control-plane.approval',
version: '1.0.0',
},
io: {
input: ControlPlaneExecutionApproveInput,
output: ControlPlaneExecutionApproveOutput,
},
policy: {
auth: 'admin',
pii: [],
},
});