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.
Run policy and risk validation against a compiled plan.
Goal
Gate execution using deterministic governance checks.
Context
Executed before runtime dispatch to decide autonomous, assist, or blocked mode.
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 ControlPlanePlanVerifyCommand = defineCommand({
meta: {
key: 'controlPlane.plan.verify',
title: 'Verify Plan',
version: '1.0.0',
description: 'Run policy and risk validation against a compiled plan.',
goal: 'Gate execution using deterministic governance checks.',
context:
'Executed before runtime dispatch to decide autonomous, assist, or blocked mode.',
domain: CONTROL_PLANE_DOMAIN,
owners: CONTROL_PLANE_OWNERS,
tags: [...CONTROL_PLANE_TAGS, 'plan', 'governance'],
stability: CONTROL_PLANE_STABILITY,
},
capability: {
key: 'control-plane.audit',
version: '1.0.0',
},
io: {
input: ControlPlanePlanVerifyInput,
output: ControlPlanePlanVerifyOutput,
},
policy: {
auth: 'admin',
pii: [],
},
});