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.
Fetch the latest state for one execution.
Goal
Provide operators and channels a deterministic execution view.
Context
Used by dashboards, CLI, and channel adapters to inspect one execution.
Source Definition
import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
import { defineQuery } from '../../operations';
import {
CONTROL_PLANE_DOMAIN,
CONTROL_PLANE_OWNERS,
CONTROL_PLANE_STABILITY,
CONTROL_PLANE_TAGS,
} from '../constants';
import { ControlPlaneExecutionLaneStateModel } from './controlPlaneExecutionLane.models';
export const ControlPlaneExecutionGetQuery = defineQuery({
meta: {
key: 'controlPlane.execution.get',
title: 'Get Execution',
version: '1.0.0',
description: 'Fetch the latest state for one execution.',
goal: 'Provide operators and channels a deterministic execution view.',
context:
'Used by dashboards, CLI, and channel adapters to inspect one execution.',
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: ControlPlaneExecutionGetInput,
output: ControlPlaneExecutionGetOutput,
},
policy: {
auth: 'admin',
pii: [],
},
});