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.
List execution-lane runs with lane-focused filters.
Goal
Provide contract-backed lane inventory for operators.
Context
Used by dashboards, APIs, and CLI surfaces to inspect lane queues and status.
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 { ControlPlaneExecutionLaneSummaryModel } from './controlPlaneExecutionLane.models';
export const ControlPlaneExecutionLaneListQuery = defineQuery({
meta: {
key: 'controlPlane.execution.lane.list',
title: 'List Execution Lanes',
version: '1.0.0',
description: 'List execution-lane runs with lane-focused filters.',
goal: 'Provide contract-backed lane inventory for operators.',
context:
'Used by dashboards, APIs, and CLI surfaces to inspect lane queues and status.',
domain: CONTROL_PLANE_DOMAIN,
owners: CONTROL_PLANE_OWNERS,
tags: [...CONTROL_PLANE_TAGS, 'execution', 'lane'],
stability: CONTROL_PLANE_STABILITY,
},
capability: {
key: 'control-plane.audit',
version: '1.0.0',
},
io: {
input: ControlPlaneExecutionLaneListInput,
output: ControlPlaneExecutionLaneListOutput,
},
policy: {
auth: 'admin',
pii: [],
},
});