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.
Submit a natural-language intent to the control plane.
Goal
Create a traceable, policy-governed entrypoint for agent requests.
Context
Used by channels and UIs to register user intent before planning and execution.
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';
import { ControlPlaneIntentReceivedEvent } from '../events/controlPlaneIntentReceived.event';
export const ControlPlaneIntentSubmitCommand = defineCommand({
meta: {
key: 'controlPlane.intent.submit',
title: 'Submit Intent',
version: '1.0.0',
description: 'Submit a natural-language intent to the control plane.',
goal: 'Create a traceable, policy-governed entrypoint for agent requests.',
context:
'Used by channels and UIs to register user intent before planning and execution.',
domain: CONTROL_PLANE_DOMAIN,
owners: CONTROL_PLANE_OWNERS,
tags: [...CONTROL_PLANE_TAGS, 'intent'],
stability: CONTROL_PLANE_STABILITY,
},
capability: {
key: 'control-plane.core',
version: '1.0.0',
},
io: {
input: ControlPlaneIntentSubmitInput,
output: ControlPlaneIntentSubmitOutput,
},
policy: {
auth: 'user',
pii: ['text'],
},
sideEffects: {
emits: [
{
ref: ControlPlaneIntentReceivedEvent.meta,
when: 'Intent ingestion succeeds and a new execution is created.',
},
],
},
});