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.
Emitted when a harness run starts.
Source Definition
import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
import { defineEvent } from '../../events';
import {
HARNESS_DOMAIN,
HARNESS_OWNERS,
HARNESS_STABILITY,
HARNESS_TAGS,
} from '../constants';
export const HarnessRunStartedEvent = defineEvent({
meta: {
key: 'harness.run.started',
version: '1.0.0',
description: 'Emitted when a harness run starts.',
domain: HARNESS_DOMAIN,
owners: HARNESS_OWNERS,
tags: [...HARNESS_TAGS, 'run', 'started'],
stability: HARNESS_STABILITY,
},
payload: HarnessRunStartedPayload,
});