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.

controlPlane.plan.verify

Run policy and risk validation against a compiled plan.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: plan, governance
  • File: packages/libs/contracts-spec/src/control-plane/commands/controlPlanePlanVerify.command.ts
  • field.key.label
    controlPlane.plan.verify
    field.version.label
    1.0.0
    field.type.label
    operation (command)
    field.title.label
    controlPlane.plan.verify
    field.description.label

    Run policy and risk validation against a compiled plan.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: plan, governance
  • File: packages/libs/contracts-spec/src/control-plane/commands/controlPlanePlanVerify.command.ts
  • field.tags.label
    plan,governance
    field.owners.label
    field.stability.label

    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: [],
    	},
    });