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.compiled

Emitted when an intent is compiled into an executable plan.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: plan
  • File: packages/libs/contracts-spec/src/control-plane/events/controlPlanePlanCompiled.event.ts
  • field.key.label
    controlPlane.plan.compiled
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    controlPlane.plan.compiled
    field.description.label

    Emitted when an intent is compiled into an executable plan.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: plan
  • File: packages/libs/contracts-spec/src/control-plane/events/controlPlanePlanCompiled.event.ts
  • field.tags.label
    plan
    field.owners.label
    field.stability.label

    Emitted when an intent is compiled into an executable plan.

    Source Definition

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { defineEvent } from '../../events';
    import {
    	CONTROL_PLANE_DOMAIN,
    	CONTROL_PLANE_OWNERS,
    	CONTROL_PLANE_STABILITY,
    	CONTROL_PLANE_TAGS,
    } from '../constants';
    
    export const ControlPlanePlanCompiledEvent = defineEvent({
    	meta: {
    		key: 'controlPlane.plan.compiled',
    		version: '1.0.0',
    		description: 'Emitted when an intent is compiled into an executable plan.',
    		domain: CONTROL_PLANE_DOMAIN,
    		owners: CONTROL_PLANE_OWNERS,
    		tags: [...CONTROL_PLANE_TAGS, 'plan'],
    		stability: CONTROL_PLANE_STABILITY,
    	},
    	payload: ControlPlanePlanCompiledPayload,
    });